@rockcarver/frodo-cli 4.0.1-1 → 4.0.2-0
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 +75 -49
- package/dist/app.cjs +5498 -3984
- package/dist/app.cjs.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [4.0.1] - 2026-07-17
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Updated journey commands to work correctly with frodo-lib 4.0.1 export format changes (PR #629).
|
|
15
|
+
- Improved `frodo journey list`, `frodo journey describe`, and journey export flows to more reliably return the requested journey when processing multi-journey export data (PR #629).
|
|
16
|
+
- Improved journey dependency handling for exports/imports involving nested trees referenced by Backchannel Initialize nodes via frodo-lib 4.0.1 (PR #595).
|
|
17
|
+
- The latest CLI is now based on `@rockcarver/frodo-lib` `4.0.1`.
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
|
|
21
|
+
- Added script filtering options for bulk script operations (PR #627):
|
|
22
|
+
- `frodo script list --language <language> --context <context> --evaluator-version <version>`
|
|
23
|
+
- `frodo script export -a/-A --language <language> --context <context> --evaluator-version <version>`
|
|
24
|
+
- `frodo script delete -a --language <language> --context <context> --evaluator-version <version>`
|
|
25
|
+
- Added support for combining script filters so you can narrow bulk list/export/delete operations to only the scripts you intend to target (PR #627).
|
|
26
|
+
|
|
27
|
+
### Fixed
|
|
28
|
+
|
|
29
|
+
- Improved service-account authentication reliability for hosts that include explicit default ports, avoiding JWT audience mismatches during token requests via frodo-lib 4.0.1 (PR #591).
|
|
30
|
+
- Improved connection/runtime compatibility for standalone AM environments with incomplete `serverinfo` payloads by using more resilient version parsing via frodo-lib 4.0.1 (PR #594).
|
|
31
|
+
- Fixed secret export behavior when active values are requested but `Use in Placeholders` is disabled: CLI flows now skip incompatible active-value reads instead of failing via frodo-lib 4.0.1 (PR #592).
|
|
32
|
+
|
|
33
|
+
## [4.0.1-1] - 2026-07-16
|
|
34
|
+
|
|
10
35
|
## [4.0.1-0] - 2026-07-16
|
|
11
36
|
|
|
12
37
|
## [4.0.0] - 2026-07-14
|
|
@@ -31,8 +56,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
31
56
|
- 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).
|
|
32
57
|
- Added `--retry <strategy>` option to all commands to control automatic retry of failed operations. Valid values for strategy:
|
|
33
58
|
- everything: Retry all failed operations.
|
|
34
|
-
- network:
|
|
35
|
-
- nothing:
|
|
59
|
+
- network: Retry only network-related failed operations.
|
|
60
|
+
- nothing: Do not retry failed operations (this is the default modus operandi).
|
|
36
61
|
- 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.
|
|
37
62
|
- Added secret store command coverage, including secret store mapping and alias sub-commands.
|
|
38
63
|
- Added `frodo mcp ...` commands for Model Context Protocol server management.
|
|
@@ -171,7 +196,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
171
196
|
|
|
172
197
|
### Fixed
|
|
173
198
|
|
|
174
|
-
- \#XXX:
|
|
199
|
+
- \#XXX:
|
|
175
200
|
|
|
176
201
|
## [4.0.0-3] - 2026-02-04
|
|
177
202
|
|
|
@@ -190,7 +215,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
190
215
|
|
|
191
216
|
### Fixed
|
|
192
217
|
|
|
193
|
-
- \#XXX:
|
|
218
|
+
- \#XXX:
|
|
194
219
|
|
|
195
220
|
## [4.0.0-2] - 2026-01-27
|
|
196
221
|
|
|
@@ -210,7 +235,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
210
235
|
|
|
211
236
|
### Fixed
|
|
212
237
|
|
|
213
|
-
- \#XXX:
|
|
238
|
+
- \#XXX:
|
|
214
239
|
|
|
215
240
|
## [3.1.1-1] - 2026-01-25
|
|
216
241
|
|
|
@@ -320,7 +345,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
320
345
|
|
|
321
346
|
- Update to frodo-lib 3.0.0
|
|
322
347
|
- Fixes and improvements to imports and exports:
|
|
323
|
-
|
|
324
348
|
- Fixed an issue with file paths on the Windows version of Frodo that was causing errors on imports due to the differences between Windows and Linux file paths.
|
|
325
349
|
- **_BREAKING_**: Updated IDM exports to be formatted the same as normal exports instead of as raw data by putting the raw data into a type object. This included changing the names of the exports to have a type ‘idm’, such as ‘sync.idm.json’ instead of ‘sync.json’, in order to reflect this change.
|
|
326
350
|
- Added option to import an entity from a single file from the full export using the -f flag in the config import command.
|
|
@@ -384,7 +408,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
384
408
|
### Added
|
|
385
409
|
|
|
386
410
|
- Improvements to the `frodo script` commands:
|
|
387
|
-
|
|
388
411
|
- Added the `-i`/`--script-id` option to import and export scripts by id.
|
|
389
412
|
- Added the `--no-deps` option to not include library scripts in exports of single scripts. Similarly adds the option on single script imports using the same flag to not import library dependencies if so desired.
|
|
390
413
|
|
|
@@ -395,7 +418,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
395
418
|
### Fixed
|
|
396
419
|
|
|
397
420
|
- Fixes to the handling of scripts in the `frodo script` commands and the `frodo config import` command:
|
|
398
|
-
|
|
399
421
|
- Fixing many bugs related to script extraction. For example, there were certain cases where importing wouldn't function correctly due to being unable to find the extracted script(s). For exports, library scripts weren't being extracted correctly either. Therefore, an overhaul was done to try and help simplify the extraction process to that it can work for multiple scripts if dealing with library scripts both on export and import.
|
|
400
422
|
- Fixing many errors in the watch option for script imports. One big one was if there were several scripts for a single json file (e.g. when exporting scripts with library scripts) that only one of the scripts would correctly be watched. This was fixed by creating mappings before watching begins to map extracted script files with their corresponding json files so it functions correctly.
|
|
401
423
|
- Fixing a small bug with config imports where, if the working directory started with `.` or `./` it would usually fail due to being unable to locate the expected files it was looking for.
|
|
@@ -684,13 +706,12 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
684
706
|
### Added
|
|
685
707
|
|
|
686
708
|
- New commands to manage IDM mappings:
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
- `
|
|
690
|
-
- `
|
|
691
|
-
- `
|
|
692
|
-
- `
|
|
693
|
-
- `rename` Renames mappings from the combined/default/legacy naming scheme (sync/\\<name>) to the separate/new naming scheme (mapping/\\<name>). To rename mappings from new back to legacy, use the -l, --legacy flag.
|
|
709
|
+
- `frodo mapping` Manage IDM mappings.
|
|
710
|
+
- `delete` Delete IDM mappings.
|
|
711
|
+
- `export` Export IDM mappings.
|
|
712
|
+
- `import` Import IDM mappings.
|
|
713
|
+
- `list` List IDM mappings.
|
|
714
|
+
- `rename` Renames mappings from the combined/default/legacy naming scheme (sync/\\<name>) to the separate/new naming scheme (mapping/\\<name>). To rename mappings from new back to legacy, use the -l, --legacy flag.
|
|
694
715
|
|
|
695
716
|
## [2.0.0-66] - 2024-07-10
|
|
696
717
|
|
|
@@ -902,10 +923,10 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
902
923
|
|
|
903
924
|
- \#283: Support for authentication settings:
|
|
904
925
|
|
|
905
|
-
- `frodo authn`
|
|
926
|
+
- `frodo authn` Manage authentication setting.
|
|
906
927
|
- `describe` List authentication settings.
|
|
907
|
-
- `export`
|
|
908
|
-
- `import`
|
|
928
|
+
- `export` Export authentication settings.
|
|
929
|
+
- `import` Import authentication settings.
|
|
909
930
|
|
|
910
931
|
Examples:
|
|
911
932
|
|
|
@@ -938,14 +959,12 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
938
959
|
### Added
|
|
939
960
|
|
|
940
961
|
- rockcarver/frodo-lib#53: Frodo Library now uses a file-based secure token cache to persist session and access tokens for re-use. The cached tokens are protected by the credential that was used to obtain them. Session tokens are encrypted using the hashed password as the master key, access tokens are encrypted using the hashed JWK private key as the master key. Therefore only users and processes with the correct credentials can access the tokens in the cache.
|
|
941
|
-
|
|
942
962
|
- The new default behavior is for Frodo CLI to use the new token cache for all applicable commands.
|
|
943
963
|
- A new global option `--no-cache` has been added to all commands to allow disabling the cache for indiviual invocations.
|
|
944
964
|
- A new environment variable `FRODO_NO_CACHE` is available to globally turn off token caching.
|
|
945
965
|
- A new environment variable `FRODO_TOKEN_CACHE_PATH` is available to instruct Frodo Library to use a non-default token cache file.
|
|
946
966
|
|
|
947
967
|
- rockcarver/frodo-lib#340: Frodo Library now autotomatically refreshes expired session and access tokens.
|
|
948
|
-
|
|
949
968
|
- The new default behavior is for Frodo CLI to automatically refresh tokens. This will only ever be noticeable during long-running operations like `frodo journey prune` or `frodo esv apply` that can take longer than 15 mins to complete.
|
|
950
969
|
|
|
951
970
|
### Fixed
|
|
@@ -1015,9 +1034,9 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
1015
1034
|
- \#251: Support for Identity Cloud admin federation configuration:
|
|
1016
1035
|
|
|
1017
1036
|
- `frodo admin federation` Manage admin federation configuration.
|
|
1018
|
-
- `export`
|
|
1019
|
-
- `import`
|
|
1020
|
-
- `list`
|
|
1037
|
+
- `export` Export admin federation providers.
|
|
1038
|
+
- `import` Import admin federation providers.
|
|
1039
|
+
- `list` List admin federation providers.
|
|
1021
1040
|
|
|
1022
1041
|
Examples:
|
|
1023
1042
|
|
|
@@ -1025,10 +1044,12 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
1025
1044
|
`frodo admin federation list <myTenant>`
|
|
1026
1045
|
|
|
1027
1046
|
`frodo admin federation list <myTenant> <username> <password>`
|
|
1047
|
+
|
|
1028
1048
|
- Export all admin federation providers to a single file:<br>
|
|
1029
1049
|
`frodo admin federation export -a <myTenant>`
|
|
1030
1050
|
|
|
1031
1051
|
`frodo admin federation export -a <myTenant> <username> <password>`
|
|
1052
|
+
|
|
1032
1053
|
- Import all admin federation providers from a single file:<br>
|
|
1033
1054
|
`frodo admin federation import -a -f allProviders.admin.federation.json <myTenant>`
|
|
1034
1055
|
|
|
@@ -1058,9 +1079,9 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
1058
1079
|
- \#251: Support for Identity Cloud admin federation configuration:
|
|
1059
1080
|
|
|
1060
1081
|
- `frodo admin federation` Manage admin federation configuration.
|
|
1061
|
-
- `export`
|
|
1062
|
-
- `import`
|
|
1063
|
-
- `list`
|
|
1082
|
+
- `export` Export admin federation providers.
|
|
1083
|
+
- `import` Import admin federation providers.
|
|
1084
|
+
- `list` List admin federation providers.
|
|
1064
1085
|
|
|
1065
1086
|
Examples:
|
|
1066
1087
|
|
|
@@ -1068,10 +1089,12 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
1068
1089
|
`frodo admin federation list <myTenant>`
|
|
1069
1090
|
|
|
1070
1091
|
`frodo admin federation list <myTenant> <username> <password>`
|
|
1092
|
+
|
|
1071
1093
|
- Export all admin federation providers to a single file:<br>
|
|
1072
1094
|
`frodo admin federation export -a <myTenant>`
|
|
1073
1095
|
|
|
1074
1096
|
`frodo admin federation export -a <myTenant> <username> <password>`
|
|
1097
|
+
|
|
1075
1098
|
- Import all admin federation providers from a single file:<br>
|
|
1076
1099
|
`frodo admin federation import -a -f allProviders.admin.federation.json <myTenant>`
|
|
1077
1100
|
|
|
@@ -1096,9 +1119,9 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
1096
1119
|
- \#251: Support for Identity Cloud admin federation configuration:
|
|
1097
1120
|
|
|
1098
1121
|
- `frodo admin federation` Manage admin federation configuration.
|
|
1099
|
-
- `export`
|
|
1100
|
-
- `import`
|
|
1101
|
-
- `list`
|
|
1122
|
+
- `export` Export admin federation providers.
|
|
1123
|
+
- `import` Import admin federation providers.
|
|
1124
|
+
- `list` List admin federation providers.
|
|
1102
1125
|
|
|
1103
1126
|
Examples:
|
|
1104
1127
|
|
|
@@ -1106,10 +1129,12 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
1106
1129
|
`frodo admin federation list <myTenant>`
|
|
1107
1130
|
|
|
1108
1131
|
`frodo admin federation list <myTenant> <username> <password>`
|
|
1132
|
+
|
|
1109
1133
|
- Export all admin federation providers to a single file:<br>
|
|
1110
1134
|
`frodo admin federation export -a <myTenant>`
|
|
1111
1135
|
|
|
1112
1136
|
`frodo admin federation export -a <myTenant> <username> <password>`
|
|
1137
|
+
|
|
1113
1138
|
- Import all admin federation providers from a single file:<br>
|
|
1114
1139
|
`frodo admin federation import -a -f allProviders.admin.federation.json <myTenant>`
|
|
1115
1140
|
|
|
@@ -1153,24 +1178,24 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
1153
1178
|
|
|
1154
1179
|
- Support for authorization policies, policy sets, and resource types through new `authz` commands:
|
|
1155
1180
|
|
|
1156
|
-
- `frodo authz type`
|
|
1157
|
-
- `delete`
|
|
1158
|
-
- `describe`
|
|
1159
|
-
- `export`
|
|
1160
|
-
- `import`
|
|
1161
|
-
- `list`
|
|
1162
|
-
- `frodo authz set`
|
|
1163
|
-
- `delete`
|
|
1164
|
-
- `describe`
|
|
1165
|
-
- `export`
|
|
1166
|
-
- `import`
|
|
1167
|
-
- `list`
|
|
1168
|
-
- `frodo authz policy`
|
|
1169
|
-
- `delete`
|
|
1170
|
-
- `describe`
|
|
1171
|
-
- `export`
|
|
1172
|
-
- `import`
|
|
1173
|
-
- `list`
|
|
1181
|
+
- `frodo authz type` Manage authorization resource types.
|
|
1182
|
+
- `delete` Delete authorization resource types.
|
|
1183
|
+
- `describe` Describe authorization resource types.
|
|
1184
|
+
- `export` Export authorization resource types.
|
|
1185
|
+
- `import` Import authorization resource types.
|
|
1186
|
+
- `list` List authorization resource types.
|
|
1187
|
+
- `frodo authz set` Manage authorization policy sets.
|
|
1188
|
+
- `delete` Delete authorization policy sets.
|
|
1189
|
+
- `describe` Describe authorization policy sets.
|
|
1190
|
+
- `export` Export authorization policy sets.
|
|
1191
|
+
- `import` Import authorization policy sets.
|
|
1192
|
+
- `list` List authorization policy sets.
|
|
1193
|
+
- `frodo authz policy` Manage authorization policies.
|
|
1194
|
+
- `delete` Delete authorization policies.
|
|
1195
|
+
- `describe` Describe authorization policies.
|
|
1196
|
+
- `export` Export authorization policies.
|
|
1197
|
+
- `import` Import authorization policies.
|
|
1198
|
+
- `list` List authorization policies.
|
|
1174
1199
|
|
|
1175
1200
|
Examples:
|
|
1176
1201
|
|
|
@@ -1422,7 +1447,6 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
1422
1447
|
- `FRODO_SA_JWK`: Service account's java web key (jwk) as single-line string. Jwk must contain private key! If set, must also set `FRODO_SA_ID`.
|
|
1423
1448
|
|
|
1424
1449
|
- \#143: Support Identity Cloud Service Accounts in `frodo conn save|add` command
|
|
1425
|
-
|
|
1426
1450
|
1. The `frodo conn add` command is renamed to `frodo conn save` and `add` is added as an alias for backwards compatibility.
|
|
1427
1451
|
2. The `frodo conn save` command supports the following new options to manage service accounts:
|
|
1428
1452
|
1. `--sa-id <uuid>` Service account's uuid. If specified, must also include `--sa-jwk-file`. Ignored with `--no-sa`.
|
|
@@ -2316,7 +2340,9 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
2316
2340
|
- Fixed problem with adding connection profiles
|
|
2317
2341
|
- Miscellaneous bug fixes
|
|
2318
2342
|
|
|
2319
|
-
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v4.0.1
|
|
2343
|
+
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v4.0.1...HEAD
|
|
2344
|
+
[4.0.1]: https://github.com/rockcarver/frodo-cli/compare/v4.0.1-1...v4.0.1
|
|
2345
|
+
[4.0.1-1]: https://github.com/rockcarver/frodo-cli/compare/v4.0.1-0...v4.0.1-1
|
|
2320
2346
|
[4.0.1-0]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0...v4.0.1-0
|
|
2321
2347
|
[4.0.0]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-54...v4.0.0
|
|
2322
2348
|
[4.0.0-54]: https://github.com/rockcarver/frodo-cli/compare/v4.0.0-53...v4.0.0-54
|