@rockcarver/frodo-cli 4.0.0-19 → 4.0.0-20
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 -5
- package/dist/app.cjs.map +1 -1
- package/package.json +2 -2
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-19] - 2026-03-17
|
|
11
|
+
|
|
10
12
|
## [4.0.0-18] - 2026-03-12
|
|
11
13
|
|
|
12
14
|
## [4.0.0-17] - 2026-03-07
|
|
@@ -2199,7 +2201,8 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
2199
2201
|
- Fixed problem with adding connection profiles
|
|
2200
2202
|
- Miscellaneous bug fixes
|
|
2201
2203
|
|
|
2202
|
-
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-
|
|
2204
|
+
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-19...HEAD
|
|
2205
|
+
[4.0.0-19]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-18...v4.0.0-19
|
|
2203
2206
|
[4.0.0-18]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-17...v4.0.0-18
|
|
2204
2207
|
[4.0.0-17]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-16...v4.0.0-17
|
|
2205
2208
|
[4.0.0-16]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-15...v4.0.0-16
|
package/dist/app.cjs
CHANGED
|
@@ -142047,7 +142047,7 @@ function stringify(obj) {
|
|
|
142047
142047
|
}
|
|
142048
142048
|
var package_default = {
|
|
142049
142049
|
name: "@rockcarver/frodo-lib",
|
|
142050
|
-
version: "4.0.0-
|
|
142050
|
+
version: "4.0.0-28",
|
|
142051
142051
|
type: "commonjs",
|
|
142052
142052
|
main: "./dist/index.js",
|
|
142053
142053
|
module: "./dist/index.mjs",
|
|
@@ -183130,8 +183130,8 @@ async function fetch2({
|
|
|
183130
183130
|
urlString += `&transactionId=${txid}`;
|
|
183131
183131
|
}
|
|
183132
183132
|
if (filter2) {
|
|
183133
|
-
const filterParam = `_queryFilter=${filter2}`;
|
|
183134
|
-
urlString += `&${
|
|
183133
|
+
const filterParam = `_queryFilter=${encodeURIComponent(filter2)}`;
|
|
183134
|
+
urlString += `&${filterParam}`;
|
|
183135
183135
|
}
|
|
183136
183136
|
if (cookie) {
|
|
183137
183137
|
urlString += `&_pagedResultsCookie=${encodeURIComponent(cookie)}`;
|
|
@@ -231596,7 +231596,7 @@ var compareVersions = (v12, v2) => {
|
|
|
231596
231596
|
// package.json
|
|
231597
231597
|
var package_default2 = {
|
|
231598
231598
|
name: "@rockcarver/frodo-cli",
|
|
231599
|
-
version: "4.0.0-
|
|
231599
|
+
version: "4.0.0-20",
|
|
231600
231600
|
type: "module",
|
|
231601
231601
|
description: "A command line interface to manage ForgeRock Identity Cloud tenants, ForgeOps deployments, and classic deployments.",
|
|
231602
231602
|
keywords: [
|
|
@@ -231691,7 +231691,7 @@ var package_default2 = {
|
|
|
231691
231691
|
]
|
|
231692
231692
|
},
|
|
231693
231693
|
devDependencies: {
|
|
231694
|
-
"@rockcarver/frodo-lib": "4.0.0-
|
|
231694
|
+
"@rockcarver/frodo-lib": "4.0.0-28",
|
|
231695
231695
|
"@types/colors": "^1.2.1",
|
|
231696
231696
|
"@types/fs-extra": "^11.0.1",
|
|
231697
231697
|
"@types/jest": "^29.2.3",
|