@rockcarver/frodo-cli 4.0.0-26 → 4.0.0-28
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 +5 -1
- package/dist/app.cjs.map +1 -1
- package/package.json +1 -1
- package/tmp_frodo_probe.js +0 -160
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-27] - 2026-03-23
|
|
11
|
+
|
|
12
|
+
## [4.0.0-26] - 2026-03-23
|
|
13
|
+
|
|
10
14
|
## [4.0.0-25] - 2026-03-23
|
|
11
15
|
|
|
12
16
|
## [4.0.0-24] - 2026-03-21
|
|
@@ -2213,7 +2217,9 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
2213
2217
|
- Fixed problem with adding connection profiles
|
|
2214
2218
|
- Miscellaneous bug fixes
|
|
2215
2219
|
|
|
2216
|
-
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-
|
|
2220
|
+
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-27...HEAD
|
|
2221
|
+
[4.0.0-27]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-26...v4.0.0-27
|
|
2222
|
+
[4.0.0-26]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-25...v4.0.0-26
|
|
2217
2223
|
[4.0.0-25]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-24...v4.0.0-25
|
|
2218
2224
|
[4.0.0-24]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-23...v4.0.0-24
|
|
2219
2225
|
[4.0.0-23]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-22...v4.0.0-23
|
package/dist/app.cjs
CHANGED
|
@@ -219813,6 +219813,7 @@ async function configManagerExportAuthentication(realm2) {
|
|
|
219813
219813
|
saveJsonToFile19(exportData, getFilePath20(`${fileName}`, true), false, true);
|
|
219814
219814
|
} else {
|
|
219815
219815
|
for (const realmName of await realmList()) {
|
|
219816
|
+
if (realmName === "/" && state.getDeploymentType() === frodo.utils.constants.CLOUD_DEPLOYMENT_TYPE_KEY) continue;
|
|
219816
219817
|
state.setRealm(realmName);
|
|
219817
219818
|
const exportData = await _readAuthenticationSettings2(false);
|
|
219818
219819
|
const fileName = `realms/${realmName}/realm-config/authentication.json`;
|
|
@@ -220317,6 +220318,7 @@ async function configManagerExportJourneys(name, realm2, pullDependency) {
|
|
|
220317
220318
|
processJourneys(exportData.trees, realm2, name, pullDependency, "realms");
|
|
220318
220319
|
} else {
|
|
220319
220320
|
for (const realm3 of await realmList()) {
|
|
220321
|
+
if (realm3 === "/" && state.getDeploymentType() === frodo.utils.constants.CLOUD_DEPLOYMENT_TYPE_KEY) continue;
|
|
220320
220322
|
state.setRealm(realm3);
|
|
220321
220323
|
const exportData = await exportJourneys2(
|
|
220322
220324
|
options
|
|
@@ -220796,6 +220798,7 @@ async function configManagerExportOrgPrivilegesAllRealms() {
|
|
|
220796
220798
|
try {
|
|
220797
220799
|
configManagerExportOrgPrivileges();
|
|
220798
220800
|
for (const realm2 of await readRealms4()) {
|
|
220801
|
+
if (realm2.name === "/" && state.getDeploymentType() === frodo.utils.constants.CLOUD_DEPLOYMENT_TYPE_KEY) continue;
|
|
220799
220802
|
state.setRealm(realm2.name);
|
|
220800
220803
|
if (!await configManagerExportOrgPrivilegesRealm(realm2.name)) {
|
|
220801
220804
|
return false;
|
|
@@ -221128,6 +221131,7 @@ async function configManagerExportScriptsRealms(prefix = null, justContent = fal
|
|
|
221128
221131
|
async function configManagerExportScriptsAll(prefix = null, justContent = false, justConfig = false, scriptType = null, language = "JAVASCRIPT") {
|
|
221129
221132
|
try {
|
|
221130
221133
|
for (const realm2 of await realmList()) {
|
|
221134
|
+
if (realm2 === "/" && state.getDeploymentType() === frodo.utils.constants.CLOUD_DEPLOYMENT_TYPE_KEY) continue;
|
|
221131
221135
|
state.setRealm(realm2);
|
|
221132
221136
|
verboseMessage2(`
|
|
221133
221137
|
${state.getRealm()} realm:`);
|
|
@@ -239674,7 +239678,7 @@ var compareVersions = (v12, v2) => {
|
|
|
239674
239678
|
// package.json
|
|
239675
239679
|
var package_default2 = {
|
|
239676
239680
|
name: "@rockcarver/frodo-cli",
|
|
239677
|
-
version: "4.0.0-
|
|
239681
|
+
version: "4.0.0-28",
|
|
239678
239682
|
type: "module",
|
|
239679
239683
|
description: "A command line interface to manage ForgeRock Identity Cloud tenants, ForgeOps deployments, and classic deployments.",
|
|
239680
239684
|
keywords: [
|