@rockcarver/frodo-cli 4.0.0-44 → 4.0.0-46
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 +15 -15
- package/dist/app.cjs.map +1 -1
- package/package.json +2 -2
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-45] - 2026-04-17
|
|
11
|
+
|
|
12
|
+
## [4.0.0-44] - 2026-04-17
|
|
13
|
+
|
|
10
14
|
## [4.0.0-43] - 2026-04-08
|
|
11
15
|
|
|
12
16
|
## [4.0.0-42] - 2026-04-08
|
|
@@ -2249,7 +2253,9 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
2249
2253
|
- Fixed problem with adding connection profiles
|
|
2250
2254
|
- Miscellaneous bug fixes
|
|
2251
2255
|
|
|
2252
|
-
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-
|
|
2256
|
+
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-45...HEAD
|
|
2257
|
+
[4.0.0-45]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-44...v4.0.0-45
|
|
2258
|
+
[4.0.0-44]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-43...v4.0.0-44
|
|
2253
2259
|
[4.0.0-43]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-42...v4.0.0-43
|
|
2254
2260
|
[4.0.0-42]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-41...v4.0.0-42
|
|
2255
2261
|
[4.0.0-41]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-40...v4.0.0-41
|
package/dist/app.cjs
CHANGED
|
@@ -221432,9 +221432,9 @@ Additionally, there is a flag to export config for only the specified realm, a f
|
|
|
221432
221432
|
).default(false, "false")
|
|
221433
221433
|
).addOption(
|
|
221434
221434
|
new Option(
|
|
221435
|
-
"-x, --extract",
|
|
221436
|
-
"
|
|
221437
|
-
)
|
|
221435
|
+
"-x, --no-extract",
|
|
221436
|
+
"Do not extract scripts and server properties from the exported file to a separate file."
|
|
221437
|
+
).default(true, "true")
|
|
221438
221438
|
).addOption(
|
|
221439
221439
|
new Option(
|
|
221440
221440
|
"-N, --no-metadata",
|
|
@@ -235357,9 +235357,9 @@ function setup217() {
|
|
|
235357
235357
|
)
|
|
235358
235358
|
).addOption(
|
|
235359
235359
|
new Option(
|
|
235360
|
-
"-x, --extract",
|
|
235361
|
-
"
|
|
235362
|
-
)
|
|
235360
|
+
"-x, --no-extract",
|
|
235361
|
+
"Do not extract the script from the exported file to a separate file."
|
|
235362
|
+
).default(true, "true")
|
|
235363
235363
|
).addOption(
|
|
235364
235364
|
new Option(
|
|
235365
235365
|
"--use-string-arrays",
|
|
@@ -239157,9 +239157,9 @@ function setup253() {
|
|
|
239157
239157
|
)
|
|
239158
239158
|
).addOption(
|
|
239159
239159
|
new Option(
|
|
239160
|
-
"-x, --extract",
|
|
239161
|
-
"
|
|
239162
|
-
)
|
|
239160
|
+
"-x, --no-extract",
|
|
239161
|
+
"Do not extract the script from the exported file to a separate file."
|
|
239162
|
+
).default(true, "true")
|
|
239163
239163
|
).addOption(
|
|
239164
239164
|
new Option(
|
|
239165
239165
|
"-d, --default",
|
|
@@ -241076,9 +241076,9 @@ function setup272() {
|
|
|
241076
241076
|
)
|
|
241077
241077
|
).addOption(
|
|
241078
241078
|
new Option(
|
|
241079
|
-
"-x, --extract",
|
|
241080
|
-
"
|
|
241081
|
-
)
|
|
241079
|
+
"-x, --no-extract",
|
|
241080
|
+
"Do not extract the server properties from the exported file to a separate file."
|
|
241081
|
+
).default(true, "true")
|
|
241082
241082
|
).addOption(
|
|
241083
241083
|
new Option(
|
|
241084
241084
|
"-N, --no-metadata",
|
|
@@ -241119,7 +241119,7 @@ function setup272() {
|
|
|
241119
241119
|
verboseMessage2(`Exporting all servers to a single file...`);
|
|
241120
241120
|
const outcome = await exportServersToFile(
|
|
241121
241121
|
options.file,
|
|
241122
|
-
|
|
241122
|
+
false,
|
|
241123
241123
|
options.metadata,
|
|
241124
241124
|
{
|
|
241125
241125
|
includeDefault: options.default
|
|
@@ -242635,7 +242635,7 @@ var compareVersions = (v12, v2) => {
|
|
|
242635
242635
|
// package.json
|
|
242636
242636
|
var package_default2 = {
|
|
242637
242637
|
name: "@rockcarver/frodo-cli",
|
|
242638
|
-
version: "4.0.0-
|
|
242638
|
+
version: "4.0.0-46",
|
|
242639
242639
|
type: "module",
|
|
242640
242640
|
description: "A command line interface to manage ForgeRock Identity Cloud tenants, ForgeOps deployments, and classic deployments.",
|
|
242641
242641
|
keywords: [
|
|
@@ -242660,7 +242660,7 @@ var package_default2 = {
|
|
|
242660
242660
|
},
|
|
242661
242661
|
repository: {
|
|
242662
242662
|
type: "git",
|
|
242663
|
-
url: "https://github.com/rockcarver/frodo-cli.git"
|
|
242663
|
+
url: "git+https://github.com/rockcarver/frodo-cli.git"
|
|
242664
242664
|
},
|
|
242665
242665
|
bugs: {
|
|
242666
242666
|
url: "https://github.com/rockcarver/frodo-cli/issues"
|