@rockcarver/frodo-cli 4.0.1 → 4.1.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 +22 -1
- package/dist/app.cjs +5498 -3984
- package/dist/app.cjs.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Support Identity Governance for cloud IGA tenants with first-class workflow lifecycle tooling and safer request type migration controls (PR #631):
|
|
13
|
+
- Added a new `frodo iga workflow` command group with end-to-end workflow operations: `list`, `describe`, `export`, `import`, `publish`, and `delete`.
|
|
14
|
+
- Added `--only-custom` (`-c`) to `frodo config export` and `frodo config import` so request type migration can be scoped to custom request types only.
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- The latest CLI workflow command set and IGA behavior in this line are based on `@rockcarver/frodo-lib` `4.1.0`.
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
|
|
22
|
+
- Fixed `frodo config import -A` behavior to better handle directory-based imports when global or realm subdirectories are missing, instead of failing early (PR #631).
|
|
23
|
+
- Fixed config import UX to emit a clear warning when an import run completes with no entities imported (PR #631).
|
|
24
|
+
|
|
25
|
+
## [4.0.2-0] - 2026-07-20
|
|
26
|
+
|
|
27
|
+
## [4.0.1] - 2026-07-17
|
|
28
|
+
|
|
10
29
|
### Changed
|
|
11
30
|
|
|
12
31
|
- Updated journey commands to work correctly with frodo-lib 4.0.1 export format changes (PR #629).
|
|
@@ -2312,7 +2331,9 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
2312
2331
|
- Fixed problem with adding connection profiles
|
|
2313
2332
|
- Miscellaneous bug fixes
|
|
2314
2333
|
|
|
2315
|
-
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v4.0.
|
|
2334
|
+
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v4.0.2-0...HEAD
|
|
2335
|
+
[4.0.2-0]: https://github.com/rockcarver/frodo-cli/compare/v4.0.1...v4.0.2-0
|
|
2336
|
+
[4.0.1]: https://github.com/rockcarver/frodo-cli/compare/v4.0.1-1...v4.0.1
|
|
2316
2337
|
[4.0.1-1]: https://github.com/rockcarver/frodo-cli/compare/v4.0.1-0...v4.0.1-1
|
|
2317
2338
|
[4.0.1-0]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0...v4.0.1-0
|
|
2318
2339
|
[4.0.0]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-54...v4.0.0
|