@equinor/fusion-framework-cli 13.1.2-msal-v5.1 → 13.2.0
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 +26 -11
- package/bin/build/bin.mjs +1 -1
- package/bin/build/cli.mjs +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/types/bin/app-check.d.ts +14 -3
- package/dist/types/bin/app-upload.d.ts +1 -1
- package/dist/types/bin/helpers/load-bundle-metadata.d.ts +1 -0
- package/dist/types/bin/helpers/resolve-app-from-artifact.d.ts +17 -0
- package/dist/types/version.d.ts +1 -1
- package/docs/application.md +45 -17
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,24 +1,39 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## 13.
|
|
3
|
+
## 13.2.0
|
|
4
4
|
|
|
5
|
-
###
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`5121c48`](https://github.com/equinor/fusion-framework/commit/5121c48020accfa0b91415ddafb61ea82b3b24b6) Thanks [@Noggling](https://github.com/Noggling)! - Add support for artifact-based app validation in publish command.
|
|
8
|
+
|
|
9
|
+
The CLI publish command now supports validating applications using metadata extracted from bundle artifacts instead of requiring local package.json and manifest files. This enables publishing applications from any directory in CI/CD pipelines without maintaining the full project structure.
|
|
10
|
+
|
|
11
|
+
**New capabilities:**
|
|
12
|
+
|
|
13
|
+
- Extract app information from bundle's `metadata.json`
|
|
14
|
+
- Validate app registration using artifact metadata when bundle path is provided
|
|
15
|
+
- Maintain backward compatibility with existing package.json-based validation
|
|
6
16
|
|
|
7
|
-
|
|
17
|
+
**Usage:**
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
# Traditional validation (unchanged)
|
|
21
|
+
fusion-framework-cli app publish
|
|
8
22
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
- @equinor/fusion-framework-module-msal-node@2.0.4-msal-v5.0
|
|
13
|
-
- @equinor/fusion-imports@1.1.11-msal-v5.0
|
|
23
|
+
# New artifact-based validation
|
|
24
|
+
fusion-framework-cli app publish ./app-bundle.zip
|
|
25
|
+
```
|
|
14
26
|
|
|
15
|
-
|
|
27
|
+
This resolves the limitation where applications could only be published from directories containing the source package.json, enabling more flexible CI/CD deployment scenarios.
|
|
16
28
|
|
|
17
29
|
### Patch Changes
|
|
18
30
|
|
|
19
|
-
-
|
|
31
|
+
- [#3961](https://github.com/equinor/fusion-framework/pull/3961) [`343f5f9`](https://github.com/equinor/fusion-framework/commit/343f5f9cc0acbd8e69b62cc73dda577c9015a620) Thanks [@asbjornhaland](https://github.com/asbjornhaland)! - Update docs explain the possibility to override Service Discovery urls in app-config
|
|
32
|
+
|
|
33
|
+
- Updated dependencies [[`46a1c71`](https://github.com/equinor/fusion-framework/commit/46a1c710d9cd2ed20946932ceab2a5e8c0fb8a2b)]:
|
|
34
|
+
- @equinor/fusion-framework-module-msal-node@3.0.0
|
|
20
35
|
- @equinor/fusion-framework-dev-portal@1.4.0
|
|
21
|
-
- @equinor/fusion-framework-dev-server@1.1.21
|
|
36
|
+
- @equinor/fusion-framework-dev-server@1.1.21
|
|
22
37
|
|
|
23
38
|
## 13.1.1
|
|
24
39
|
|