@rockcarver/frodo-cli 4.0.0-28 → 4.0.0-29
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 +4 -1
- package/dist/app.cjs +5 -13
- package/dist/app.cjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,8 @@ 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-28] - 2026-03-24
|
|
11
|
+
|
|
10
12
|
## [4.0.0-27] - 2026-03-23
|
|
11
13
|
|
|
12
14
|
## [4.0.0-26] - 2026-03-23
|
|
@@ -2217,7 +2219,8 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
2217
2219
|
- Fixed problem with adding connection profiles
|
|
2218
2220
|
- Miscellaneous bug fixes
|
|
2219
2221
|
|
|
2220
|
-
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-
|
|
2222
|
+
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-28...HEAD
|
|
2223
|
+
[4.0.0-28]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-27...v4.0.0-28
|
|
2221
2224
|
[4.0.0-27]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-26...v4.0.0-27
|
|
2222
2225
|
[4.0.0-26]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-25...v4.0.0-26
|
|
2223
2226
|
[4.0.0-25]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-24...v4.0.0-25
|
package/dist/app.cjs
CHANGED
|
@@ -221793,20 +221793,12 @@ function setup78() {
|
|
|
221793
221793
|
options,
|
|
221794
221794
|
command
|
|
221795
221795
|
);
|
|
221796
|
-
if (await getTokens2(false, true, deploymentTypes21)) {
|
|
221797
|
-
verboseMessage2(
|
|
221798
|
-
"Exporting config files that fr-config-manager supports."
|
|
221799
|
-
);
|
|
221800
|
-
const outcome = await configManagerExportAllStatic();
|
|
221801
|
-
if (!outcome) process.exitCode = 1;
|
|
221802
|
-
} else {
|
|
221803
|
-
printMessage2(
|
|
221804
|
-
"Unrecognized combination of options or no options...",
|
|
221805
|
-
"error"
|
|
221806
|
-
);
|
|
221807
|
-
program2.help();
|
|
221796
|
+
if (!await getTokens2(false, true, deploymentTypes21)) {
|
|
221808
221797
|
process.exitCode = 1;
|
|
221798
|
+
return;
|
|
221809
221799
|
}
|
|
221800
|
+
const outcome = await configManagerExportAllStatic();
|
|
221801
|
+
if (!outcome) process.exitCode = 1;
|
|
221810
221802
|
});
|
|
221811
221803
|
return program2;
|
|
221812
221804
|
}
|
|
@@ -239678,7 +239670,7 @@ var compareVersions = (v12, v2) => {
|
|
|
239678
239670
|
// package.json
|
|
239679
239671
|
var package_default2 = {
|
|
239680
239672
|
name: "@rockcarver/frodo-cli",
|
|
239681
|
-
version: "4.0.0-
|
|
239673
|
+
version: "4.0.0-29",
|
|
239682
239674
|
type: "module",
|
|
239683
239675
|
description: "A command line interface to manage ForgeRock Identity Cloud tenants, ForgeOps deployments, and classic deployments.",
|
|
239684
239676
|
keywords: [
|