@rockcarver/frodo-cli 2.0.0-62 → 2.0.0-64

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 CHANGED
@@ -9,6 +9,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
 
10
10
  ### Changed
11
11
 
12
+ - Update to frodo-lib 2.0.0-88
13
+ - Updated binary distribution node.js version to 20
14
+ - Pipeline hygiene
15
+
16
+ ## [2.0.0-63] - 2024-06-20
17
+
18
+ ### Changed
19
+
20
+ - Update to frodo-lib 2.0.0-87
21
+
22
+ ## [2.0.0-62] - 2024-06-19
23
+
24
+ ### Changed
25
+
12
26
  - Update to frodo-lib 2.0.0-86
13
27
  - rockcarver/frodo-lib#402: Library scripts are now treated as dependencies during script and journey exports and imports.
14
28
 
@@ -1573,7 +1587,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1573
1587
  - Fixed problem with adding connection profiles
1574
1588
  - Miscellaneous bug fixes
1575
1589
 
1576
- [Unreleased]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-61...HEAD
1590
+ [Unreleased]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-63...HEAD
1591
+
1592
+ [2.0.0-63]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-62...v2.0.0-63
1593
+
1594
+ [2.0.0-62]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-61...v2.0.0-62
1577
1595
 
1578
1596
  [2.0.0-61]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-60...v2.0.0-61
1579
1597
 
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  <!-- README.md for NPM; the one for GitHub is .github/README.md. -->
2
2
  # Frodo Command Line Interface
3
3
 
4
- ForgeROck DO Command Line Interface, frodo-cli, a CLI to manage ForgeRock platform deployments supporting Identity Cloud tenants, ForgeOps deployments, and classic deployments.
4
+ A command line interface to manage PingOne Advanced Identity Cloud environments, ForgeOps deployments, and classic deployments.
5
5
 
6
- Frodo is the successor to field tools like [amtree.sh](https://github.com/vscheuber/AM-treetool), [fidc-debug-tools](https://github.com/vscheuber/fidc-debug-tools), and ForgeRock-internal utilities.
6
+ Frodo is the successor to field tools like [amtree.sh](https://github.com/vscheuber/AM-treetool), [fidc-debug-tools](https://github.com/vscheuber/fidc-debug-tools), and Ping/ForgeRock-internal utilities.
7
7
 
8
8
  Please refer to the [GitHub README](https://github.com/rockcarver/frodo-cli#readme) for full documentation.
package/dist/app.cjs CHANGED
@@ -125544,7 +125544,7 @@ function stringify(obj) {
125544
125544
  }
125545
125545
  var package_default = {
125546
125546
  name: "@rockcarver/frodo-lib",
125547
- version: "2.0.0-86",
125547
+ version: "2.0.0-88",
125548
125548
  type: "commonjs",
125549
125549
  main: "./dist/index.js",
125550
125550
  module: "./dist/esm/index.js",
@@ -125573,6 +125573,8 @@ var package_default = {
125573
125573
  },
125574
125574
  description: "A library to manage ForgeRock Identity Cloud tenants, ForgeOps deployments, and classic deployments.",
125575
125575
  keywords: [
125576
+ "ping",
125577
+ "pingone",
125576
125578
  "forgerock",
125577
125579
  "library",
125578
125580
  "am",
@@ -125581,6 +125583,7 @@ var package_default = {
125581
125583
  "openidm",
125582
125584
  "forgeops",
125583
125585
  "identity cloud",
125586
+ "advanced identity cloud",
125584
125587
  "export",
125585
125588
  "import",
125586
125589
  "ci/cd",
@@ -144056,7 +144059,7 @@ function parseUrl2(href) {
144056
144059
  r.origin = r.protocol + "//" + r.host;
144057
144060
  }
144058
144061
  if (r.search.length > 2) {
144059
- const query = r.search.indexOf("?") === 0 ? r.search.substr(1) : r.search;
144062
+ const query = r.search.indexOf("?") === 0 ? r.search.substring(1) : r.search;
144060
144063
  const vars = query.split("&");
144061
144064
  for (let i2 = 0; i2 < vars.length; i2++) {
144062
144065
  const pair = vars[i2].split("=");
@@ -186189,10 +186192,12 @@ var compareVersions = (v12, v2) => {
186189
186192
  // package.json
186190
186193
  var package_default2 = {
186191
186194
  name: "@rockcarver/frodo-cli",
186192
- version: "2.0.0-62",
186195
+ version: "2.0.0-64",
186193
186196
  type: "module",
186194
186197
  description: "A command line interface to manage ForgeRock Identity Cloud tenants, ForgeOps deployments, and classic deployments.",
186195
186198
  keywords: [
186199
+ "ping",
186200
+ "pingone",
186196
186201
  "forgerock",
186197
186202
  "cli",
186198
186203
  "am",
@@ -186201,13 +186206,14 @@ var package_default2 = {
186201
186206
  "openidm",
186202
186207
  "forgeops",
186203
186208
  "identity cloud",
186209
+ "advanced identity cloud",
186204
186210
  "export",
186205
186211
  "import",
186206
186212
  "ci/cd",
186207
186213
  "devops"
186208
186214
  ],
186209
186215
  engines: {
186210
- node: ">=16"
186216
+ node: ">=18.17.0"
186211
186217
  },
186212
186218
  repository: {
186213
186219
  type: "git",
@@ -186226,7 +186232,7 @@ var package_default2 = {
186226
186232
  build: "npm run build:binary",
186227
186233
  "build:only": "npx tsup && npx tsc",
186228
186234
  "build:binary": "npm run build:only && npm run dist-pkg",
186229
- "dist-pkg": "pkg -C Gzip -t node18 --config package.json -o frodo dist/app.cjs",
186235
+ "dist-pkg": "pkg -C Gzip -t node20 --config package.json -o frodo dist/app.cjs",
186230
186236
  link: "npm link ../frodo-lib",
186231
186237
  dev: "npx tsup --watch src"
186232
186238
  },
@@ -186299,7 +186305,7 @@ var package_default2 = {
186299
186305
  ]
186300
186306
  },
186301
186307
  devDependencies: {
186302
- "@rockcarver/frodo-lib": "2.0.0-86",
186308
+ "@rockcarver/frodo-lib": "2.0.0-88",
186303
186309
  "@types/colors": "^1.2.1",
186304
186310
  "@types/fs-extra": "^11.0.1",
186305
186311
  "@types/jest": "^29.2.3",