@rockcarver/frodo-cli 0.12.2-0 → 0.12.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 +20 -4
- package/package.json +6 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,14 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
-
## [0.12.2
|
|
11
|
-
|
|
12
|
-
## [0.12.1] - 2022-08-27
|
|
10
|
+
## [0.12.2] - 2022-08-27
|
|
13
11
|
|
|
14
12
|
### Changed
|
|
15
13
|
|
|
16
14
|
- \#3: `frodo-cli` now uses the new callback based progress indicator and message display framework in `frodo-lib 0.12.0`
|
|
17
15
|
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- \#16: 2nd-level commands in binary builds are working properly again (they were broken in all 0.11.x and 0.12.x builds)
|
|
19
|
+
|
|
20
|
+
## [0.12.2-2] - 2022-08-27 [YANKED]
|
|
21
|
+
|
|
22
|
+
## [0.12.2-1] - 2022-08-27 [YANKED]
|
|
23
|
+
|
|
24
|
+
## [0.12.2-0] - 2022-08-27 [YANKED]
|
|
25
|
+
|
|
26
|
+
## [0.12.1] - 2022-08-27 [YANKED]
|
|
27
|
+
|
|
18
28
|
## [0.12.0] - 2022-08-27 [YANKED]
|
|
19
29
|
|
|
20
30
|
## [0.11.1-2] - 2022-08-21
|
|
@@ -439,7 +449,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
439
449
|
- Fixed problem with adding connection profiles
|
|
440
450
|
- Miscellaneous bug fixes
|
|
441
451
|
|
|
442
|
-
[Unreleased]: https://github.com/rockcarver/frodo-cli/compare/v0.12.2
|
|
452
|
+
[Unreleased]: https://github.com/rockcarver/frodo-cli/compare/v0.12.2...HEAD
|
|
453
|
+
|
|
454
|
+
[0.12.2]: https://github.com/rockcarver/frodo-cli/compare/v0.12.2-2...v0.12.2
|
|
455
|
+
|
|
456
|
+
[0.12.2-2]: https://github.com/rockcarver/frodo-cli/compare/v0.12.2-1...v0.12.2-2
|
|
457
|
+
|
|
458
|
+
[0.12.2-1]: https://github.com/rockcarver/frodo-cli/compare/v0.12.2-0...v0.12.2-1
|
|
443
459
|
|
|
444
460
|
[0.12.2-0]: https://github.com/rockcarver/frodo-cli/compare/v0.12.1...v0.12.2-0
|
|
445
461
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rockcarver/frodo-cli",
|
|
3
|
-
"version": "0.12.2
|
|
3
|
+
"version": "0.12.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": [
|
|
@@ -76,6 +76,11 @@
|
|
|
76
76
|
"assets": [
|
|
77
77
|
"node_modules/@rockcarver/frodo-lib/cjs/ops/templates/*.json",
|
|
78
78
|
"node_modules/@rockcarver/frodo-lib/cjs/ops/templates/**/*.json"
|
|
79
|
+
],
|
|
80
|
+
"scripts": [
|
|
81
|
+
"src/cli/**/*.js",
|
|
82
|
+
"src/storage/**/*.js",
|
|
83
|
+
"src/utils/**/*.js"
|
|
79
84
|
]
|
|
80
85
|
},
|
|
81
86
|
"dependencies": {
|