@rockcarver/frodo-cli 0.13.1 → 0.13.2
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 +25 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,8 +7,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.13.2] - 2022-09-29
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Updated frodo-lib to 0.12.5
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- rockcarver/frodo-lib#98: Frodo now properly runs `frodo idm export -A -D ./idm <host>` command
|
|
19
|
+
- rockcarver/frodo-lib#100: Frodo now properly handles nested realms when specified as `/parent/child`
|
|
20
|
+
- rockcarver/frodo-lib#101: Frodo now properly sets the identity resource when the realm was specified with a leading slash
|
|
21
|
+
- rockcarver/frodo-lib#102: Frodo now properly replaces existing themes on import when the realm was specified with a leading slash
|
|
22
|
+
|
|
10
23
|
## [0.13.1] - 2022-09-23
|
|
11
24
|
|
|
25
|
+
### Changed
|
|
26
|
+
|
|
27
|
+
- Updated frodo-lib to 0.12.4
|
|
28
|
+
- Updated binary installation instructions in README.md
|
|
29
|
+
|
|
30
|
+
### Fixed
|
|
31
|
+
|
|
32
|
+
- \#49: Frodo now properly reports missing mandatory parameters when running `frodo esv variable describe <host>` and `frodo esv secret describe <host>`
|
|
33
|
+
|
|
12
34
|
## [0.13.0] - 2022-09-17
|
|
13
35
|
|
|
14
36
|
### Added
|
|
@@ -537,7 +559,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
537
559
|
- Fixed problem with adding connection profiles
|
|
538
560
|
- Miscellaneous bug fixes
|
|
539
561
|
|
|
540
|
-
[Unreleased]: https://github.com/rockcarver/frodo-cli/compare/v0.13.
|
|
562
|
+
[Unreleased]: https://github.com/rockcarver/frodo-cli/compare/v0.13.2...HEAD
|
|
563
|
+
|
|
564
|
+
[0.13.2]: https://github.com/rockcarver/frodo-cli/compare/v0.13.1...v0.13.2
|
|
541
565
|
|
|
542
566
|
[0.13.1]: https://github.com/rockcarver/frodo-cli/compare/v0.13.0...v0.13.1
|
|
543
567
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rockcarver/frodo-cli",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A command line interface to manage ForgeRock Identity Cloud tenants, ForgeOps deployments, and classic deployments.",
|
|
6
6
|
"keywords": [
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
},
|
|
86
86
|
"dependencies": {
|
|
87
87
|
"@colors/colors": "^1.5.0",
|
|
88
|
-
"@rockcarver/frodo-lib": "0.12.
|
|
88
|
+
"@rockcarver/frodo-lib": "0.12.5",
|
|
89
89
|
"cli-progress": "^3.11.2",
|
|
90
90
|
"cli-table3": "^0.6.2",
|
|
91
91
|
"commander": "^9.4.0",
|