@rockcarver/frodo-cli 4.0.0-3 → 4.0.0-4
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 +23 -1
- package/dist/app.cjs +665 -583
- package/dist/app.cjs.map +1 -1
- package/dist/{chunk-HEKQUNOB.cjs → chunk-I43EENNM.cjs} +2 -2
- package/dist/{chunk-HEKQUNOB.cjs.map → chunk-I43EENNM.cjs.map} +1 -1
- package/dist/launch.cjs +4 -4
- package/dist/loader.cjs +41 -36
- package/dist/loader.cjs.map +1 -1
- package/package.json +8 -9
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
### Changed
|
|
11
11
|
|
|
12
|
+
- Updated to Frodo Lib 4.0.0
|
|
13
|
+
- Updated binary release to run on Node v24
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
- Added `frodo config-manager` (`fr-config-manager`) commands.
|
|
19
|
+
- Added support for Node Designer Nodes through several API and Ops functions to allow for doing exports, imports, deletes, etc. with custom node configurations.
|
|
20
|
+
- Just like with journeys, custom nodes get exported and imported in the same way as they do from AIC/AM, so you can import Frodo exported custom nodes into AIC/AM and vice versa.
|
|
21
|
+
- Additionally, journeys were updated to include custom node dependencies during exports. Even if a journey is exported with Frodo and contains these dependencies in the export JSON, they can still be imported into AIC/AM using the admin UI as it should ignore the custom node dependencies (since AIC/AM doesn't support exporting them yet).
|
|
22
|
+
- Added `--retry <strategy>` option to all commands.
|
|
23
|
+
- Added the ability to authenticate to an AM classic deployment using Amster credentials (i.e. a public/private key pair). The private key can be in a variety of formats such as PKCS, JWK, and OpenSSH, but is ultimately stored in PKCS#8 format. You can also use encrypted private keys by providing the passphrase when creating the connection profile.
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
|
|
27
|
+
- \#XXX:
|
|
28
|
+
|
|
29
|
+
## [4.0.0-3] - 2026-02-04
|
|
30
|
+
|
|
31
|
+
### Changed
|
|
32
|
+
|
|
12
33
|
- Updated to Frodo Lib 4.0.0
|
|
13
34
|
|
|
14
35
|
### Added
|
|
@@ -2148,7 +2169,8 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
2148
2169
|
- Fixed problem with adding connection profiles
|
|
2149
2170
|
- Miscellaneous bug fixes
|
|
2150
2171
|
|
|
2151
|
-
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-
|
|
2172
|
+
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-3...HEAD
|
|
2173
|
+
[4.0.0-3]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-2...v4.0.0-3
|
|
2152
2174
|
[4.0.0-2]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-1...v4.0.0-2
|
|
2153
2175
|
[4.0.0-1]: https://github.com/rockcarver/frodo-cli/compare/v3.1.1-1...v4.0.0-1
|
|
2154
2176
|
[3.1.1-1]: https://github.com/rockcarver/frodo-cli/compare/v3.1.1-0...v3.1.1-1
|