Skip to content

Commit 7beb045

Browse files
Security Fix: Complete String Escaping in Email Parsing (#238)
Co-authored-by: guptagunjan <88308027+guptagunjan@users.noreply.github.com>
1 parent f88fe0e commit 7beb045

13 files changed

Lines changed: 23 additions & 16 deletions

File tree

apps/admin/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.21
1+
2.0.22-dev

apps/admin/deploy/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ apiVersion: v2
44
name: orch-ui-admin
55
description: Deploy Edge-Native Software Platform UI Admin pods on Kubernetes
66
type: application
7-
version: 2.0.21
7+
version: 2.0.22-dev
88
# Default appVersion will be overwritten by a the build to use the version from package.json.
99

1010
# This value is supplied only to enable local unbuilt deployment of released content.
11-
appVersion: "2.0.21"
11+
appVersion: "2.0.22-dev"
1212
annotations:
1313
api_observability_monitor: 0.0.5
1414
dependencies: []

apps/admin/src/components/organisms/ReceiversList/ReceiversList.cy.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,10 @@ describe("<ReceiversList/>", () => {
1414
pom.waitForApis();
1515
pom.root.should("exist");
1616
pom.table.root.contains("LastNameB, FirstNameB");
17+
pom.table.root.contains("firstnamee.lastnamee@domain.com");
18+
pom.table.root.should(
19+
"not.contain.text",
20+
"firstnamee.lastnamee@domain.com>",
21+
);
1722
});
1823
});

apps/admin/src/components/organisms/ReceiversList/ReceiversList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ const ReceiversList = ({ isOpen = false, setIsOpen }: ReceiversListProps) => {
118118
// in both cases, for name cell we should show userInfo[0], so check needed
119119
const name = userInfo[0].trim();
120120
const email = userInfo[1]
121-
? userInfo[1].trim().replace(">", "")
121+
? userInfo[1].trim().replace(/>/g, "")
122122
: emails[i];
123123
users.push({
124124
name: name,

apps/app-orch/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.23
1+
2.0.24-dev

apps/app-orch/deploy/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ apiVersion: v2
44
name: orch-ui-app-orch
55
description: Deploy the Edge Orchestrator app-orch pod
66
type: application
7-
version: 2.0.23
7+
version: 2.0.24-dev
88
# Default appVersion will be overwritten by a the build to use the version from package.json.
99

1010
# This value is supplied only to enable local unbuilt deployment of released content.
11-
appVersion: "2.0.23"
11+
appVersion: "2.0.24-dev"
1212
annotations: {}
1313
dependencies: []

apps/cluster-orch/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.24
1+
2.0.25-dev

apps/cluster-orch/deploy/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ apiVersion: v2
44
name: orch-ui-cluster-orch
55
description: Deploy the Edge Orchestrator cluster-orch pod
66
type: application
7-
version: 2.0.24
7+
version: 2.0.25-dev
88
# Default appVersion will be overwritten by a the build to use the version from package.json.
99

1010
# This value is supplied only to enable local unbuilt deployment of released content.
11-
appVersion: "2.0.24"
11+
appVersion: "2.0.25-dev"
1212
annotations: {}
1313
dependencies: []

apps/infra/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.22
1+
1.0.23-dev

apps/infra/deploy/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ apiVersion: v2
44
name: orch-ui-infra
55
description: Deploy the Edge-Native Software Platform Infrastructure pod
66
type: application
7-
version: 1.0.22
7+
version: 1.0.23-dev
88
# Default appVersion will be overwritten by a the build to use the version from package.json.
99

10-
appVersion: "1.0.22"
10+
appVersion: "1.0.23-dev"
1111
dependencies: []
1212
annotations: {}

0 commit comments

Comments
 (0)