@rockcarver/frodo-cli 2.0.0-61 → 2.0.0-63
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 +18 -1
- package/README.md +2 -2
- package/dist/app.cjs +217 -112
- package/dist/app.cjs.map +1 -1
- package/package.json +7 -4
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Update to frodo-lib 2.0.0-87
|
|
13
|
+
|
|
14
|
+
## [2.0.0-62] - 2024-06-19
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- Update to frodo-lib 2.0.0-86
|
|
19
|
+
- rockcarver/frodo-lib#402: Library scripts are now treated as dependencies during script and journey exports and imports.
|
|
20
|
+
|
|
21
|
+
## [2.0.0-61] - 2024-06-12
|
|
22
|
+
|
|
10
23
|
### Fixed
|
|
11
24
|
|
|
12
25
|
- rockcarver/homebrew-frodo-cli#6: Homebrew formula now properly installs frodo
|
|
@@ -1566,7 +1579,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1566
1579
|
- Fixed problem with adding connection profiles
|
|
1567
1580
|
- Miscellaneous bug fixes
|
|
1568
1581
|
|
|
1569
|
-
[Unreleased]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-
|
|
1582
|
+
[Unreleased]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-62...HEAD
|
|
1583
|
+
|
|
1584
|
+
[2.0.0-62]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-61...v2.0.0-62
|
|
1585
|
+
|
|
1586
|
+
[2.0.0-61]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-60...v2.0.0-61
|
|
1570
1587
|
|
|
1571
1588
|
[2.0.0-60]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-59...v2.0.0-60
|
|
1572
1589
|
|
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
|
-
|
|
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.
|