@rockcarver/frodo-cli 3.1.1-1 → 4.0.0-2
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 +4719 -1851
- package/dist/app.cjs.map +1 -1
- package/package.json +7 -28
- package/tsup.config.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,26 @@ 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-1] - 2026-01-26
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Updated to Frodo Lib 4.0.0
|
|
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.<br><br>
|
|
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.<br><br>
|
|
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
|
+
|
|
24
|
+
### Fixed
|
|
25
|
+
|
|
26
|
+
- \#XXX:
|
|
27
|
+
|
|
28
|
+
## [3.1.1-1] - 2026-01-25
|
|
29
|
+
|
|
10
30
|
## [3.1.1-0] - 2026-01-25
|
|
11
31
|
|
|
12
32
|
## [3.1.0] - 2026-01-22
|
|
@@ -2109,7 +2129,9 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
2109
2129
|
- Fixed problem with adding connection profiles
|
|
2110
2130
|
- Miscellaneous bug fixes
|
|
2111
2131
|
|
|
2112
|
-
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/
|
|
2132
|
+
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-1...HEAD
|
|
2133
|
+
[4.0.0-1]: https://github.com/rockcarver/frodo-cli/compare/v3.1.1-1...v4.0.0-1
|
|
2134
|
+
[3.1.1-1]: https://github.com/rockcarver/frodo-cli/compare/v3.1.1-0...v3.1.1-1
|
|
2113
2135
|
[3.1.1-0]: https://github.com/rockcarver/frodo-cli/compare/v3.1.0...v3.1.1-0
|
|
2114
2136
|
[3.1.0]: https://github.com/rockcarver/frodo-cli/compare/v3.0.10...v3.1.0
|
|
2115
2137
|
[3.0.10]: https://github.com/rockcarver/frodo-cli/compare/v3.0.10-1...v3.0.10
|