@telia-ace/alliance-portal 1.0.7-next.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +27 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @telia-ace/alliance-portal
|
|
2
2
|
|
|
3
|
+
## 1.0.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c2335bc: Validate and define default values for environment config using Zod.
|
|
8
|
+
- c2335bc: Move health check endpoint to `/-/health`.
|
|
9
|
+
- c2335bc: Add 404 page for non existant Workspaces.
|
|
10
|
+
- c2335bc: Add support for `LANDING_PAGE` environment variable to display a landing page on the portal instance root.
|
|
11
|
+
- c2335bc: Respond with correct status code in endpoints.
|
|
12
|
+
- c2335bc: Add current Workspace name to Customer Portal page title.
|
|
13
|
+
- c2335bc: Define `HEALTHCHECK` in Dockerfile.
|
|
14
|
+
- c2335bc: Setup health checks for services (https://github.com/telia-company/ace-alliance-sdk/issues/388).
|
|
15
|
+
- c2335bc: Fully support portals with static Workspace and Customer.
|
|
16
|
+
- c2335bc: Include `skipGroupClaimCheck` environment variable value in trace log when user signs in.
|
|
17
|
+
- c2335bc: Ensure unnecessary files aren't copied into Docker images.
|
|
18
|
+
- c2335bc: Replace `ORIGIN_AS_ROOT_URL` with `ROOT_URL_SUB_PATH` to configure what sub path a Portal will be hosted on.
|
|
19
|
+
- c2335bc: Ensure workspace existence is verified in health check for specific workspaces.
|
|
20
|
+
- c2335bc: Support customer / workspace specific portals.
|
|
21
|
+
- Updated dependencies [c2335bc]
|
|
22
|
+
- Updated dependencies [c2335bc]
|
|
23
|
+
- Updated dependencies [c2335bc]
|
|
24
|
+
- Updated dependencies [c2335bc]
|
|
25
|
+
- Updated dependencies [c2335bc]
|
|
26
|
+
- Updated dependencies [c2335bc]
|
|
27
|
+
- Updated dependencies [c2335bc]
|
|
28
|
+
- @telia-ace/alliance-internal-node-utilities@1.0.4
|
|
29
|
+
|
|
3
30
|
## 1.0.7-next.6
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@telia-ace/alliance-portal",
|
|
3
|
-
"version": "1.0.7
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "ACE Alliance portal",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"author": "Telia Company AB",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@nestjs/core": "^10.2.7",
|
|
20
20
|
"@nestjs/platform-express": "^10.2.7",
|
|
21
21
|
"@nestjs/terminus": "^10.1.1",
|
|
22
|
-
"@telia-ace/alliance-internal-node-utilities": "1.0.4
|
|
22
|
+
"@telia-ace/alliance-internal-node-utilities": "1.0.4",
|
|
23
23
|
"dotenv": "^16.3.1",
|
|
24
24
|
"express": "^4.18.2",
|
|
25
25
|
"graphql": "^16.8.1",
|