@rockcarver/frodo-cli 4.0.0-43 → 4.0.0-45
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 +7 -1
- package/dist/app.cjs +28 -25
- package/dist/app.cjs.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [4.0.0-44] - 2026-04-17
|
|
11
|
+
|
|
12
|
+
## [4.0.0-43] - 2026-04-08
|
|
13
|
+
|
|
10
14
|
## [4.0.0-42] - 2026-04-08
|
|
11
15
|
|
|
12
16
|
## [4.0.0-41] - 2026-04-03
|
|
@@ -2247,7 +2251,9 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
2247
2251
|
- Fixed problem with adding connection profiles
|
|
2248
2252
|
- Miscellaneous bug fixes
|
|
2249
2253
|
|
|
2250
|
-
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-
|
|
2254
|
+
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-44...HEAD
|
|
2255
|
+
[4.0.0-44]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-43...v4.0.0-44
|
|
2256
|
+
[4.0.0-43]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-42...v4.0.0-43
|
|
2251
2257
|
[4.0.0-42]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-41...v4.0.0-42
|
|
2252
2258
|
[4.0.0-41]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-40...v4.0.0-41
|
|
2253
2259
|
[4.0.0-40]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-39...v4.0.0-40
|
package/dist/app.cjs
CHANGED
|
@@ -142841,7 +142841,7 @@ function stringify(obj) {
|
|
|
142841
142841
|
}
|
|
142842
142842
|
var package_default = {
|
|
142843
142843
|
name: "@rockcarver/frodo-lib",
|
|
142844
|
-
version: "4.0.0-
|
|
142844
|
+
version: "4.0.0-37",
|
|
142845
142845
|
type: "commonjs",
|
|
142846
142846
|
main: "./dist/index.js",
|
|
142847
142847
|
module: "./dist/index.mjs",
|
|
@@ -163119,7 +163119,10 @@ function saveJsonToFile({
|
|
|
163119
163119
|
"modifiedDate",
|
|
163120
163120
|
"lastChangeDate",
|
|
163121
163121
|
"lastChangedBy",
|
|
163122
|
-
"lastChanged"
|
|
163122
|
+
"lastChanged",
|
|
163123
|
+
"createdBy",
|
|
163124
|
+
"creationDate",
|
|
163125
|
+
"createdDate"
|
|
163123
163126
|
]
|
|
163124
163127
|
);
|
|
163125
163128
|
}
|
|
@@ -215161,7 +215164,7 @@ function setup56() {
|
|
|
215161
215164
|
).addOption(
|
|
215162
215165
|
new Option(
|
|
215163
215166
|
"-M, --modified-properties",
|
|
215164
|
-
"Include modified properties in export (e.g. lastModifiedDate, lastModifiedBy, etc.)"
|
|
215167
|
+
"Include modified properties in export (e.g. lastModifiedDate, lastModifiedBy, createdBy, creationDate, etc.)"
|
|
215165
215168
|
).default(false, "false")
|
|
215166
215169
|
).addOption(
|
|
215167
215170
|
new Option("--no-deps", "Do not include dependencies (scripts).")
|
|
@@ -215961,7 +215964,7 @@ function setup62() {
|
|
|
215961
215964
|
).addOption(
|
|
215962
215965
|
new Option(
|
|
215963
215966
|
"-M, --modified-properties",
|
|
215964
|
-
"Include modified properties in export (e.g. lastModifiedDate, lastModifiedBy, etc.)"
|
|
215967
|
+
"Include modified properties in export (e.g. lastModifiedDate, lastModifiedBy, createdBy, creationDate, etc.)"
|
|
215965
215968
|
).default(false, "false")
|
|
215966
215969
|
).addOption(
|
|
215967
215970
|
new Option(
|
|
@@ -216702,7 +216705,7 @@ function setup68() {
|
|
|
216702
216705
|
).addOption(
|
|
216703
216706
|
new Option(
|
|
216704
216707
|
"-M, --modified-properties",
|
|
216705
|
-
"Include modified properties in export (e.g. lastModifiedDate, lastModifiedBy, etc.)"
|
|
216708
|
+
"Include modified properties in export (e.g. lastModifiedDate, lastModifiedBy, createdBy, creationDate, etc.)"
|
|
216706
216709
|
).default(false, "false")
|
|
216707
216710
|
).action(
|
|
216708
216711
|
// implement command logic inside action handler
|
|
@@ -221429,9 +221432,9 @@ Additionally, there is a flag to export config for only the specified realm, a f
|
|
|
221429
221432
|
).default(false, "false")
|
|
221430
221433
|
).addOption(
|
|
221431
221434
|
new Option(
|
|
221432
|
-
"-x, --extract",
|
|
221433
|
-
"
|
|
221434
|
-
)
|
|
221435
|
+
"-x, --no-extract",
|
|
221436
|
+
"Do not extract scripts and server properties from the exported file to a separate file."
|
|
221437
|
+
).default(true, "true")
|
|
221435
221438
|
).addOption(
|
|
221436
221439
|
new Option(
|
|
221437
221440
|
"-N, --no-metadata",
|
|
@@ -221440,7 +221443,7 @@ Additionally, there is a flag to export config for only the specified realm, a f
|
|
|
221440
221443
|
).addOption(
|
|
221441
221444
|
new Option(
|
|
221442
221445
|
"-M, --modified-properties",
|
|
221443
|
-
"Include modified properties in export (e.g. lastModifiedDate, lastModifiedBy, etc.)"
|
|
221446
|
+
"Include modified properties in export (e.g. lastModifiedDate, lastModifiedBy, createdBy, creationDate, etc.)"
|
|
221444
221447
|
).default(false, "false")
|
|
221445
221448
|
).addOption(
|
|
221446
221449
|
new Option(
|
|
@@ -229471,7 +229474,7 @@ function setup156() {
|
|
|
229471
229474
|
).addOption(
|
|
229472
229475
|
new Option(
|
|
229473
229476
|
"-M, --modified-properties",
|
|
229474
|
-
"Include modified properties in export (e.g. lastModifiedDate, lastModifiedBy, etc.)"
|
|
229477
|
+
"Include modified properties in export (e.g. lastModifiedDate, lastModifiedBy, createdBy, creationDate, etc.)"
|
|
229475
229478
|
).default(false, "false")
|
|
229476
229479
|
).addOption(
|
|
229477
229480
|
new Option(
|
|
@@ -230689,7 +230692,7 @@ function setup170() {
|
|
|
230689
230692
|
).addOption(
|
|
230690
230693
|
new Option(
|
|
230691
230694
|
"-M, --modified-properties",
|
|
230692
|
-
"Include modified properties in export (e.g. lastModifiedDate, lastModifiedBy, etc.)"
|
|
230695
|
+
"Include modified properties in export (e.g. lastModifiedDate, lastModifiedBy, createdBy, creationDate, etc.)"
|
|
230693
230696
|
).default(false, "false")
|
|
230694
230697
|
).action(
|
|
230695
230698
|
// implement command logic inside action handler
|
|
@@ -235354,9 +235357,9 @@ function setup217() {
|
|
|
235354
235357
|
)
|
|
235355
235358
|
).addOption(
|
|
235356
235359
|
new Option(
|
|
235357
|
-
"-x, --extract",
|
|
235358
|
-
"
|
|
235359
|
-
)
|
|
235360
|
+
"-x, --no-extract",
|
|
235361
|
+
"Do not extract the script from the exported file to a separate file."
|
|
235362
|
+
).default(true, "true")
|
|
235360
235363
|
).addOption(
|
|
235361
235364
|
new Option(
|
|
235362
235365
|
"--use-string-arrays",
|
|
@@ -239145,7 +239148,7 @@ function setup253() {
|
|
|
239145
239148
|
).addOption(
|
|
239146
239149
|
new Option(
|
|
239147
239150
|
"-M, --modified-properties",
|
|
239148
|
-
"Include modified properties in export (e.g. lastModifiedDate, lastModifiedBy, etc.)"
|
|
239151
|
+
"Include modified properties in export (e.g. lastModifiedDate, lastModifiedBy, createdBy, creationDate, etc.)"
|
|
239149
239152
|
).default(false, "false")
|
|
239150
239153
|
).addOption(
|
|
239151
239154
|
new Option(
|
|
@@ -239154,9 +239157,9 @@ function setup253() {
|
|
|
239154
239157
|
)
|
|
239155
239158
|
).addOption(
|
|
239156
239159
|
new Option(
|
|
239157
|
-
"-x, --extract",
|
|
239158
|
-
"
|
|
239159
|
-
)
|
|
239160
|
+
"-x, --no-extract",
|
|
239161
|
+
"Do not extract the script from the exported file to a separate file."
|
|
239162
|
+
).default(true, "true")
|
|
239160
239163
|
).addOption(
|
|
239161
239164
|
new Option(
|
|
239162
239165
|
"-d, --default",
|
|
@@ -241073,9 +241076,9 @@ function setup272() {
|
|
|
241073
241076
|
)
|
|
241074
241077
|
).addOption(
|
|
241075
241078
|
new Option(
|
|
241076
|
-
"-x, --extract",
|
|
241077
|
-
"
|
|
241078
|
-
)
|
|
241079
|
+
"-x, --no-extract",
|
|
241080
|
+
"Do not extract the server properties from the exported file to a separate file."
|
|
241081
|
+
).default(true, "true")
|
|
241079
241082
|
).addOption(
|
|
241080
241083
|
new Option(
|
|
241081
241084
|
"-N, --no-metadata",
|
|
@@ -241116,7 +241119,7 @@ function setup272() {
|
|
|
241116
241119
|
verboseMessage2(`Exporting all servers to a single file...`);
|
|
241117
241120
|
const outcome = await exportServersToFile(
|
|
241118
241121
|
options.file,
|
|
241119
|
-
|
|
241122
|
+
false,
|
|
241120
241123
|
options.metadata,
|
|
241121
241124
|
{
|
|
241122
241125
|
includeDefault: options.default
|
|
@@ -242632,7 +242635,7 @@ var compareVersions = (v12, v2) => {
|
|
|
242632
242635
|
// package.json
|
|
242633
242636
|
var package_default2 = {
|
|
242634
242637
|
name: "@rockcarver/frodo-cli",
|
|
242635
|
-
version: "4.0.0-
|
|
242638
|
+
version: "4.0.0-45",
|
|
242636
242639
|
type: "module",
|
|
242637
242640
|
description: "A command line interface to manage ForgeRock Identity Cloud tenants, ForgeOps deployments, and classic deployments.",
|
|
242638
242641
|
keywords: [
|
|
@@ -242657,7 +242660,7 @@ var package_default2 = {
|
|
|
242657
242660
|
},
|
|
242658
242661
|
repository: {
|
|
242659
242662
|
type: "git",
|
|
242660
|
-
url: "https://github.com/rockcarver/frodo-cli.git"
|
|
242663
|
+
url: "git+https://github.com/rockcarver/frodo-cli.git"
|
|
242661
242664
|
},
|
|
242662
242665
|
bugs: {
|
|
242663
242666
|
url: "https://github.com/rockcarver/frodo-cli/issues"
|
|
@@ -242727,7 +242730,7 @@ var package_default2 = {
|
|
|
242727
242730
|
]
|
|
242728
242731
|
},
|
|
242729
242732
|
devDependencies: {
|
|
242730
|
-
"@rockcarver/frodo-lib": "4.0.0-
|
|
242733
|
+
"@rockcarver/frodo-lib": "4.0.0-37",
|
|
242731
242734
|
"@types/colors": "^1.2.1",
|
|
242732
242735
|
"@types/fs-extra": "^11.0.1",
|
|
242733
242736
|
"@types/jest": "^29.2.3",
|