@equinor/fusion-framework-cli 14.2.7 → 15.0.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 +19 -0
- package/bin/build/bin.mjs +1 -1
- package/bin/build/cli.mjs +3 -3
- package/dist/esm/version.js +1 -1
- package/dist/types/bin/framework.node.d.ts +10 -3
- package/dist/types/version.d.ts +1 -1
- package/docs/auth.md +9 -8
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 15.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- 8d7b8a1: **BREAKING:** Replace CLI authentication backend from `@equinor/fusion-framework-module-msal-node` with `@equinor/fusion-framework-module-azure-identity`.
|
|
8
|
+
|
|
9
|
+
`ffc auth login` and `ffc auth token` now use `InteractiveBrowserCredential` with OS-level token persistence — tokens survive across process restarts without re-prompting. The previous MSAL-based token cache is no longer used; users must re-authenticate with `ffc auth login` after upgrading.
|
|
10
|
+
|
|
11
|
+
Ref: https://github.com/equinor/fusion-core-tasks/issues/1067
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 4711dbc: Default the `--debug` flag to `true` when the `RUNNER_DEBUG` environment variable is set.
|
|
16
|
+
|
|
17
|
+
All app, portal, auth, and create commands now automatically enable debug mode in GitHub Actions debug runs without requiring `--debug` in workflow YAML.
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [8d7b8a1]
|
|
20
|
+
- @equinor/fusion-framework-module-azure-identity@0.2.0
|
|
21
|
+
|
|
3
22
|
## 14.2.7
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|