@rockcarver/frodo-cli 0.13.0 → 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
CHANGED
|
@@ -7,6 +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
|
+
|
|
23
|
+
## [0.13.1] - 2022-09-23
|
|
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
|
+
|
|
10
34
|
## [0.13.0] - 2022-09-17
|
|
11
35
|
|
|
12
36
|
### Added
|
|
@@ -535,7 +559,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
535
559
|
- Fixed problem with adding connection profiles
|
|
536
560
|
- Miscellaneous bug fixes
|
|
537
561
|
|
|
538
|
-
[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
|
|
565
|
+
|
|
566
|
+
[0.13.1]: https://github.com/rockcarver/frodo-cli/compare/v0.13.0...v0.13.1
|
|
539
567
|
|
|
540
568
|
[0.13.0]: https://github.com/rockcarver/frodo-cli/compare/v0.12.5...v0.13.0
|
|
541
569
|
|
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",
|
|
@@ -17,7 +17,12 @@ program
|
|
|
17
17
|
.addArgument(common.passwordArgument)
|
|
18
18
|
.addOption(common.deploymentOption)
|
|
19
19
|
.addOption(common.insecureOption)
|
|
20
|
-
.addOption(
|
|
20
|
+
.addOption(
|
|
21
|
+
new Option(
|
|
22
|
+
'-i, --secret-id <secret-id>',
|
|
23
|
+
'Secret id.'
|
|
24
|
+
).makeOptionMandatory()
|
|
25
|
+
)
|
|
21
26
|
.action(
|
|
22
27
|
// implement command logic inside action handler
|
|
23
28
|
async (host, realm, user, password, options) => {
|
|
@@ -17,7 +17,12 @@ program
|
|
|
17
17
|
.addArgument(common.passwordArgument)
|
|
18
18
|
.addOption(common.deploymentOption)
|
|
19
19
|
.addOption(common.insecureOption)
|
|
20
|
-
.addOption(
|
|
20
|
+
.addOption(
|
|
21
|
+
new Option(
|
|
22
|
+
'-i, --variable-id <variable-id>',
|
|
23
|
+
'Variable id.'
|
|
24
|
+
).makeOptionMandatory()
|
|
25
|
+
)
|
|
21
26
|
.action(
|
|
22
27
|
// implement command logic inside action handler
|
|
23
28
|
async (host, realm, user, password, options) => {
|