@rockcarver/frodo-cli 2.0.0-64 → 2.0.0-66
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 +660 -826
- package/dist/app.cjs +2299 -1046
- package/dist/app.cjs.map +1 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,43 +7,85 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- \#404: Frodo now saves the `-k`/`--insecure` option in connection profiles.
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- Update to frodo-lib 2.0.0-92
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- \#400: Frodo now properly honors the `-k`/`--insecure` option and allows connecting to platform instances using self-signed certificates.
|
|
21
|
+
|
|
22
|
+
## [2.0.0-65] - 2024-07-06
|
|
23
|
+
|
|
24
|
+
### Add
|
|
25
|
+
|
|
26
|
+
- rockcarver/frodo-lib#387: Support import of ESVs (variables and secrets). Frodo now supports importing ESV variables and secrets with two new commands:
|
|
27
|
+
- `frodo esv variable import`
|
|
28
|
+
- `frodo esv secret import`
|
|
29
|
+
|
|
30
|
+
- Frodo now supports exporting (and importing) of ESV secret values. To leave stuartship of secret values with the cloud environment where they belong, frodo will always encrypt values using either encryption keys from the source environment (default) or the target environment (export option). Frodo will never export secrets in the clear. However, frodo supports importing clear values (as well as importing encrypted values). Use these new commands and parameters to export/import variables and secrets including secret values:
|
|
31
|
+
|
|
32
|
+
- New parameters for existing `frodo esv secret export` and `frodo config export` commands:
|
|
33
|
+
|
|
34
|
+
- `--include-active-values` Include the currently active (and loaded) secret value in the export. By default, secret values are encrypted server-side in the environment they are exported from. Use `--target <host url>` to have another environment perform the encryption.
|
|
35
|
+
|
|
36
|
+
- `--target <host url>` Host URL of the environment to perform secret value encryption. The URL must resolve to an existing connection profile. Use this option to generate an export that can be imported into the target environment without requiring admin access to the source environment.
|
|
37
|
+
|
|
38
|
+
- New `frodo esv secret import` and updated existing `frodo config import` command and note-worthy parameters:
|
|
39
|
+
|
|
40
|
+
- `--include-active-values` Import any secret values contained in the import file. By default, secret values are encrypted server-side in the environment they are exported from. Use `--source <host url>` to import a file exported from another environment than the one you are importing to.
|
|
41
|
+
|
|
42
|
+
- `--source <host url>` Host URL of the environment which performed secret value encryption. The URL must resolve to an existing connection profile. Use this option to import a file that was exported from a different source environment than the one you are importing to.
|
|
43
|
+
|
|
44
|
+
- rockcarver/frodo-lib#394: Support for `base64aes` encoding for ESV secrets
|
|
45
|
+
|
|
10
46
|
### Changed
|
|
11
47
|
|
|
12
|
-
-
|
|
13
|
-
|
|
14
|
-
-
|
|
48
|
+
- Update to frodo-lib 2.0.0-91
|
|
49
|
+
|
|
50
|
+
## [2.0.0-64] - 2024-06-21
|
|
51
|
+
|
|
52
|
+
### Changed
|
|
53
|
+
|
|
54
|
+
- Update to frodo-lib 2.0.0-88
|
|
55
|
+
- Updated binary distribution node.js version to 20
|
|
56
|
+
- Pipeline hygiene
|
|
15
57
|
|
|
16
58
|
## [2.0.0-63] - 2024-06-20
|
|
17
59
|
|
|
18
60
|
### Changed
|
|
19
61
|
|
|
20
|
-
-
|
|
62
|
+
- Update to frodo-lib 2.0.0-87
|
|
21
63
|
|
|
22
64
|
## [2.0.0-62] - 2024-06-19
|
|
23
65
|
|
|
24
66
|
### Changed
|
|
25
67
|
|
|
26
|
-
-
|
|
27
|
-
-
|
|
68
|
+
- Update to frodo-lib 2.0.0-86
|
|
69
|
+
- rockcarver/frodo-lib#402: Library scripts are now treated as dependencies during script and journey exports and imports.
|
|
28
70
|
|
|
29
71
|
## [2.0.0-61] - 2024-06-12
|
|
30
72
|
|
|
31
73
|
### Fixed
|
|
32
74
|
|
|
33
|
-
-
|
|
75
|
+
- rockcarver/homebrew-frodo-cli#6: Homebrew formula now properly installs frodo
|
|
34
76
|
|
|
35
77
|
## [2.0.0-60] - 2024-06-11
|
|
36
78
|
|
|
37
79
|
### Changed
|
|
38
80
|
|
|
39
|
-
-
|
|
40
|
-
-
|
|
81
|
+
- Update to frodo-lib 2.0.0-85
|
|
82
|
+
- Update dependencies
|
|
41
83
|
|
|
42
84
|
## [2.0.0-59] - 2024-05-21
|
|
43
85
|
|
|
44
86
|
### Changed
|
|
45
87
|
|
|
46
|
-
-
|
|
88
|
+
- Update to frodo-lib 2.0.0-83
|
|
47
89
|
|
|
48
90
|
## [2.0.0-58] - 2024-05-08
|
|
49
91
|
|
|
@@ -55,59 +97,59 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
55
97
|
|
|
56
98
|
### Changed
|
|
57
99
|
|
|
58
|
-
-
|
|
100
|
+
- Update to frodo-lib 2.0.0-77
|
|
59
101
|
|
|
60
102
|
### Fixed
|
|
61
103
|
|
|
62
|
-
-
|
|
63
|
-
-
|
|
104
|
+
- Improved filtering out secrets from recordings
|
|
105
|
+
- rockcarver/frodo-lib#392: Implemented error handling pattern for methods with unusual amounts of REST calls like `frodo.config.exportFullConfiguration` and `frodo.config.importFullConfiguration` used in the `frodo config import` and `frodo config export` commands
|
|
64
106
|
|
|
65
107
|
## [2.0.0-54] - 2024-04-01
|
|
66
108
|
|
|
67
109
|
### Changed
|
|
68
110
|
|
|
69
|
-
-
|
|
111
|
+
- Update to frodo-lib 2.0.0-75
|
|
70
112
|
|
|
71
113
|
### Fixed
|
|
72
114
|
|
|
73
|
-
-
|
|
115
|
+
- rockcarver/frodo-lib#397: Service accounts now use the proper scopes when created using the `frodo conn save` command
|
|
74
116
|
|
|
75
117
|
## [2.0.0-53] - 2024-03-24
|
|
76
118
|
|
|
77
119
|
### Changed
|
|
78
120
|
|
|
79
|
-
-
|
|
121
|
+
- Update to frodo-lib 2.0.0-74
|
|
80
122
|
|
|
81
123
|
### Fixed
|
|
82
124
|
|
|
83
|
-
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
125
|
+
- rockcarver/frodo-lib#391: Frodo now creates service accounts with all allowed scopes:
|
|
126
|
+
- `fr:am:*`
|
|
127
|
+
- `fr:idc:analytics:*`
|
|
128
|
+
- `fr:autoaccess:*`
|
|
129
|
+
- `fr:idc:certificate:*`
|
|
130
|
+
- `fr:idc:certificate:read`
|
|
131
|
+
- `fr:idc:content-security-policy:*`
|
|
132
|
+
- `fr:idc:custom-domain:*`
|
|
133
|
+
- `fr:idc:esv:*`
|
|
134
|
+
- `fr:idc:esv:read`
|
|
135
|
+
- `fr:idc:esv:restart`
|
|
136
|
+
- `fr:idc:esv:update`
|
|
137
|
+
- `fr:idm:*`
|
|
138
|
+
- `fr:iga:*`
|
|
139
|
+
- `fr:idc:promotion:*`
|
|
140
|
+
- `fr:idc:release:*`
|
|
141
|
+
- `fr:idc:sso-cookie:*`
|
|
100
142
|
|
|
101
143
|
## [2.0.0-52] - 2024-03-23
|
|
102
144
|
|
|
103
145
|
### Changed
|
|
104
146
|
|
|
105
|
-
-
|
|
147
|
+
- Update to frodo-lib 2.0.0-73
|
|
106
148
|
|
|
107
149
|
### Fixed
|
|
108
150
|
|
|
109
|
-
-
|
|
110
|
-
-
|
|
151
|
+
- \#378: `--llt` option of `frodo admin create-oauth2-client-with-admin-privileges` now works properly again
|
|
152
|
+
- \#377: Frodo CLI now properly handles FrodoErrors thrown by frodo-lib
|
|
111
153
|
|
|
112
154
|
## [2.0.0-51] - 2024-02-10
|
|
113
155
|
|
|
@@ -117,7 +159,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
117
159
|
|
|
118
160
|
### Fixed
|
|
119
161
|
|
|
120
|
-
-
|
|
162
|
+
- \#363: Doing a full export of IDM from FIDC started hanging between v2.0.0.32 and v2.0.0.33
|
|
121
163
|
|
|
122
164
|
## [2.0.0-48] - 2024-02-01
|
|
123
165
|
|
|
@@ -125,11 +167,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
125
167
|
|
|
126
168
|
### Added
|
|
127
169
|
|
|
128
|
-
-
|
|
170
|
+
- \#360: Frodo now saves the deployment type in connection profiles.
|
|
129
171
|
|
|
130
172
|
### Changed
|
|
131
173
|
|
|
132
|
-
-
|
|
174
|
+
- Update to frodo-lib 2.0.0-67
|
|
133
175
|
|
|
134
176
|
## [2.0.0-46] - 2024-01-20
|
|
135
177
|
|
|
@@ -137,7 +179,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
137
179
|
|
|
138
180
|
### Added
|
|
139
181
|
|
|
140
|
-
-
|
|
182
|
+
- pem and base64hmac encoded ESV secret creation
|
|
141
183
|
|
|
142
184
|
## [2.0.0-44] - 2024-01-11
|
|
143
185
|
|
|
@@ -171,57 +213,57 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
171
213
|
|
|
172
214
|
### Added
|
|
173
215
|
|
|
174
|
-
-
|
|
216
|
+
- \#283: Support for authentication settings:
|
|
175
217
|
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
218
|
+
- `frodo authn` Manage authentication setting.
|
|
219
|
+
- `describe` List authentication settings.
|
|
220
|
+
- `export` Export authentication settings.
|
|
221
|
+
- `import` Import authentication settings.
|
|
180
222
|
|
|
181
|
-
|
|
223
|
+
Examples:
|
|
182
224
|
|
|
183
|
-
|
|
184
|
-
|
|
225
|
+
- Describe authentication settings:<br>
|
|
226
|
+
`frodo authn describe <myTenant> <realm>`
|
|
185
227
|
|
|
186
|
-
|
|
228
|
+
`frodo authn describe --json <myTenant> <realm>`
|
|
187
229
|
|
|
188
|
-
|
|
230
|
+
`frodo authn describe <myTenant> <username> <password>`
|
|
189
231
|
|
|
190
|
-
|
|
191
|
-
|
|
232
|
+
- Describe authentication settings in machine-readable format (json):<br>
|
|
233
|
+
`frodo authn describe --json <myTenant> <realm>`
|
|
192
234
|
|
|
193
|
-
|
|
235
|
+
`frodo authn describe --json <myTenant> <realm> <username> <password>`
|
|
194
236
|
|
|
195
|
-
|
|
196
|
-
|
|
237
|
+
- Export authentication settings to file:<br>
|
|
238
|
+
`frodo authn export <myTenant> <realm>`
|
|
197
239
|
|
|
198
|
-
|
|
240
|
+
`frodo authn export <myTenant> <realm> <username> <password>`
|
|
199
241
|
|
|
200
|
-
|
|
201
|
-
|
|
242
|
+
- Import authentication settings from file:<br>
|
|
243
|
+
`frodo authn import -f alphaRealm.authentication.settings.json <myTenant> <realm>`
|
|
202
244
|
|
|
203
|
-
|
|
245
|
+
`frodo authn import -f alphaRealm.authentication.settings.json <myTenant> <realm> <username> <password>`<br>
|
|
204
246
|
|
|
205
|
-
|
|
247
|
+
- \#217: Support `--json` with `frodo esv variable describe`.
|
|
206
248
|
|
|
207
249
|
## [2.0.0-29] - 2023-11-02
|
|
208
250
|
|
|
209
251
|
### Added
|
|
210
252
|
|
|
211
|
-
-
|
|
253
|
+
- 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.
|
|
212
254
|
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
255
|
+
- The new default behavior is for Frodo CLI to use the new token cache for all applicable commands.
|
|
256
|
+
- A new global option `--no-cache` has been added to all commands to allow disabling the cache for indiviual invocations.
|
|
257
|
+
- A new environment variable `FRODO_NO_CACHE` is available to globally turn off token caching.
|
|
258
|
+
- A new environment variable `FRODO_TOKEN_CACHE_PATH` is available to instruct Frodo Library to use a non-default token cache file.
|
|
217
259
|
|
|
218
|
-
-
|
|
260
|
+
- rockcarver/frodo-lib#340: Frodo Library now autotomatically refreshes expired session and access tokens.
|
|
219
261
|
|
|
220
|
-
|
|
262
|
+
- 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.
|
|
221
263
|
|
|
222
264
|
### Fixed
|
|
223
265
|
|
|
224
|
-
-
|
|
266
|
+
- \#316: Frodo Library now properly exports scripts referenced by the `Device Match` node if the `Use Custom Matching Script` option is selected.
|
|
225
267
|
|
|
226
268
|
## [2.0.0-28] - 2023-10-25
|
|
227
269
|
|
|
@@ -253,13 +295,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
253
295
|
|
|
254
296
|
### Fixed
|
|
255
297
|
|
|
256
|
-
-
|
|
298
|
+
- \#276: `frodo script import -A --watch <tenant>` (preceeded by `frodo script export -A --extract <tenant>`) now properly reports errors like scripts not compiling or any REST errors but won't exit the watch thread but keep on watching and pushing local changes to `<tenant>`.
|
|
257
299
|
|
|
258
300
|
## [2.0.0-14] - 2023-08-16
|
|
259
301
|
|
|
260
302
|
### Changed
|
|
261
303
|
|
|
262
|
-
-
|
|
304
|
+
- Update to frodo-lib 2.0.0-21
|
|
263
305
|
|
|
264
306
|
## [2.0.0-13] - 2023-07-31
|
|
265
307
|
|
|
@@ -267,7 +309,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
267
309
|
|
|
268
310
|
### Fixed
|
|
269
311
|
|
|
270
|
-
-
|
|
312
|
+
- rockcarver/frodo-lib#272: Added new `--variable-type` parameter to `frodo esv variable create` command.
|
|
271
313
|
|
|
272
314
|
## [2.0.0-11] - 2023-07-17
|
|
273
315
|
|
|
@@ -283,33 +325,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
283
325
|
|
|
284
326
|
### Added
|
|
285
327
|
|
|
286
|
-
-
|
|
328
|
+
- \#251: Support for Identity Cloud admin federation configuration:
|
|
287
329
|
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
330
|
+
- `frodo admin federation` Manage admin federation configuration.
|
|
331
|
+
- `export` Export admin federation providers.
|
|
332
|
+
- `import` Import admin federation providers.
|
|
333
|
+
- `list` List admin federation providers.
|
|
292
334
|
|
|
293
|
-
|
|
335
|
+
Examples:
|
|
294
336
|
|
|
295
|
-
|
|
296
|
-
|
|
337
|
+
- List all configured admin federation providers:<br>
|
|
338
|
+
`frodo admin federation list <myTenant>`
|
|
297
339
|
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
340
|
+
`frodo admin federation list <myTenant> <username> <password>`
|
|
341
|
+
- Export all admin federation providers to a single file:<br>
|
|
342
|
+
`frodo admin federation export -a <myTenant>`
|
|
301
343
|
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
344
|
+
`frodo admin federation export -a <myTenant> <username> <password>`
|
|
345
|
+
- Import all admin federation providers from a single file:<br>
|
|
346
|
+
`frodo admin federation import -a -f allProviders.admin.federation.json <myTenant>`
|
|
305
347
|
|
|
306
|
-
|
|
348
|
+
`frodo admin federation import -a -f allProviders.admin.federation.json <myTenant> <username> <password>`<br>
|
|
307
349
|
|
|
308
|
-
|
|
350
|
+
**_Note_**: Only tenant admins can perform admin federation operations, service accounts do not have the required privileges. Therefore, the connection profile used must contain username and password or they must be provided through command arguments.
|
|
309
351
|
|
|
310
352
|
### Changed
|
|
311
353
|
|
|
312
|
-
-
|
|
354
|
+
- Update to frodo-lib 2.0.0-8
|
|
313
355
|
|
|
314
356
|
## [2.0.0-5] - 2023-06-21
|
|
315
357
|
|
|
@@ -325,34 +367,34 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
325
367
|
|
|
326
368
|
### Added
|
|
327
369
|
|
|
328
|
-
-
|
|
329
|
-
-
|
|
370
|
+
- MacOS binaries are now signed and notarized and run without security exceptions.
|
|
371
|
+
- \#251: Support for Identity Cloud admin federation configuration:
|
|
330
372
|
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
373
|
+
- `frodo admin federation` Manage admin federation configuration.
|
|
374
|
+
- `export` Export admin federation providers.
|
|
375
|
+
- `import` Import admin federation providers.
|
|
376
|
+
- `list` List admin federation providers.
|
|
335
377
|
|
|
336
|
-
|
|
378
|
+
Examples:
|
|
337
379
|
|
|
338
|
-
|
|
339
|
-
|
|
380
|
+
- List all configured admin federation providers:<br>
|
|
381
|
+
`frodo admin federation list <myTenant>`
|
|
340
382
|
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
383
|
+
`frodo admin federation list <myTenant> <username> <password>`
|
|
384
|
+
- Export all admin federation providers to a single file:<br>
|
|
385
|
+
`frodo admin federation export -a <myTenant>`
|
|
344
386
|
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
387
|
+
`frodo admin federation export -a <myTenant> <username> <password>`
|
|
388
|
+
- Import all admin federation providers from a single file:<br>
|
|
389
|
+
`frodo admin federation import -a -f allProviders.admin.federation.json <myTenant>`
|
|
348
390
|
|
|
349
|
-
|
|
391
|
+
`frodo admin federation import -a -f allProviders.admin.federation.json <myTenant> <username> <password>`<br>
|
|
350
392
|
|
|
351
|
-
|
|
393
|
+
**_Note_**: Only tenant admins can perform admin federation operations, service accounts do not have the required privileges. Therefore, the connection profile used must contain username and password or they must be provided through command arguments.
|
|
352
394
|
|
|
353
395
|
### Changed
|
|
354
396
|
|
|
355
|
-
-
|
|
397
|
+
- Update to frodo-lib 1.1.0
|
|
356
398
|
|
|
357
399
|
## [1.0.0-1] - 2023-06-30
|
|
358
400
|
|
|
@@ -364,33 +406,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
364
406
|
|
|
365
407
|
### Added
|
|
366
408
|
|
|
367
|
-
-
|
|
409
|
+
- \#251: Support for Identity Cloud admin federation configuration:
|
|
368
410
|
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
411
|
+
- `frodo admin federation` Manage admin federation configuration.
|
|
412
|
+
- `export` Export admin federation providers.
|
|
413
|
+
- `import` Import admin federation providers.
|
|
414
|
+
- `list` List admin federation providers.
|
|
373
415
|
|
|
374
|
-
|
|
416
|
+
Examples:
|
|
375
417
|
|
|
376
|
-
|
|
377
|
-
|
|
418
|
+
- List all configured admin federation providers:<br>
|
|
419
|
+
`frodo admin federation list <myTenant>`
|
|
378
420
|
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
421
|
+
`frodo admin federation list <myTenant> <username> <password>`
|
|
422
|
+
- Export all admin federation providers to a single file:<br>
|
|
423
|
+
`frodo admin federation export -a <myTenant>`
|
|
382
424
|
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
425
|
+
`frodo admin federation export -a <myTenant> <username> <password>`
|
|
426
|
+
- Import all admin federation providers from a single file:<br>
|
|
427
|
+
`frodo admin federation import -a -f allProviders.admin.federation.json <myTenant>`
|
|
386
428
|
|
|
387
|
-
|
|
429
|
+
`frodo admin federation import -a -f allProviders.admin.federation.json <myTenant> <username> <password>`<br>
|
|
388
430
|
|
|
389
|
-
|
|
431
|
+
**_Note_**: Only tenant admins can perform admin federation operations, service accounts do not have the required privileges. Therefore, the connection profile used must contain username and password or they must be provided through command arguments.
|
|
390
432
|
|
|
391
433
|
### Changed
|
|
392
434
|
|
|
393
|
-
-
|
|
435
|
+
- Update to frodo-lib 1.0.1-0
|
|
394
436
|
|
|
395
437
|
## [0.24.6-0] - 2023-06-21
|
|
396
438
|
|
|
@@ -398,13 +440,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
398
440
|
|
|
399
441
|
### Added
|
|
400
442
|
|
|
401
|
-
-
|
|
443
|
+
- Fixed build pipeline for automatically updating homebrew formula
|
|
402
444
|
|
|
403
445
|
## [0.24.4] - 2023-05-30
|
|
404
446
|
|
|
405
447
|
### Added
|
|
406
448
|
|
|
407
|
-
-
|
|
449
|
+
- Build pipeline for automatically updating homebrew formula for frodo-cli
|
|
408
450
|
|
|
409
451
|
## [0.24.4-2] - 2023-05-30
|
|
410
452
|
|
|
@@ -416,67 +458,67 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
416
458
|
|
|
417
459
|
### Changed
|
|
418
460
|
|
|
419
|
-
-
|
|
461
|
+
- Update to frodo-lib 0.19.2
|
|
420
462
|
|
|
421
463
|
## [0.24.2] - 2023-05-22
|
|
422
464
|
|
|
423
465
|
### Added
|
|
424
466
|
|
|
425
|
-
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
467
|
+
- Support for authorization policies, policy sets, and resource types through new `authz` commands:
|
|
468
|
+
|
|
469
|
+
- `frodo authz type` Manage authorization resource types.
|
|
470
|
+
- `delete` Delete authorization resource types.
|
|
471
|
+
- `describe` Describe authorization resource types.
|
|
472
|
+
- `export` Export authorization resource types.
|
|
473
|
+
- `import` Import authorization resource types.
|
|
474
|
+
- `list` List authorization resource types.
|
|
475
|
+
- `frodo authz set` Manage authorization policy sets.
|
|
476
|
+
- `delete` Delete authorization policy sets.
|
|
477
|
+
- `describe` Describe authorization policy sets.
|
|
478
|
+
- `export` Export authorization policy sets.
|
|
479
|
+
- `import` Import authorization policy sets.
|
|
480
|
+
- `list` List authorization policy sets.
|
|
481
|
+
- `frodo authz policy` Manage authorization policies.
|
|
482
|
+
- `delete` Delete authorization policies.
|
|
483
|
+
- `describe` Describe authorization policies.
|
|
484
|
+
- `export` Export authorization policies.
|
|
485
|
+
- `import` Import authorization policies.
|
|
486
|
+
- `list` List authorization policies.
|
|
487
|
+
|
|
488
|
+
Examples:
|
|
489
|
+
|
|
490
|
+
- Export a whole policy set including policies and resource types:<br>
|
|
491
|
+
`frodo authz set export -i <myPolicySet> <myTenant>`
|
|
492
|
+
- Import a whole policy set including dependencies exported using the previous example:<br>
|
|
493
|
+
`frodo authz set import -f <myPolicySet>.policyset.authz.json <myTenant>`
|
|
494
|
+
- Remove a whole policy set with all its policies:<br>
|
|
495
|
+
`frodo authz set delete -i <myPolicySet> <myTenant>`
|
|
496
|
+
- Export all policies in a policy set including dependencies:<br>
|
|
497
|
+
`frodo authz policy export -a --set-id <myPolicySet> <myTenant>`
|
|
498
|
+
- Import all policies into another policy set in another tenant:<br>
|
|
499
|
+
`frodo authz policy import -a --set-id <myOtherPolicySet> -f <>.policy.authz.json <myOtherTenant>`<br>
|
|
500
|
+
**_Note_**: Policy IDs/names have to be unique within the realm. Therefore you cannot export all policies from one policy set and import them into another policy set in the same realm without deleting the original policy set first.
|
|
501
|
+
|
|
502
|
+
Notes:
|
|
503
|
+
|
|
504
|
+
- Use the new `--prereqs` option with the `authz set/policy import/export` commands to include structural prerequisites like resource types and policy sets.
|
|
505
|
+
- Use the new `--json` option with all `describe` sub-commands:<br>
|
|
506
|
+
`frodo authz type describe --json -n URL <myTenant>`<br>
|
|
507
|
+
`frodo authz type describe --json -i 76656a38-5f8e-401b-83aa-4ccb74ce88d2 <myTenant>`<br>
|
|
508
|
+
`frodo authz set describe --json -i <myPolicySet> <myTenant>`<br>
|
|
509
|
+
`frodo authz policy describe --json -i <myPolicy> <myTenant>`
|
|
468
510
|
|
|
469
511
|
### Changed
|
|
470
512
|
|
|
471
|
-
-
|
|
472
|
-
-
|
|
473
|
-
-
|
|
474
|
-
|
|
475
|
-
|
|
513
|
+
- Update to frodo-lib 0.19.1
|
|
514
|
+
- Update dependencies
|
|
515
|
+
- Changes based on rockcarver/frodo-lib#234 (code refactoring) and updated frodo-lib:
|
|
516
|
+
- Added support for `-A` and `-a` options to `frodo app import` command
|
|
517
|
+
- Added support for `--no-deps` option to `frodo app export` and `frodo app import` commands
|
|
476
518
|
|
|
477
519
|
### Fixed
|
|
478
520
|
|
|
479
|
-
-
|
|
521
|
+
- \#214: Fixed a regression introduced in #186, which 'swallowed' `frodo` command exit codes and resulted in always exiting with 0 even if a `frodo` command returned with a different exit code.
|
|
480
522
|
|
|
481
523
|
## [0.24.1] - 2023-05-22 [YANKED]
|
|
482
524
|
|
|
@@ -496,39 +538,39 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
496
538
|
|
|
497
539
|
### Changed
|
|
498
540
|
|
|
499
|
-
-
|
|
541
|
+
- Update to frodo-lib 0.18.9-4
|
|
500
542
|
|
|
501
543
|
## [0.23.1-3] - 2023-04-18
|
|
502
544
|
|
|
503
545
|
### Changed
|
|
504
546
|
|
|
505
|
-
-
|
|
506
|
-
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
-
|
|
510
|
-
-
|
|
547
|
+
- Update to frodo-lib 0.18.9-3
|
|
548
|
+
- Changes based on rockcarver/frodo-lib#234 (code refactoring) and updated frodo-lib:
|
|
549
|
+
- Added support for `-A` and `-a` options to `frodo app import` command
|
|
550
|
+
- Added support for `--no-deps` option to `frodo app export` and `frodo app import` commands
|
|
551
|
+
- \#213: More debug logging for connection profile lookup by a unique substring. Use --debug to see the additional output. This is not yet a solution for #213 but should help identify the root cause.
|
|
552
|
+
- \#216: More debug logging for the 2fa process and proper detection of unsupported webauthn factor.
|
|
511
553
|
|
|
512
554
|
### Fixed
|
|
513
555
|
|
|
514
|
-
-
|
|
556
|
+
- \#214: Fixed a regression introduced in #186, which 'swallowed' `frodo` command exit codes and resulted in always exiting with 0 even if a `frodo` command returned with a different exit code.
|
|
515
557
|
|
|
516
558
|
## [0.23.1-2] - 2023-03-28
|
|
517
559
|
|
|
518
560
|
### Changed
|
|
519
561
|
|
|
520
|
-
-
|
|
562
|
+
- Update to frodo-lib 0.18.9-1
|
|
521
563
|
|
|
522
564
|
## [0.23.1-1] - 2023-03-23
|
|
523
565
|
|
|
524
566
|
### Added
|
|
525
567
|
|
|
526
|
-
-
|
|
527
|
-
-
|
|
568
|
+
- \#213: More debug logging for connection profile lookup by a unique substring. Use --debug to see the additional output. This is not yet a solution for #213 but should help identify the root cause.
|
|
569
|
+
- \#216: More debug logging for the 2fa process and proper detection of unsupported webauthn factor.
|
|
528
570
|
|
|
529
571
|
### Changed
|
|
530
572
|
|
|
531
|
-
-
|
|
573
|
+
- Update to frodo-lib 0.18.9-0
|
|
532
574
|
|
|
533
575
|
## [0.23.1-0] - 2023-02-27
|
|
534
576
|
|
|
@@ -536,85 +578,85 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
536
578
|
|
|
537
579
|
### Added
|
|
538
580
|
|
|
539
|
-
-
|
|
581
|
+
- \#186: Support node 19 when running as npm and when developing. Binaries are still built using node 18 until our package manager supports node 19.
|
|
540
582
|
|
|
541
583
|
### Changed
|
|
542
584
|
|
|
543
|
-
-
|
|
585
|
+
- Update to frodo-lib 0.18.8
|
|
544
586
|
|
|
545
587
|
### Fixed
|
|
546
588
|
|
|
547
|
-
-
|
|
589
|
+
- \#115: Running frodo as an npm package no longer requires the `-S` option of the `env` shell command, which caused issued on Linux distributions with older version of `coreutils` like `CentOS Linux 7` and other Redhat-based distributions.
|
|
548
590
|
|
|
549
591
|
## [0.22.3] - 2023-02-16
|
|
550
592
|
|
|
551
593
|
### Changed
|
|
552
594
|
|
|
553
|
-
-
|
|
554
|
-
-
|
|
595
|
+
- Update to frodo-lib 0.18.7
|
|
596
|
+
- Update dependencies
|
|
555
597
|
|
|
556
598
|
## [0.22.2] - 2023-02-15
|
|
557
599
|
|
|
558
600
|
### Fixed
|
|
559
601
|
|
|
560
|
-
-
|
|
602
|
+
- \#203: Frodo no longer outputs cosmetic error messages when exporting IDM config.
|
|
561
603
|
|
|
562
604
|
## [0.22.1] - 2023-02-14
|
|
563
605
|
|
|
564
606
|
### Changed
|
|
565
607
|
|
|
566
|
-
-
|
|
608
|
+
- Update to frodo-lib 0.18.5
|
|
567
609
|
|
|
568
610
|
### Fixed
|
|
569
611
|
|
|
570
|
-
-
|
|
612
|
+
- \#196 and #197: Frodo now properly detects Encore environments as ForgeOps environments and obtains an access token for IDM APIs.
|
|
571
613
|
|
|
572
614
|
## [0.22.0] - 2023-02-13
|
|
573
615
|
|
|
574
616
|
### Added
|
|
575
617
|
|
|
576
|
-
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
618
|
+
- The `frodo conn save` command now supports the following new options to manage log API keys:
|
|
619
|
+
1. `--log-api-key [key]` Log API key. If specified, must also include `--log-api-secret`. Ignored with `--no-log-api`.
|
|
620
|
+
2. `--log-api-secret [secret]` Log API secret. If specified, must also include `--log-api-key`. Ignored with `--no-log-api`.
|
|
621
|
+
3. `--no-log-api` Do not create and add log API key and secret.
|
|
580
622
|
|
|
581
623
|
### Changed
|
|
582
624
|
|
|
583
|
-
-
|
|
584
|
-
-
|
|
625
|
+
- Update to frodo-lib 0.18.4
|
|
626
|
+
- The `frodo conn save` command no longer supports providing log API key and secret as arguments but requires the use of the new options `--log-api-key` and `--log-api-secret`.
|
|
585
627
|
|
|
586
628
|
### Fixed
|
|
587
629
|
|
|
588
|
-
-
|
|
630
|
+
- \#195: Frodo again creates log API keys on first use of any of the `frodo logs` sub-commands `list`, `tail`, or `fetch` and a connection profile without an API key.
|
|
589
631
|
|
|
590
632
|
## [0.21.1] - 2023-01-27
|
|
591
633
|
|
|
592
634
|
### Changed
|
|
593
635
|
|
|
594
|
-
-
|
|
595
|
-
-
|
|
636
|
+
- Update to frodo-lib 0.18.3
|
|
637
|
+
- \#192: Better error handling and reporting in frodo-cli
|
|
596
638
|
|
|
597
639
|
## [0.21.0] - 2023-01-25
|
|
598
640
|
|
|
599
641
|
### Added
|
|
600
642
|
|
|
601
|
-
-
|
|
643
|
+
- \#52: Added new developer options for `script export` and `script import` commands:
|
|
602
644
|
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
645
|
+
- `frodo script export`:
|
|
646
|
+
- `-x`, `--extract`: Extract the script from the exported file, and save it to a separate file. Ignored with `-n` or `-a`.
|
|
647
|
+
- `frodo script import`:
|
|
606
648
|
|
|
607
|
-
|
|
649
|
+
- `-w`, `--watch`: Watch for changes to the script files and import the scripts automatically when the file changes. Can only be used with `-A`. (default: false)
|
|
608
650
|
|
|
609
|
-
|
|
651
|
+
**_Note:_** This new option only applies if the export was generated with the new `--extract` option!
|
|
610
652
|
|
|
611
653
|
### Changed
|
|
612
654
|
|
|
613
|
-
-
|
|
655
|
+
- Updated to frodo-lib 0.18.2
|
|
614
656
|
|
|
615
657
|
### Fixed
|
|
616
658
|
|
|
617
|
-
-
|
|
659
|
+
- \#190: Frodo now properly imports previously exported saml providers.
|
|
618
660
|
|
|
619
661
|
## [0.20.2-0] - 2023-01-24
|
|
620
662
|
|
|
@@ -622,14 +664,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
622
664
|
|
|
623
665
|
### Changed
|
|
624
666
|
|
|
625
|
-
-
|
|
626
|
-
-
|
|
627
|
-
-
|
|
628
|
-
-
|
|
667
|
+
- Updated to frodo-lib 0.18.1
|
|
668
|
+
- Include service account name in `frodo conn list -l` and `frodo conn describe <host>` output.
|
|
669
|
+
- Add missing service account name when running `frodo conn save <host>`.
|
|
670
|
+
- Add tenant name to beginning of output of all `frodo logs` sub-commands: `fetch`, `list`, `tail`.
|
|
629
671
|
|
|
630
672
|
### Fixed
|
|
631
673
|
|
|
632
|
-
-
|
|
674
|
+
- \#176: frodo logs fetch end timestamp ignored
|
|
633
675
|
|
|
634
676
|
## [0.20.1-1] - 2023-01-16
|
|
635
677
|
|
|
@@ -637,113 +679,113 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
637
679
|
|
|
638
680
|
### Fixed
|
|
639
681
|
|
|
640
|
-
-
|
|
682
|
+
- \#176: frodo logs fetch end timestamp ignored
|
|
641
683
|
|
|
642
684
|
## [0.20.0] - 2023-01-13
|
|
643
685
|
|
|
644
686
|
### Added
|
|
645
687
|
|
|
646
|
-
-
|
|
688
|
+
- Full support for Identity Cloud Service Accounts across all commands. Three options to leverage service accounts:
|
|
647
689
|
|
|
648
|
-
|
|
690
|
+
1. Connection profiles for daily CLI usage:
|
|
649
691
|
|
|
650
|
-
|
|
692
|
+
For daily admin and development tasks, using the new `frodo conn save` command (see details under next bullet) is the easiest way to get going with service accounts. To migrate an existing connection profile to service accounts and automatically create a service account for your tenant admin, simply issue the following command:
|
|
651
693
|
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
694
|
+
% frodo conn save service-accounts
|
|
695
|
+
Connected to https://openam-service-accounts.forgeblocks.com/am [alpha] as user volker.scheuber@forgerock.com
|
|
696
|
+
Created and added service account Frodo-SA-1673586189578 with id 99c04bba-7213-463b-9a27-ceafa8a95734 to profile.
|
|
697
|
+
Saved connection profile https://openam-service-accounts.forgeblocks.com/am
|
|
698
|
+
%
|
|
657
699
|
|
|
658
|
-
|
|
700
|
+
Then validate your connection profile is using the new service account:
|
|
659
701
|
|
|
660
|
-
|
|
661
|
-
|
|
702
|
+
% frodo info service-accounts
|
|
703
|
+
Connected to https://openam-service-accounts.forgeblocks.com/am [alpha] as service account Frodo-SA-1673586189578 [99c04bba-7213-463b-9a27-ceafa8a95734]
|
|
662
704
|
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
705
|
+
Host URL │https://openam-service-accounts.forgeblocks.com/am
|
|
706
|
+
AM Version │7.3.0-2022-10-SNAPSHOT Build 9a1793c301ef579705e59b66ce57587f553e915f (2022-December-13 10:05)
|
|
707
|
+
Subject (Type) │Frodo-SA-1673586189578 [99c04bba-7213-463b-9a27-ceafa8a95734] (Service Account)
|
|
708
|
+
Deployment Type│cloud
|
|
709
|
+
Cookie Name │e8b2bd07d5440d3
|
|
710
|
+
Immutable │false
|
|
711
|
+
Locked │false
|
|
712
|
+
Region │us-west1
|
|
713
|
+
Tier │other
|
|
672
714
|
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
715
|
+
Bearer token:
|
|
716
|
+
eyJ0eXAiOiJKV1QiLCJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiZGlyIn0..JD1iu64iGZZoGNwEr-iF2w.af-0-UDDOdusAETjw9YE3YnjOPr6TrdQrBLcl1lxf5RpNThfRhD08xvu1WtJbUZgvjbWdajECEFJfnEinnrUdpe9l0tHU6gAxDrRmu9hAjt0AB3PFSk9BE5SlwvaGoW5vrF4oH0IYtuv4899hFF8KGNYUtou143xmSrsLH37862YiAeiRKtjaQsVUrdbDPAFnKgGRxJIiXp-UE0ZCQQGSqm-Gj0AqVvo-Piib9THrEbbJCzdc00RPaCU2Ra1DH9PDid7ix-zfuind5IgEXxA8XwBM7kSEkiDLUWZ8EaFhn6YXwIHjXetacgYvvDaUav2Fq5baIitnG_LIrCm32XzcDkVnph4mVklBwfbQbWE6BGXEVLK-QLdDupaQw-bic-yVs2d7PBk2y70gbChHCQOm6-MepkYznP4wKoRR1gkqCdl51QIp-tsFB5K2plrKXiwsfHlHKfFKmsbdQUmH7xJFZQRhAtR_pKm-vHPOrPfBh0VbAdLRSkSeOZUABFH56X3gwXIpG_zuH42bQQkM9AlkB-lZrLf4jN0zFq-2ZN-zDgRR9h6qiiD3p9BDmFfaorUDTfFSrfaKas7OIp5ooW8Kqpv28RRtRtvfex0vT_kRbWl5R08MPWZDKZbx4IMyuun-2pYJ-F2-dvfA4A-jRvWIvC6jTUTu-RZZ0Yw1F2lgwFOVbmpMmG2uGHp5GceWePsZ34FVtJuaTd5D-uq_FoAb3HQ7FGEgUMJN_q82hCCX3URv_ocbFMjYwctdUqV_Ed-__A_9lbHHr8D2Uw_Qo0mwku7qwNBTS0-OcrwDvBOJohzRbpbfim-Sq2UzV9SBzzXNK7sMft1pNfu2-saOwPfy6SE0u42-HDqxE9t4MkklSroPY0oDUxO58ET8LXnewGhC9Tt0XTk6WA2rNLcNirhFqdmtKgfrSMQ_t22_DQEDwXpXqtHGmDoltJe7x_6Ofh0W5l7_A71MoHeFpVa_AHpHybnaF4fvUbD284wOV8i22SqrUKuHoJ3o6_g5JlhvMCvb4OZQ-ltxSf98aPsB9nCSthYg5-GkiR_r5mK1w9gZkBTXfYs0qC8-zYEQb4WNiI9.2JGMj9iW6YD-RE_dGkL7_w
|
|
717
|
+
%
|
|
676
718
|
|
|
677
|
-
|
|
719
|
+
Once you have verified that your service account works, go ahead and enable MFA for your tenant admin account!
|
|
678
720
|
|
|
679
|
-
|
|
721
|
+
2. CLI parameters:
|
|
680
722
|
|
|
681
|
-
|
|
723
|
+
All commands support the following new options to use service accounts:
|
|
682
724
|
|
|
683
|
-
|
|
684
|
-
|
|
725
|
+
- `--sa-id <uuid>` Service account's uuid. If specified, must also include `--sa-jwk-file`.
|
|
726
|
+
- `--sa-jwk-file <file>` File containing the service account's java web key (jwk). Jwk must contain private key! If specified, must also include `--sa-id`.
|
|
685
727
|
|
|
686
|
-
|
|
728
|
+
This is a great way to leverage the nice UI to create and manage service accounts and then use one of the accounts with Frodo.
|
|
687
729
|
|
|
688
|
-
|
|
730
|
+
3. Environment variables for CI/CD
|
|
689
731
|
|
|
690
|
-
|
|
732
|
+
For CI/CD pipelines, environment variables are preferable over command line parameters, because they are not visible in system logs:
|
|
691
733
|
|
|
692
|
-
|
|
693
|
-
|
|
734
|
+
- `FRODO_SA_ID`: Service account's uuid. If set, must also set `FRODO_SA_JWK`.
|
|
735
|
+
- `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`.
|
|
694
736
|
|
|
695
|
-
-
|
|
737
|
+
- \#143: Support Identity Cloud Service Accounts in `frodo conn save|add` command
|
|
696
738
|
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
739
|
+
1. The `frodo conn add` command is renamed to `frodo conn save` and `add` is added as an alias for backwards compatibility.
|
|
740
|
+
2. The `frodo conn save` command supports the following new options to manage service accounts:
|
|
741
|
+
1. `--sa-id <uuid>` Service account's uuid. If specified, must also include `--sa-jwk-file`. Ignored with `--no-sa`.
|
|
742
|
+
2. `--sa-jwk-file <file>` File containing the service account's java web key (jwk). Jwk must contain private key! If specified, must also include `--sa-id`. Ignored with `--no-sa`.
|
|
743
|
+
3. `--no-sa` Do not add service account.
|
|
744
|
+
3. The existing `--no-validate` option also applies to service account operations, allowing to add service account configuration to a connection profile without validating it, typical use case is an offline situation.
|
|
745
|
+
4. The `frodo conn save` command automatically creates a new service account and adds it to an existing ID Cloud profile without service account or to a new ID Cloud profile. It does not do that if the `--no-sa` option is supplied.
|
|
746
|
+
1. If `--sa-id` and `--sa-jwk-file` are supplied, `frodo conn save` adds the existing service account specified by those two parameters to the profile instead of creating a new service account.
|
|
747
|
+
2. The `frodo conn save` command checks if the ID Cloud tenant supports service accounts before performing any service account operations.
|
|
748
|
+
5. The `frodo conn save` command validates service account configuration unless the `--no-validate` options is supplied.
|
|
707
749
|
|
|
708
|
-
-
|
|
750
|
+
- Add support for additional environment variables:
|
|
709
751
|
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
752
|
+
- `FRODO_SA_ID`: Service account's uuid. If set, must also set `FRODO_SA_JWK`.
|
|
753
|
+
- `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`.
|
|
754
|
+
- `FRODO_AUTHENTICATION_SERVICE=journey`: Specify a login journey for frodo to use.
|
|
755
|
+
- `FRODO_MOCK=1`: Enable mocking. If enabled, frodo-lib replays recorded API responses instead of connecting to a platform instance.
|
|
756
|
+
- `FRODO_POLLY_LOG_LEVEL=info`: Frodo mock engine log level (`trace`, `debug`, `info`, `warn`, `error`, `silent`). This is helpful for troubleshooting the mock capability, only.
|
|
715
757
|
|
|
716
|
-
|
|
758
|
+
Environment variables added in 0.19.0:
|
|
717
759
|
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
760
|
+
- `FRODO_HOST`
|
|
761
|
+
- `FRODO_REALM`
|
|
762
|
+
- `FRODO_USERNAME`
|
|
763
|
+
- `FRODO_PASSWORD`
|
|
764
|
+
- `FRODO_SA_ID`
|
|
765
|
+
- `FRODO_SA_JWK`
|
|
766
|
+
- `FRODO_LOG_KEY`
|
|
767
|
+
- `FRODO_LOG_SECRET`
|
|
768
|
+
- `FRODO_DEBUG`
|
|
727
769
|
|
|
728
|
-
-
|
|
770
|
+
- Enhanced the `frodo info` command to give more details for Identity Cloud tenants.
|
|
729
771
|
|
|
730
|
-
-
|
|
772
|
+
- Warn if IDM connector servers are offline
|
|
731
773
|
|
|
732
|
-
-
|
|
774
|
+
- Add mock mode for library to allow unit testing of clients using the library, like frodo-cli. This initial release contains minimal mock data. Enable mock mode using `FRODO_MOCK=1`.
|
|
733
775
|
|
|
734
|
-
-
|
|
776
|
+
- Updated list of contributors in package.json
|
|
735
777
|
|
|
736
|
-
-
|
|
778
|
+
- \#166: Add linux arm64 binary builds
|
|
737
779
|
|
|
738
780
|
### Changed
|
|
739
781
|
|
|
740
|
-
-
|
|
741
|
-
-
|
|
782
|
+
- Updated to frodo-lib 0.18.0
|
|
783
|
+
- More automated testing
|
|
742
784
|
|
|
743
785
|
### Fixed
|
|
744
786
|
|
|
745
|
-
-
|
|
746
|
-
-
|
|
787
|
+
- \#164: Frodo now properly exports scripts with special chars in name
|
|
788
|
+
- \#161: Frodo now properly adds connection profiles with log credentials
|
|
747
789
|
|
|
748
790
|
## [0.19.5-2] - 2023-01-13
|
|
749
791
|
|
|
@@ -769,76 +811,76 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
769
811
|
|
|
770
812
|
### Fixed
|
|
771
813
|
|
|
772
|
-
-
|
|
814
|
+
- \#161: Frodo now properly allows adding connection profiles with log credentials
|
|
773
815
|
|
|
774
816
|
## [0.19.0] - 2022-12-18
|
|
775
817
|
|
|
776
818
|
### Added
|
|
777
819
|
|
|
778
|
-
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
-
|
|
806
|
-
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
-
|
|
832
|
-
-
|
|
820
|
+
- \#154: Allow all connection parameters to be supplied using environment variables for secure CI/CD:
|
|
821
|
+
- `FRODO_HOST`
|
|
822
|
+
- `FRODO_REALM`
|
|
823
|
+
- `FRODO_USERNAME`
|
|
824
|
+
- `FRODO_PASSWORD`
|
|
825
|
+
- `FRODO_SA_ID`
|
|
826
|
+
- `FRODO_SA_JWK`
|
|
827
|
+
- `FRODO_LOG_KEY`
|
|
828
|
+
- `FRODO_LOG_SECRET`
|
|
829
|
+
- `FRODO_DEBUG` - set to any value to enable debug logging, e.g. `FRODO_DEBUG=1 frodo info tenant-name`
|
|
830
|
+
- \#143: Support Identity Cloud Service Accounts in `frodo conn save|add` command
|
|
831
|
+
1. The `frodo conn add` command is renamed to `frodo conn save` and `add` is added as an alias for backwards compatibility.
|
|
832
|
+
2. The `frodo conn save` command supports the following new options to manage service accounts:
|
|
833
|
+
1. `--sa-id <uuid>` Service account's uuid. If specified, must also include `--sa-jwk-file`. Ignored with `--no-sa`.
|
|
834
|
+
2. `--sa-jwk-file <file>` File containing the service account's java web key (jwk). Jwk must contain private key! If specified, must also include `--sa-id`. Ignored with `--no-sa`.
|
|
835
|
+
3. `--no-sa` Do not add service account.
|
|
836
|
+
3. The existing `--no-validate` option also applies to service account operations, allowing to add service account configuration to a connection profile without validating it, typical use case is an offline situation.
|
|
837
|
+
4. The `frodo conn save` command automatically creates a new service account and adds it to an existing ID Cloud profile without service account or to a new ID Cloud profile. It does not do that if the `--no-sa` option is supplied.
|
|
838
|
+
1. If `--sa-id` and `--sa-jwk-file` are supplied, `frodo conn save` adds the existing service account specified by those two parameters to the profile instead of creating a new service account.
|
|
839
|
+
2. The `frodo conn save` command checks if the ID Cloud tenant supports service accounts before performing any service account operations.
|
|
840
|
+
5. The `frodo conn save` command validates service account configuration unless the `--no-validate` options is supplied.
|
|
841
|
+
- \#101: Added new `frodo service` set of commands to manage AM realm services (`baseurl`, `DataStoreService`, `oauth-oidc`, `policyconfiguration`, `selfServiceTrees`, `SocialIdentityProviders`, `validation`, etc.) and global services (e.g. `CorsService`, `dashboard`, etc.).
|
|
842
|
+
frodo service
|
|
843
|
+
delete Delete AM services.
|
|
844
|
+
export Export AM services.
|
|
845
|
+
import Import AM services.
|
|
846
|
+
list List AM services.
|
|
847
|
+
- Added new `frodo idm import` command.
|
|
848
|
+
- \#98: Add support for Agents / Gateways
|
|
849
|
+
frodo agent Manage agents.
|
|
850
|
+
delete Delete agents of any type.
|
|
851
|
+
describe Describe agents of any type.
|
|
852
|
+
export Export agents of any type.
|
|
853
|
+
import Import agents of any type.
|
|
854
|
+
list List agents of any type.
|
|
855
|
+
gateway Manage gateway agents.
|
|
856
|
+
delete Delete gateway agents.
|
|
857
|
+
describe Describe gateway agents.
|
|
858
|
+
export Export gateway agents.
|
|
859
|
+
import Import gateway agents.
|
|
860
|
+
list List gateway agents.
|
|
861
|
+
java Manage java agents.
|
|
862
|
+
delete Delete java agents.
|
|
863
|
+
describe Describe java agents.
|
|
864
|
+
export Export java agents.
|
|
865
|
+
import Import java agents.
|
|
866
|
+
list List java agents.
|
|
867
|
+
web Manage web agents.
|
|
868
|
+
delete Delete web agents.
|
|
869
|
+
describe Describe web agents.
|
|
870
|
+
export Export web agents.
|
|
871
|
+
import Import web agents.
|
|
872
|
+
list List web agents.
|
|
873
|
+
- Added `--raw` option to `frodo saml import` and `frodo saml export` commands. The new option uses the classic (pre 7.0.0) SAML REST APIs. This allows Frodo to export and import SAML entity providers from pre 7 platform instances.
|
|
874
|
+
- New default options `--verbose`, `--debug`, and `--curlirize` for all commands
|
|
833
875
|
|
|
834
876
|
### Changed
|
|
835
877
|
|
|
836
|
-
-
|
|
837
|
-
-
|
|
838
|
-
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
-
|
|
878
|
+
- Updated to frodo-lib 0.17.0
|
|
879
|
+
- \#110: Migrate from .frodorc to Connections.json
|
|
880
|
+
- Ongoing refactoring of code base:
|
|
881
|
+
- Refactored Email Template and Theme functionality in lib to remove fs operations
|
|
882
|
+
- \#93: Move cli functions from frodo-lib to frodo-cli
|
|
883
|
+
- More automated testing
|
|
842
884
|
|
|
843
885
|
### Fixed
|
|
844
886
|
|
|
@@ -864,8 +906,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
864
906
|
|
|
865
907
|
## [0.18.2-9] - 2022-11-22
|
|
866
908
|
|
|
867
|
-
-
|
|
868
|
-
-
|
|
909
|
+
- \#110: Migrate from .frodorc to Connections.json
|
|
910
|
+
- Refactored Email Template and Theme functionality in lib to remove fs operations
|
|
869
911
|
|
|
870
912
|
## [0.18.2-8] - 2022-11-22
|
|
871
913
|
|
|
@@ -885,8 +927,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
885
927
|
|
|
886
928
|
## Fixed
|
|
887
929
|
|
|
888
|
-
-
|
|
889
|
-
-
|
|
930
|
+
- \#99: frodo logs does not show help on error.
|
|
931
|
+
- \#108: Use default values for begin and end timestamps for logs fetch
|
|
890
932
|
|
|
891
933
|
## [0.18.2-0] - 2022-10-22
|
|
892
934
|
|
|
@@ -894,241 +936,241 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
894
936
|
|
|
895
937
|
### Changed
|
|
896
938
|
|
|
897
|
-
-
|
|
939
|
+
- Updated frodo-lib to 0.16.1
|
|
898
940
|
|
|
899
941
|
## [0.18.0] - 2022-10-19
|
|
900
942
|
|
|
901
943
|
### Added
|
|
902
944
|
|
|
903
|
-
-
|
|
945
|
+
- \#85: Ability to fetch historical logs from ID Cloud
|
|
904
946
|
|
|
905
947
|
## [0.17.1] - 2022-10-17
|
|
906
948
|
|
|
907
949
|
### Changed
|
|
908
950
|
|
|
909
|
-
-
|
|
910
|
-
-
|
|
911
|
-
|
|
912
|
-
|
|
951
|
+
- Updated frodo-lib to 0.15.2
|
|
952
|
+
- Added options to `frodo journey describe` command:
|
|
953
|
+
- Added `--verbose` option
|
|
954
|
+
- Added `--debug` option
|
|
913
955
|
|
|
914
956
|
## [0.17.0] - 2022-10-16
|
|
915
957
|
|
|
916
958
|
### Changed
|
|
917
959
|
|
|
918
|
-
-
|
|
960
|
+
- Updated frodo-lib to 0.15.1
|
|
919
961
|
|
|
920
962
|
### Added
|
|
921
963
|
|
|
922
|
-
-
|
|
923
|
-
-
|
|
924
|
-
|
|
925
|
-
|
|
964
|
+
- \#82: Check for updates
|
|
965
|
+
- \#86: Support markdown output with `frodo journey describe` command
|
|
966
|
+
- Added new `--markdown` option to enable markdown output
|
|
967
|
+
- Added new `--output-file` option to enable writing output to a file
|
|
926
968
|
|
|
927
969
|
### Fixed
|
|
928
970
|
|
|
929
|
-
-
|
|
971
|
+
- \#88: `frodo idm export` now properly regognizes `-N`/`--name` option
|
|
930
972
|
|
|
931
973
|
## [0.16.2-1] - 2022-10-11
|
|
932
974
|
|
|
933
975
|
### Added
|
|
934
976
|
|
|
935
|
-
-
|
|
977
|
+
- \#82: Check for updates
|
|
936
978
|
|
|
937
979
|
## [0.16.2-0] - 2022-10-11
|
|
938
980
|
|
|
939
981
|
### Added
|
|
940
982
|
|
|
941
|
-
-
|
|
983
|
+
- \#82: Check for updates
|
|
942
984
|
|
|
943
985
|
## [0.16.1] - 2022-10-11
|
|
944
986
|
|
|
945
987
|
### Changed
|
|
946
988
|
|
|
947
|
-
-
|
|
948
|
-
-
|
|
989
|
+
- Updated frodo-lib to 0.14.1
|
|
990
|
+
- Release name is now prefixed with `Frodo CLI` for clarity in notifications.
|
|
949
991
|
|
|
950
992
|
### Added
|
|
951
993
|
|
|
952
|
-
-
|
|
953
|
-
-
|
|
994
|
+
- rockcarver/frodo-cli#70: Added ability to create custom logging noise filters
|
|
995
|
+
- \#76, #77, #78, #79: `frodo theme import` command now supports `--debug` and `--verbose` flags. Other commands may register the new cli options as well. Most output is expected to come from the library layer but cli commands may also issue `verbose` and `debug` message.
|
|
954
996
|
|
|
955
997
|
### Fixed
|
|
956
998
|
|
|
957
|
-
-
|
|
999
|
+
- rockcarver/frodo-lib#116: Frodo now properly imports themes.
|
|
958
1000
|
|
|
959
1001
|
## [0.16.0] - 2022-10-11
|
|
960
1002
|
|
|
961
1003
|
### Changed
|
|
962
1004
|
|
|
963
|
-
-
|
|
1005
|
+
- Updated frodo-lib to 0.14.0
|
|
964
1006
|
|
|
965
1007
|
### Added
|
|
966
1008
|
|
|
967
|
-
-
|
|
968
|
-
-
|
|
1009
|
+
- rockcarver/frodo-cli#70: Added ability to create custom logging noise filters
|
|
1010
|
+
- \#76, #77, #78, #79: `frodo theme import` command now supports `--debug` and `--verbose` flags. Other commands may register the new cli options as well. Most output is expected to come from the library layer but cli commands may also issue `verbose` and `debug` message.
|
|
969
1011
|
|
|
970
1012
|
### Fixed
|
|
971
1013
|
|
|
972
|
-
-
|
|
1014
|
+
- # rockcarver/frodo-lib#116: Frodo now properly imports themes.
|
|
973
1015
|
|
|
974
1016
|
### Added
|
|
975
1017
|
|
|
976
|
-
-
|
|
977
|
-
|
|
1018
|
+
- \#82: Added version update checking
|
|
1019
|
+
> > > > > > > Stashed changes
|
|
978
1020
|
|
|
979
1021
|
## [0.15.1] - 2022-10-05
|
|
980
1022
|
|
|
981
1023
|
### Fixed
|
|
982
1024
|
|
|
983
|
-
-
|
|
1025
|
+
- \#73: frodo command can now be run properly again after `npm i -g @rockcarver/frodo-cli` with version 0.15.1 and newer. Npm package `@rockcarver/frodo-cli` versions `0.14.0 - 0.15.1-0` were defective and did not run after a global install.
|
|
984
1026
|
|
|
985
1027
|
## [0.15.1-0] - 2022-10-04
|
|
986
1028
|
|
|
987
1029
|
### Changed
|
|
988
1030
|
|
|
989
|
-
-
|
|
1031
|
+
- Updated frodo-lib to 0.13.1-0
|
|
990
1032
|
|
|
991
1033
|
### Added
|
|
992
1034
|
|
|
993
|
-
-
|
|
1035
|
+
- \#70: Added ability to create custom logging noise filters
|
|
994
1036
|
|
|
995
1037
|
## [0.15.0] - 2022-10-04
|
|
996
1038
|
|
|
997
1039
|
### Added
|
|
998
1040
|
|
|
999
|
-
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1041
|
+
- New `frodo journey` sub-commands:
|
|
1042
|
+
- `frodo journey enable -i 'journeyId'` to enable a journey by name/id
|
|
1043
|
+
- `frodo journey disable -i 'journeyId'` to disable a journey by name/id
|
|
1002
1044
|
|
|
1003
1045
|
## [0.14.1] - 2022-10-03
|
|
1004
1046
|
|
|
1005
1047
|
### Fixed
|
|
1006
1048
|
|
|
1007
|
-
-
|
|
1049
|
+
- \#66: Removed unnecessary files from npm package
|
|
1008
1050
|
|
|
1009
1051
|
## [0.14.0] - 2022-10-03
|
|
1010
1052
|
|
|
1011
1053
|
### Changed
|
|
1012
1054
|
|
|
1013
|
-
-
|
|
1014
|
-
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
-
|
|
1055
|
+
- Updated frodo-lib to 0.12.7
|
|
1056
|
+
- Changes to `frodo journey describe` command:
|
|
1057
|
+
- Added journey status (enabled/disabled)
|
|
1058
|
+
- Added journey/node classification:
|
|
1059
|
+
Classifications are shown for the whole journey and for each node type and node, making it easy to determine why a journey is classified a certain way.
|
|
1060
|
+
- `standard`: can run on any instance of a ForgeRock platform
|
|
1061
|
+
- `cloud`: utilize nodes, which are exclusively available in the ForgeRock Identity Cloud
|
|
1062
|
+
- `premium`: utilizes nodes, which come at a premium
|
|
1063
|
+
- `custom`: utilizes nodes not included in the ForgeRock platform release
|
|
1064
|
+
- Added journey categories/tags
|
|
1065
|
+
- Added consideration of version from export file meta data when using `-f [file]` option to describe a juorney export
|
|
1066
|
+
- Added `-o`/`--override-version` parameter. Notation: `major.minor.patch` e.g. `7.2.0`. Override detected version with any version. This is helpful in order to check if journeys in one environment would be compatible running in another environment (e.g. in preparation of migrating from on-prem to ForgeRock Identity Cloud.
|
|
1067
|
+
- \#59: Converted frodo-cli to TypeScript
|
|
1026
1068
|
|
|
1027
1069
|
## [0.13.3] - 2022-09-30
|
|
1028
1070
|
|
|
1029
1071
|
### Added
|
|
1030
1072
|
|
|
1031
|
-
-
|
|
1032
|
-
-
|
|
1073
|
+
- rockcarver/frodo-lib#104: Enhanced `frodo journey describe` command to include more details
|
|
1074
|
+
- \#60: Support the improved frodo journey describe command with frodo-cli
|
|
1033
1075
|
|
|
1034
1076
|
### Changed
|
|
1035
1077
|
|
|
1036
|
-
-
|
|
1078
|
+
- Updated frodo-lib to 0.12.6
|
|
1037
1079
|
|
|
1038
1080
|
## [0.13.2] - 2022-09-29
|
|
1039
1081
|
|
|
1040
1082
|
### Changed
|
|
1041
1083
|
|
|
1042
|
-
-
|
|
1084
|
+
- Updated frodo-lib to 0.12.5
|
|
1043
1085
|
|
|
1044
1086
|
### Fixed
|
|
1045
1087
|
|
|
1046
|
-
-
|
|
1047
|
-
-
|
|
1048
|
-
-
|
|
1049
|
-
-
|
|
1088
|
+
- rockcarver/frodo-lib#98: Frodo now properly runs `frodo idm export -A -D ./idm <host>` command
|
|
1089
|
+
- rockcarver/frodo-lib#100: Frodo now properly handles nested realms when specified as `/parent/child`
|
|
1090
|
+
- rockcarver/frodo-lib#101: Frodo now properly sets the identity resource when the realm was specified with a leading slash
|
|
1091
|
+
- rockcarver/frodo-lib#102: Frodo now properly replaces existing themes on import when the realm was specified with a leading slash
|
|
1050
1092
|
|
|
1051
1093
|
## [0.13.1] - 2022-09-23
|
|
1052
1094
|
|
|
1053
1095
|
### Changed
|
|
1054
1096
|
|
|
1055
|
-
-
|
|
1056
|
-
-
|
|
1097
|
+
- Updated frodo-lib to 0.12.4
|
|
1098
|
+
- Updated binary installation instructions in README.md
|
|
1057
1099
|
|
|
1058
1100
|
### Fixed
|
|
1059
1101
|
|
|
1060
|
-
-
|
|
1102
|
+
- \#49: Frodo now properly reports missing mandatory parameters when running `frodo esv variable describe <host>` and `frodo esv secret describe <host>`
|
|
1061
1103
|
|
|
1062
1104
|
## [0.13.0] - 2022-09-17
|
|
1063
1105
|
|
|
1064
1106
|
### Added
|
|
1065
1107
|
|
|
1066
|
-
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1108
|
+
- Frodo now allows two new parameters when adding a connection profile:
|
|
1109
|
+
|
|
1110
|
+
\--authentication-service [service] Name of the authentication service/tree to use.
|
|
1111
|
+
|
|
1112
|
+
\--authentication-header-overrides [headers] Map of headers: {"host":"am.example.com:8081"}.
|
|
1113
|
+
|
|
1114
|
+
These parameters are currently only supported in the `frodo conn add` command and the configuration elements will be automatically applied to commands issued using that connection profile.
|
|
1115
|
+
|
|
1116
|
+
% frodo conn add https://platform.example.com:9443/am username password --authentication-service ldapService --authentication-header-overrides '{"host":"am.example.com:8081"}' -k
|
|
1117
|
+
ForgeOps deployment detected.
|
|
1118
|
+
Connected to ForgeRock Access Management 7.2.0 Build 64ef7ebc01ed3df1a1264d7b0400351bc101361f (2022-June-27 08:15)
|
|
1119
|
+
Saving creds in /Users/vscheuber/.frodo/.frodorc...
|
|
1120
|
+
Updating connection profile https://platform.example.com:9443/am
|
|
1121
|
+
Advanced setting: Authentication Service: ldapService
|
|
1122
|
+
Advanced setting: Authentication Header Overrides:
|
|
1123
|
+
{ host: 'am.example.com:8081' }
|
|
1124
|
+
%
|
|
1125
|
+
|
|
1126
|
+
After the connection profile is created with the additional parameters, the environment can be accessed as usual. In this case it requires the `-k` parameter for every command, as the environment uses a self-signed certificate.
|
|
1127
|
+
|
|
1128
|
+
% frodo journey list platform alpha -k
|
|
1129
|
+
ForgeOps deployment detected.
|
|
1130
|
+
Connected to ForgeRock Access Management 7.2.0 Build 64ef7ebc01ed3df1a1264d7b0400351bc101361f (2022-June-27 08:15)
|
|
1131
|
+
Listing journeys in realm "alpha"...
|
|
1132
|
+
Agent
|
|
1133
|
+
Example
|
|
1134
|
+
Facebook-ProvisionIDMAccount
|
|
1135
|
+
Google-AnonymousUser
|
|
1136
|
+
Google-DynamicAccountCreation
|
|
1137
|
+
HmacOneTimePassword
|
|
1138
|
+
PersistentCookie
|
|
1139
|
+
PlatformForgottenUsername
|
|
1140
|
+
PlatformLogin
|
|
1141
|
+
PlatformProgressiveProfile
|
|
1142
|
+
PlatformRegistration
|
|
1143
|
+
PlatformResetPassword
|
|
1144
|
+
PlatformUpdatePassword
|
|
1145
|
+
RetryLimit
|
|
1146
|
+
%
|
|
1105
1147
|
|
|
1106
1148
|
### Fixed
|
|
1107
1149
|
|
|
1108
|
-
-
|
|
1150
|
+
- rockcarver/frodo-lib#94: Frodo can now connect to improperly configured platform instances
|
|
1109
1151
|
|
|
1110
1152
|
## [0.12.5] - 2022-09-16
|
|
1111
1153
|
|
|
1112
1154
|
### Fixed
|
|
1113
1155
|
|
|
1114
|
-
-
|
|
1156
|
+
- \#92: `frodo email template list <host>` now runs properly
|
|
1115
1157
|
|
|
1116
1158
|
## [0.12.4] - 2022-09-15
|
|
1117
1159
|
|
|
1118
1160
|
### Changed
|
|
1119
1161
|
|
|
1120
|
-
-
|
|
1162
|
+
- Updated frodo-lib to v0.12.2
|
|
1121
1163
|
|
|
1122
1164
|
### Fixed
|
|
1123
1165
|
|
|
1124
|
-
-
|
|
1125
|
-
-
|
|
1126
|
-
-
|
|
1127
|
-
-
|
|
1128
|
-
-
|
|
1129
|
-
-
|
|
1130
|
-
-
|
|
1131
|
-
-
|
|
1166
|
+
- \#33: Describing all journeys in a realm (`frodo journey describe <host>`) now runs properly
|
|
1167
|
+
- \#69: AM version is now included in export meta data. This will help identify if an export is suitable for import into a target environment based on both origin and target versions.
|
|
1168
|
+
- \#71: Importing applications into Catalyst demo environments now works properly
|
|
1169
|
+
- \#78: `frodo journey list -l <host>` now runs properly
|
|
1170
|
+
- \#80: `frodo idp export -A <host>` now runs properly
|
|
1171
|
+
- \#83: `frodo saml export -A <host>` now runs properly
|
|
1172
|
+
- \#85: `frodo journey export -A <host>` now runs properly
|
|
1173
|
+
- \#90: Exporting journeys from bravo realm of a cloud tenant now works properly
|
|
1132
1174
|
|
|
1133
1175
|
## [0.12.4-6] - 2022-09-15
|
|
1134
1176
|
|
|
@@ -1148,18 +1190,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1148
1190
|
|
|
1149
1191
|
### Fixed
|
|
1150
1192
|
|
|
1151
|
-
-
|
|
1152
|
-
-
|
|
1193
|
+
- \#24 - `frodo conn list` now showing the expected output
|
|
1194
|
+
- \#25 - `npm run build` now running properly
|
|
1153
1195
|
|
|
1154
1196
|
## [0.12.2] - 2022-08-27
|
|
1155
1197
|
|
|
1156
1198
|
### Changed
|
|
1157
1199
|
|
|
1158
|
-
-
|
|
1200
|
+
- \#3: `frodo-cli` now uses the new callback based progress indicator and message display framework in `frodo-lib 0.12.0`
|
|
1159
1201
|
|
|
1160
1202
|
### Fixed
|
|
1161
1203
|
|
|
1162
|
-
-
|
|
1204
|
+
- \#16: 2nd-level commands in binary builds are working properly again (they were broken in all 0.11.x and 0.12.x builds)
|
|
1163
1205
|
|
|
1164
1206
|
## [0.12.1] - 2022-08-27 [YANKED]
|
|
1165
1207
|
|
|
@@ -1169,26 +1211,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1169
1211
|
|
|
1170
1212
|
### Fixed
|
|
1171
1213
|
|
|
1172
|
-
-
|
|
1214
|
+
- rockcarver/frodo#389: Exporting of empty scripts now works properly
|
|
1173
1215
|
|
|
1174
1216
|
## [0.11.1-1] - 2022-08-21
|
|
1175
1217
|
|
|
1176
1218
|
### Added
|
|
1177
1219
|
|
|
1178
|
-
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1220
|
+
- Frodo CLI is now effectively using Frodo Library for all functionality except CLI.
|
|
1221
|
+
- This changes has no effect on users using frodo binaries except for the download location of those binaries, which has now shifted to the [frodo-cli](https://github.com/rockcarver/frodo-cli) repo [release section](https://github.com/rockcarver/frodo-cli/releases).
|
|
1222
|
+
- This change does affect users who run Frodo in `Developer Mode`. The exact effects and required actions are not yet fully documented and understood.
|
|
1223
|
+
- This change does not effect the installation/update/usage process of users running the Frodo CLI NPM package. However, under the surface there is a big change in that the [Frodo CLI (@rockcarver/frodo-cli)](https://www.npmjs.com/package/@rockcarver/frodo-cli) package is now built on the new [Frodo Library (@rockcarver/frodo-lib)](https://www.npmjs.com/package/@rockcarver/frodo-lib).
|
|
1182
1224
|
|
|
1183
1225
|
### Changed
|
|
1184
1226
|
|
|
1185
|
-
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1227
|
+
- The output of `frodo -v` has changed to include all three versions: cli, lib, and node:
|
|
1228
|
+
```console
|
|
1229
|
+
% frodo -v
|
|
1230
|
+
cli: v0.11.1-1
|
|
1231
|
+
lib: v0.11.1-6
|
|
1232
|
+
node: v18.7.0
|
|
1233
|
+
```
|
|
1192
1234
|
|
|
1193
1235
|
## [0.11.1-0] - 2022-08-19 [YANKED]
|
|
1194
1236
|
|
|
@@ -1196,13 +1238,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1196
1238
|
|
|
1197
1239
|
### Added
|
|
1198
1240
|
|
|
1199
|
-
-
|
|
1200
|
-
-
|
|
1201
|
-
-
|
|
1241
|
+
- \#376: Frodo is now being published as an npm package: @rockcarver/frodo-cli.
|
|
1242
|
+
- \#317: Binary archive names now include the release version.
|
|
1243
|
+
- \#369: Added backwards compatibilty with node 16 and 14. Binaries are still built using the latest node version (18). Smoke tests run against all supported versions (18, 16, 14).
|
|
1202
1244
|
|
|
1203
1245
|
### Fixed
|
|
1204
1246
|
|
|
1205
|
-
-
|
|
1247
|
+
- \#368: Progress bar no longer overrides verbose output on journey import.
|
|
1206
1248
|
|
|
1207
1249
|
## [0.10.3] - 2022-08-13 [YANKED]
|
|
1208
1250
|
|
|
@@ -1232,89 +1274,89 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1232
1274
|
|
|
1233
1275
|
### Added
|
|
1234
1276
|
|
|
1235
|
-
-
|
|
1236
|
-
-
|
|
1237
|
-
-
|
|
1277
|
+
- \#205: Added `--no-deps` option to `journey export`/`import` commands. This allows users to omit all external dependencies from a journey export and/or import. One use case where this comes in handy is when using frodo as a CI/CD tool to extract and deploy individual configuration artifacts and it is desirable to not mingle multiple types of configuration in a single file but keep each type of configuration in its own file for version and change control.
|
|
1278
|
+
- Added `--verbose` option to `journey export` command.
|
|
1279
|
+
- \#341: Added initial smoke tests to validate basic functionality.
|
|
1238
1280
|
|
|
1239
1281
|
### Changed
|
|
1240
1282
|
|
|
1241
|
-
-
|
|
1242
|
-
-
|
|
1243
|
-
-
|
|
1244
|
-
-
|
|
1283
|
+
- \#363: Frodo now performs dependency resolution and reports unresolved dependencies on single journey imports.
|
|
1284
|
+
- \#364: Frodo now uses a spinner and no longer a progress bar to indicate progress on single journey imports.
|
|
1285
|
+
- Internal restructuring (#158, #159, #164, #165)
|
|
1286
|
+
- Updated PIPELINE.md with latest pipeline changes
|
|
1245
1287
|
|
|
1246
1288
|
### Fixed
|
|
1247
1289
|
|
|
1248
|
-
-
|
|
1249
|
-
-
|
|
1250
|
-
-
|
|
1251
|
-
-
|
|
1252
|
-
-
|
|
1253
|
-
-
|
|
1254
|
-
-
|
|
1290
|
+
- \#359: Frodo now properly exports themes from forgeops deployments.
|
|
1291
|
+
- \#362: Frodo now properly imports journeys with email templates.
|
|
1292
|
+
- \#357: Frodo no longer throws an error and exits occasionally when running the `frodo log tail` command.
|
|
1293
|
+
- \#355: Frodo now properly imports social IDPs into 7.1 environments when using the `frodo journey import` command.
|
|
1294
|
+
- \#353: Frodo now properly imports social IDPs when using the `frodo journey import` command.
|
|
1295
|
+
- \#351: Frodo now properly shows IDM messages using the `frodo logs tail` command.
|
|
1296
|
+
- \#349: Frodo now properly exports journeys from classic deployments
|
|
1255
1297
|
|
|
1256
1298
|
## [0.9.2-12] - 2022-08-09
|
|
1257
1299
|
|
|
1258
1300
|
### Fixed
|
|
1259
1301
|
|
|
1260
|
-
-
|
|
1302
|
+
- \#359: Frodo now properly exports themes from forgeops deployments.
|
|
1261
1303
|
|
|
1262
1304
|
## [0.9.2-11] - 2022-08-09
|
|
1263
1305
|
|
|
1264
1306
|
### Changed
|
|
1265
1307
|
|
|
1266
|
-
-
|
|
1267
|
-
-
|
|
1308
|
+
- \#363: Frodo now performs dependency resolution and reports unresolved dependencies on single journey imports.
|
|
1309
|
+
- \#364: Frodo now uses a spinner and no longer a progress bar to indicate progress on single journey imports.
|
|
1268
1310
|
|
|
1269
1311
|
### Fixed
|
|
1270
1312
|
|
|
1271
|
-
-
|
|
1313
|
+
- \#362: Frodo now properly imports journeys with email templates.
|
|
1272
1314
|
|
|
1273
1315
|
## [0.9.2-10] - 2022-08-05
|
|
1274
1316
|
|
|
1275
1317
|
### Fixed
|
|
1276
1318
|
|
|
1277
|
-
-
|
|
1319
|
+
- \#357: Frodo no longer throws an error and exits occasionally when running the `frodo log tail` command.
|
|
1278
1320
|
|
|
1279
1321
|
## [0.9.2-9] - 2022-07-30
|
|
1280
1322
|
|
|
1281
1323
|
### Fixed
|
|
1282
1324
|
|
|
1283
|
-
-
|
|
1325
|
+
- \#355: Frodo now properly imports social IDPs into 7.1 environments when using the `frodo journey import` command.
|
|
1284
1326
|
|
|
1285
1327
|
## [0.9.2-8] - 2022-07-28
|
|
1286
1328
|
|
|
1287
1329
|
### Fixed
|
|
1288
1330
|
|
|
1289
|
-
-
|
|
1331
|
+
- \#353: Frodo now properly imports social IDPs when using the `frodo journey import` command.
|
|
1290
1332
|
|
|
1291
1333
|
## [0.9.2-7] - 2022-07-28
|
|
1292
1334
|
|
|
1293
1335
|
### Fixed
|
|
1294
1336
|
|
|
1295
|
-
-
|
|
1337
|
+
- \#351: Frodo now properly shows IDM messages using the `frodo logs tail` command.
|
|
1296
1338
|
|
|
1297
1339
|
## [0.9.2-6] - 2022-07-27
|
|
1298
1340
|
|
|
1299
1341
|
### Fixed
|
|
1300
1342
|
|
|
1301
|
-
-
|
|
1343
|
+
- \#349: Frodo now properly exports journeys from classic deployments
|
|
1302
1344
|
|
|
1303
1345
|
## [0.9.2-5] - 2022-07-23
|
|
1304
1346
|
|
|
1305
1347
|
### Changed
|
|
1306
1348
|
|
|
1307
|
-
-
|
|
1349
|
+
- Internal restructuring (#158, #159, #164, #165)
|
|
1308
1350
|
|
|
1309
1351
|
## [0.9.2-4] - 2022-07-22
|
|
1310
1352
|
|
|
1311
1353
|
### Added
|
|
1312
1354
|
|
|
1313
|
-
-
|
|
1355
|
+
- \#341: Added initial smoke tests to validate basic functionality
|
|
1314
1356
|
|
|
1315
1357
|
### Changed
|
|
1316
1358
|
|
|
1317
|
-
-
|
|
1359
|
+
- Updated PIPELINE.md with latest pipeline changes
|
|
1318
1360
|
|
|
1319
1361
|
## [0.9.2-3] - 2022-07-22 [YANKED]
|
|
1320
1362
|
|
|
@@ -1328,27 +1370,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1328
1370
|
|
|
1329
1371
|
### Added
|
|
1330
1372
|
|
|
1331
|
-
-
|
|
1332
|
-
|
|
1373
|
+
- \#311: Added explicit support for network proxies (`HTTPS_PROXY=<protocol>://<host>:<port>`)
|
|
1374
|
+
Frodo now supports using system enviroment variable `HTTPS_PROXY` (and `HTTP_PROXY`) to connect through a network proxy.
|
|
1333
1375
|
|
|
1334
1376
|
### Changed
|
|
1335
1377
|
|
|
1336
|
-
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
-
|
|
1378
|
+
- Changes to `frodo realm describe` command:
|
|
1379
|
+
- The realm argument now exclusively determines the realm
|
|
1380
|
+
- Removed `-n`/`--name` parameter
|
|
1381
|
+
- Internal restructuring (#167)
|
|
1340
1382
|
|
|
1341
1383
|
### Fixed
|
|
1342
1384
|
|
|
1343
|
-
-
|
|
1344
|
-
-
|
|
1345
|
-
-
|
|
1385
|
+
- \#329: Fixed help info for `esv apply` command
|
|
1386
|
+
- \#335: Fixed error when running `idm list` command
|
|
1387
|
+
- \#338: Frodo now successfully authenticates with or without using a proxy
|
|
1346
1388
|
|
|
1347
1389
|
## [0.9.1-1] - 2022-07-21
|
|
1348
1390
|
|
|
1349
1391
|
### Fixed
|
|
1350
1392
|
|
|
1351
|
-
-
|
|
1393
|
+
- \#338: Frodo now successfully authenticates with or without using a proxy
|
|
1352
1394
|
|
|
1353
1395
|
## [0.9.1-0] - 2022-07-21 [YANKED]
|
|
1354
1396
|
|
|
@@ -1358,27 +1400,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1358
1400
|
|
|
1359
1401
|
### Changed
|
|
1360
1402
|
|
|
1361
|
-
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
-
|
|
1403
|
+
- Changed `idm` sub-commands to align with other commands:
|
|
1404
|
+
- The sub-commands `export`, `exportAll`, and `exportAllRaw` have been collapsed into one: `export`
|
|
1405
|
+
- `idm export -A` (`--all-separate`) is now the way to export all idm configuration.
|
|
1406
|
+
- Options `-e` and `-E` select old `exportAll` functionality with variable replacement and filtering
|
|
1407
|
+
- Omitting options `-e` and `-E`, selects the old `exportAllRaw` functionality without variable replacement and without filtering
|
|
1408
|
+
- Renamed sample resource files for `idm export` command:
|
|
1409
|
+
- `<frodo home>/resources/sampleEntitiesFile.json`
|
|
1410
|
+
- `<frodo home>/resources/sampleEnvFile.env`
|
|
1411
|
+
- The `-N`/`--name` option of the count command has been renamed to `-m`/`--managed-object`
|
|
1412
|
+
- Internal restructuring (#137)
|
|
1371
1413
|
|
|
1372
1414
|
### Fixed
|
|
1373
1415
|
|
|
1374
|
-
-
|
|
1375
|
-
-
|
|
1416
|
+
- \#325: Frodo now gracefully reports and skips node types causing errors during pruning
|
|
1417
|
+
- \#331: Frodo now correctly counts managed objects when using the `idm count` command
|
|
1376
1418
|
|
|
1377
1419
|
## [0.8.2-1] - 2022-07-16
|
|
1378
1420
|
|
|
1379
1421
|
### Fixed
|
|
1380
1422
|
|
|
1381
|
-
-
|
|
1423
|
+
- \#325: Frodo now gracefully reports and skips node types causing errors during pruning
|
|
1382
1424
|
|
|
1383
1425
|
## [0.8.2-0] - 2022-07-16 [YANKED]
|
|
1384
1426
|
|
|
@@ -1386,16 +1428,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1386
1428
|
|
|
1387
1429
|
### Added
|
|
1388
1430
|
|
|
1389
|
-
-
|
|
1431
|
+
- New `-l`/`--long` option to script list command
|
|
1390
1432
|
|
|
1391
1433
|
### Changed
|
|
1392
1434
|
|
|
1393
|
-
-
|
|
1394
|
-
-
|
|
1435
|
+
- Changed default behavior of `frodo conn add` to validate connection details by default and renamed parameter from `--validate` to `--no-validate` to allow disabling validation
|
|
1436
|
+
- Internal restructuring (#169)
|
|
1395
1437
|
|
|
1396
1438
|
### Fixed
|
|
1397
1439
|
|
|
1398
|
-
-
|
|
1440
|
+
- \#324: Frodo now includes themes assigned at journey level in journey exports
|
|
1399
1441
|
|
|
1400
1442
|
## [0.8.1-0] - 2022-07-14 [YANKED]
|
|
1401
1443
|
|
|
@@ -1403,19 +1445,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1403
1445
|
|
|
1404
1446
|
### Added
|
|
1405
1447
|
|
|
1406
|
-
-
|
|
1448
|
+
- \#320: Frodo now identifies itself through the User-Agent header `<name>/<version>` (e.g. `frodo/0.7.1-1`)
|
|
1407
1449
|
|
|
1408
1450
|
### Changed
|
|
1409
1451
|
|
|
1410
|
-
-
|
|
1411
|
-
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
-
|
|
1452
|
+
- Renamed `realm details` to `realm describe` but registered `realm details` as an alias for backwards compatibility
|
|
1453
|
+
- Changes to application command
|
|
1454
|
+
- Renamed command to `app` but registered `application` as an alias for backwards compatibility
|
|
1455
|
+
- Renamed option `-i`/`--id` to `-i`/`--app-id`. Short version is not impacted by rename.
|
|
1456
|
+
- Internal restructuring (#133, #134, #141 #142, #146)
|
|
1415
1457
|
|
|
1416
1458
|
### Fixed
|
|
1417
1459
|
|
|
1418
|
-
-
|
|
1460
|
+
- \#319: frodo admin create-oauth2-client-with-admin-privileges --llt properly handles name collisions
|
|
1419
1461
|
|
|
1420
1462
|
## [0.7.1-1] - 2022-07-11
|
|
1421
1463
|
|
|
@@ -1425,27 +1467,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1425
1467
|
|
|
1426
1468
|
### Added
|
|
1427
1469
|
|
|
1428
|
-
-
|
|
1429
|
-
-
|
|
1430
|
-
|
|
1431
|
-
-
|
|
1470
|
+
- CHANGELOG.md
|
|
1471
|
+
- `conn describe` command to describe connection profiles
|
|
1472
|
+
- `--show-secrets` option to `conn describe` command to show clear-text secrets
|
|
1473
|
+
- `--validate` option to `conn add` command to validate credentials before adding
|
|
1432
1474
|
|
|
1433
1475
|
### Changed
|
|
1434
1476
|
|
|
1435
|
-
-
|
|
1436
|
-
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
-
|
|
1443
|
-
-
|
|
1477
|
+
- Adapted true semantic versioning
|
|
1478
|
+
- Pipeline changes
|
|
1479
|
+
- Automated updating changelog using keep a changelog format in CHANGELOG.md
|
|
1480
|
+
- Automated version bump (SemVer format) using PR comments to trigger prerelease, patch, minor, or major bumps
|
|
1481
|
+
- Automated release notes extraction from CHANGELOG.md
|
|
1482
|
+
- Automated GitHub release creation
|
|
1483
|
+
- Renamed frodo.yml to pipeline.yml
|
|
1484
|
+
- Renamed connections command to `conn` with aliases `connection` and `connections` for backwards compatibility
|
|
1485
|
+
- Internal restructuring (#160, #135)
|
|
1444
1486
|
|
|
1445
1487
|
### Fixed
|
|
1446
1488
|
|
|
1447
|
-
-
|
|
1448
|
-
-
|
|
1489
|
+
- \#280: Fixed missing -k/--insecure param in application sub-commands #280
|
|
1490
|
+
- \#310: No longer storing connection profiles unless explicitly instructed to
|
|
1449
1491
|
|
|
1450
1492
|
## [0.6.4-4] - 2022-07-10 [YANKED]
|
|
1451
1493
|
|
|
@@ -1467,7 +1509,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1467
1509
|
|
|
1468
1510
|
### Changed
|
|
1469
1511
|
|
|
1470
|
-
-
|
|
1512
|
+
- Changed archive step of Windows binary build to use 7zip
|
|
1471
1513
|
|
|
1472
1514
|
## 0.6.1 alpha 22 - 0.6.1 alpha 25 [YANKED]
|
|
1473
1515
|
|
|
@@ -1475,85 +1517,85 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1475
1517
|
|
|
1476
1518
|
### Added
|
|
1477
1519
|
|
|
1478
|
-
-
|
|
1479
|
-
-
|
|
1480
|
-
-
|
|
1481
|
-
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
-
|
|
1520
|
+
- Added theme delete command
|
|
1521
|
+
- Theme list e2e tests
|
|
1522
|
+
- Theme delete e2e tests
|
|
1523
|
+
- Added esv command
|
|
1524
|
+
- esv secret - Manage secrets.
|
|
1525
|
+
- esv variable - Manage variables.
|
|
1526
|
+
- esv apply - Apply pending changes.
|
|
1527
|
+
- Updated all dependencies to the latest versions
|
|
1486
1528
|
|
|
1487
1529
|
### Changed
|
|
1488
1530
|
|
|
1489
|
-
-
|
|
1531
|
+
- Moved secret command under new esv command
|
|
1490
1532
|
|
|
1491
1533
|
## 0.6.1 alpha 20 - 2022-06-23
|
|
1492
1534
|
|
|
1493
1535
|
### Added
|
|
1494
1536
|
|
|
1495
|
-
-
|
|
1496
|
-
-
|
|
1497
|
-
-
|
|
1537
|
+
- Added journey delete command
|
|
1538
|
+
- journey list e2e tests
|
|
1539
|
+
- journey delete e2e tests
|
|
1498
1540
|
|
|
1499
1541
|
### Changed
|
|
1500
1542
|
|
|
1501
|
-
-
|
|
1543
|
+
- Allow progressbar output to be captured in redirects
|
|
1502
1544
|
|
|
1503
1545
|
### Fixed
|
|
1504
1546
|
|
|
1505
|
-
-
|
|
1506
|
-
-
|
|
1507
|
-
-
|
|
1508
|
-
-
|
|
1547
|
+
- Journey import fixes
|
|
1548
|
+
- Journey export bug fix
|
|
1549
|
+
- Fix theme import issues when using /alpha or /bravo instead of alpha or bravo
|
|
1550
|
+
- Fix admin create-oauth2-client-with-admin-privileges command
|
|
1509
1551
|
|
|
1510
1552
|
## 0.6.1 alpha 19 - 2022-06-14
|
|
1511
1553
|
|
|
1512
1554
|
### Added
|
|
1513
1555
|
|
|
1514
|
-
-
|
|
1515
|
-
-
|
|
1556
|
+
- First stab at e2e testing of journey command
|
|
1557
|
+
- saml command enhancements
|
|
1516
1558
|
|
|
1517
1559
|
### Fixed
|
|
1518
1560
|
|
|
1519
|
-
-
|
|
1520
|
-
-
|
|
1521
|
-
-
|
|
1561
|
+
- Detect and remove invalid tree attributes on import
|
|
1562
|
+
- Fixed issue where overriding deployment type would fail to detect the default realm
|
|
1563
|
+
- Fix theme import -A
|
|
1522
1564
|
|
|
1523
1565
|
## 0.6.1 alpha 18 - 2022-06-10
|
|
1524
1566
|
|
|
1525
1567
|
### Added
|
|
1526
1568
|
|
|
1527
|
-
-
|
|
1569
|
+
- \--txid parameter with the logs commands to filter log output by transactionId
|
|
1528
1570
|
|
|
1529
1571
|
### Fixed
|
|
1530
1572
|
|
|
1531
|
-
-
|
|
1573
|
+
- Bug in idm exportAllRaw
|
|
1532
1574
|
|
|
1533
1575
|
## 0.6.1 alpha 17 - 2022-06-08
|
|
1534
1576
|
|
|
1535
1577
|
### Added
|
|
1536
1578
|
|
|
1537
|
-
-
|
|
1579
|
+
- New saml command to manage entity providers and circles of trust
|
|
1538
1580
|
|
|
1539
1581
|
### Changed
|
|
1540
1582
|
|
|
1541
|
-
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
-
|
|
1555
|
-
-
|
|
1556
|
-
-
|
|
1583
|
+
- Updates to journey export/import commands
|
|
1584
|
+
- Support for social identity providers
|
|
1585
|
+
- Support for themes
|
|
1586
|
+
- Support for SAML entity providers
|
|
1587
|
+
- Support for SAML circles of trust
|
|
1588
|
+
- Breaking changes in journey sub-commands
|
|
1589
|
+
- export
|
|
1590
|
+
- \-t/--tree renamed to -i/--journey-id
|
|
1591
|
+
- import
|
|
1592
|
+
- \-t/--tree renamed to -i/--journey-id
|
|
1593
|
+
- \-i/--journey-id is now only used to select the journey to import if there are multiple journeys in the import file
|
|
1594
|
+
- \-n (No re-UUID) removed
|
|
1595
|
+
- new flag --re-uuid with inversed behavior of removed -n flag. Frodo by default no longer generates new UUIDs for nodes on import
|
|
1596
|
+
- Scalability enhancements to journey prune command. The changes allow the prune command to scale to many thousands of orphaned node configuration objects in an AM instance
|
|
1597
|
+
- Updated readme
|
|
1598
|
+
- Miscellaneous bug fixes
|
|
1557
1599
|
|
|
1558
1600
|
## 0.6.1 alpha 14 - 0.6.1 alpha 16 [YANKED]
|
|
1559
1601
|
|
|
@@ -1561,450 +1603,242 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1561
1603
|
|
|
1562
1604
|
### Added
|
|
1563
1605
|
|
|
1564
|
-
-
|
|
1565
|
-
-
|
|
1566
|
-
-
|
|
1567
|
-
-
|
|
1568
|
-
-
|
|
1569
|
-
-
|
|
1570
|
-
-
|
|
1571
|
-
-
|
|
1572
|
-
-
|
|
1573
|
-
-
|
|
1574
|
-
-
|
|
1575
|
-
-
|
|
1606
|
+
- New script command to export and import scripts
|
|
1607
|
+
- New email_templates command to manage email templates
|
|
1608
|
+
- New application command to export and import oauth2 clients
|
|
1609
|
+
- New realm command to manage realms
|
|
1610
|
+
- New secret command to manage Identity Cloud secrets
|
|
1611
|
+
- New theme command to manage hosted pages UI themes
|
|
1612
|
+
- New admin command to perform advanced administrative tasks
|
|
1613
|
+
- Encrypt the password value in the connection profile
|
|
1614
|
+
- Added progress bars/spinners for long running operations
|
|
1615
|
+
- Added version option -v, --version
|
|
1616
|
+
- Auto provisioning of log API keys
|
|
1617
|
+
- Added initial unit testing
|
|
1576
1618
|
|
|
1577
1619
|
### Changed
|
|
1578
1620
|
|
|
1579
|
-
-
|
|
1580
|
-
-
|
|
1581
|
-
-
|
|
1582
|
-
-
|
|
1583
|
-
-
|
|
1621
|
+
- Improved performance of journey command (multi-threading)
|
|
1622
|
+
- Consolidated settings under one folder (~/.frodo)
|
|
1623
|
+
- Proposed new code formatting (prettier) and style (eslint) rules
|
|
1624
|
+
- Updated readme
|
|
1625
|
+
- Update to node 18
|
|
1584
1626
|
|
|
1585
1627
|
### Fixed
|
|
1586
1628
|
|
|
1587
|
-
-
|
|
1588
|
-
-
|
|
1589
|
-
|
|
1590
|
-
[Unreleased]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-63...HEAD
|
|
1629
|
+
- Fixed problem with adding connection profiles
|
|
1630
|
+
- Miscellaneous bug fixes
|
|
1591
1631
|
|
|
1632
|
+
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-65...HEAD
|
|
1633
|
+
[2.0.0-65]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-64...v2.0.0-65
|
|
1634
|
+
[2.0.0-64]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-63...v2.0.0-64
|
|
1592
1635
|
[2.0.0-63]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-62...v2.0.0-63
|
|
1593
|
-
|
|
1594
1636
|
[2.0.0-62]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-61...v2.0.0-62
|
|
1595
|
-
|
|
1596
1637
|
[2.0.0-61]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-60...v2.0.0-61
|
|
1597
|
-
|
|
1598
1638
|
[2.0.0-60]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-59...v2.0.0-60
|
|
1599
|
-
|
|
1600
1639
|
[2.0.0-59]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-58...v2.0.0-59
|
|
1601
|
-
|
|
1602
1640
|
[2.0.0-58]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-57...v2.0.0-58
|
|
1603
|
-
|
|
1604
1641
|
[2.0.0-57]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-56...v2.0.0-57
|
|
1605
|
-
|
|
1606
1642
|
[2.0.0-56]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-55...v2.0.0-56
|
|
1607
|
-
|
|
1608
1643
|
[2.0.0-55]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-54...v2.0.0-55
|
|
1609
|
-
|
|
1610
1644
|
[2.0.0-54]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-53...v2.0.0-54
|
|
1611
|
-
|
|
1612
1645
|
[2.0.0-53]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-52...v2.0.0-53
|
|
1613
|
-
|
|
1614
1646
|
[2.0.0-52]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-51...v2.0.0-52
|
|
1615
|
-
|
|
1616
1647
|
[2.0.0-51]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-50...v2.0.0-51
|
|
1617
|
-
|
|
1618
1648
|
[2.0.0-50]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-49...v2.0.0-50
|
|
1619
|
-
|
|
1620
1649
|
[2.0.0-49]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-48...v2.0.0-49
|
|
1621
|
-
|
|
1622
1650
|
[2.0.0-48]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-47...v2.0.0-48
|
|
1623
|
-
|
|
1624
1651
|
[2.0.0-47]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-46...v2.0.0-47
|
|
1625
|
-
|
|
1626
1652
|
[2.0.0-46]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-45...v2.0.0-46
|
|
1627
|
-
|
|
1628
1653
|
[2.0.0-45]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-44...v2.0.0-45
|
|
1629
|
-
|
|
1630
1654
|
[2.0.0-44]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-43...v2.0.0-44
|
|
1631
|
-
|
|
1632
1655
|
[2.0.0-43]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-42...v2.0.0-43
|
|
1633
|
-
|
|
1634
1656
|
[2.0.0-42]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-41...v2.0.0-42
|
|
1635
|
-
|
|
1636
1657
|
[2.0.0-41]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-40...v2.0.0-41
|
|
1637
|
-
|
|
1638
1658
|
[2.0.0-40]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-39...v2.0.0-40
|
|
1639
|
-
|
|
1640
1659
|
[2.0.0-39]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-38...v2.0.0-39
|
|
1641
|
-
|
|
1642
1660
|
[2.0.0-38]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-37...v2.0.0-38
|
|
1643
|
-
|
|
1644
1661
|
[2.0.0-37]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-36...v2.0.0-37
|
|
1645
|
-
|
|
1646
1662
|
[2.0.0-36]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-35...v2.0.0-36
|
|
1647
|
-
|
|
1648
1663
|
[2.0.0-35]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-34...v2.0.0-35
|
|
1649
|
-
|
|
1650
1664
|
[2.0.0-34]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-33...v2.0.0-34
|
|
1651
|
-
|
|
1652
1665
|
[2.0.0-33]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-32...v2.0.0-33
|
|
1653
|
-
|
|
1654
1666
|
[2.0.0-32]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-31...v2.0.0-32
|
|
1655
|
-
|
|
1656
1667
|
[2.0.0-31]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-30...v2.0.0-31
|
|
1657
|
-
|
|
1658
1668
|
[2.0.0-30]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-29...v2.0.0-30
|
|
1659
|
-
|
|
1660
1669
|
[2.0.0-29]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-28...v2.0.0-29
|
|
1661
|
-
|
|
1662
1670
|
[2.0.0-28]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-27...v2.0.0-28
|
|
1663
|
-
|
|
1664
1671
|
[2.0.0-27]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-26...v2.0.0-27
|
|
1665
|
-
|
|
1666
1672
|
[2.0.0-26]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-25...v2.0.0-26
|
|
1667
|
-
|
|
1668
1673
|
[2.0.0-25]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-24...v2.0.0-25
|
|
1669
|
-
|
|
1670
1674
|
[2.0.0-24]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-23...v2.0.0-24
|
|
1671
|
-
|
|
1672
1675
|
[2.0.0-23]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-22...v2.0.0-23
|
|
1673
|
-
|
|
1674
1676
|
[2.0.0-22]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-21...v2.0.0-22
|
|
1675
|
-
|
|
1676
1677
|
[2.0.0-21]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-20...v2.0.0-21
|
|
1677
|
-
|
|
1678
1678
|
[2.0.0-20]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-19...v2.0.0-20
|
|
1679
|
-
|
|
1680
1679
|
[2.0.0-19]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-18...v2.0.0-19
|
|
1681
|
-
|
|
1682
1680
|
[2.0.0-18]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-17...v2.0.0-18
|
|
1683
|
-
|
|
1684
1681
|
[2.0.0-17]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-16...v2.0.0-17
|
|
1685
|
-
|
|
1686
1682
|
[2.0.0-16]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-15...v2.0.0-16
|
|
1687
|
-
|
|
1688
1683
|
[2.0.0-15]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-14...v2.0.0-15
|
|
1689
|
-
|
|
1690
1684
|
[2.0.0-14]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-13...v2.0.0-14
|
|
1691
|
-
|
|
1692
1685
|
[2.0.0-13]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-12...v2.0.0-13
|
|
1693
|
-
|
|
1694
1686
|
[2.0.0-12]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-11...v2.0.0-12
|
|
1695
|
-
|
|
1696
1687
|
[2.0.0-11]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-10...v2.0.0-11
|
|
1697
|
-
|
|
1698
1688
|
[2.0.0-10]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-9...v2.0.0-10
|
|
1699
|
-
|
|
1700
1689
|
[2.0.0-9]: https://github.com/rockcarver/frodo-cli/compare/v1.0.0...v2.0.0-9
|
|
1701
|
-
|
|
1702
1690
|
[1.0.0]: https://github.com/rockcarver/frodo-cli/compare/v1.0.0-1...v1.0.0
|
|
1703
|
-
|
|
1704
1691
|
[1.0.0-1]: https://github.com/rockcarver/frodo-cli/compare/v0.24.6-3...v1.0.0-1
|
|
1705
|
-
|
|
1706
1692
|
[0.24.6-3]: https://github.com/rockcarver/frodo-cli/compare/v0.24.6-2...v0.24.6-3
|
|
1707
|
-
|
|
1708
1693
|
[0.24.6-2]: https://github.com/rockcarver/frodo-cli/compare/v0.24.6-1...v0.24.6-2
|
|
1709
|
-
|
|
1710
1694
|
[0.24.6-1]: https://github.com/rockcarver/frodo-cli/compare/v0.24.6-0...v0.24.6-1
|
|
1711
|
-
|
|
1712
1695
|
[0.24.6-0]: https://github.com/rockcarver/frodo-cli/compare/v0.24.5...v0.24.6-0
|
|
1713
|
-
|
|
1714
1696
|
[0.24.5]: https://github.com/rockcarver/frodo-cli/compare/v0.24.4...v0.24.5
|
|
1715
|
-
|
|
1716
1697
|
[0.24.4]: https://github.com/rockcarver/frodo-cli/compare/v0.24.4-2...v0.24.4
|
|
1717
|
-
|
|
1718
1698
|
[0.24.4-2]: https://github.com/rockcarver/frodo-cli/compare/v0.24.4-1...v0.24.4-2
|
|
1719
|
-
|
|
1720
1699
|
[0.24.4-1]: https://github.com/rockcarver/frodo-cli/compare/v0.24.4-0...v0.24.4-1
|
|
1721
|
-
|
|
1722
1700
|
[0.24.4-0]: https://github.com/rockcarver/frodo-cli/compare/v0.24.3...v0.24.4-0
|
|
1723
|
-
|
|
1724
1701
|
[0.24.3]: https://github.com/rockcarver/frodo-cli/compare/v0.24.1...v0.24.3
|
|
1725
|
-
|
|
1726
1702
|
[0.24.1]: https://github.com/rockcarver/frodo-cli/compare/v0.24.1-0...v0.24.1
|
|
1727
|
-
|
|
1728
1703
|
[0.24.1-0]: https://github.com/rockcarver/frodo-cli/compare/v0.24.1...v0.24.1-0
|
|
1729
|
-
|
|
1730
1704
|
[0.24.1]: https://github.com/rockcarver/frodo-cli/compare/v0.24.0...v0.24.1
|
|
1731
|
-
|
|
1732
1705
|
[0.24.0]: https://github.com/rockcarver/frodo-cli/compare/v0.23.1-8...v0.24.0
|
|
1733
|
-
|
|
1734
1706
|
[0.23.1-8]: https://github.com/rockcarver/frodo-cli/compare/v0.23.1-7...v0.23.1-8
|
|
1735
|
-
|
|
1736
1707
|
[0.23.1-7]: https://github.com/rockcarver/frodo-cli/compare/v0.23.1-6...v0.23.1-7
|
|
1737
|
-
|
|
1738
1708
|
[0.23.1-6]: https://github.com/rockcarver/frodo-cli/compare/v0.23.1-5...v0.23.1-6
|
|
1739
|
-
|
|
1740
1709
|
[0.23.1-5]: https://github.com/rockcarver/frodo-cli/compare/v0.23.1-4...v0.23.1-5
|
|
1741
|
-
|
|
1742
1710
|
[0.23.1-4]: https://github.com/rockcarver/frodo-cli/compare/v0.23.1-3...v0.23.1-4
|
|
1743
|
-
|
|
1744
1711
|
[0.23.1-3]: https://github.com/rockcarver/frodo-cli/compare/v0.23.1-2...v0.23.1-3
|
|
1745
|
-
|
|
1746
1712
|
[0.23.1-2]: https://github.com/rockcarver/frodo-cli/compare/v0.23.1-1...v0.23.1-2
|
|
1747
|
-
|
|
1748
1713
|
[0.23.1-1]: https://github.com/rockcarver/frodo-cli/compare/v0.23.1-0...v0.23.1-1
|
|
1749
|
-
|
|
1750
1714
|
[0.23.1-0]: https://github.com/rockcarver/frodo-cli/compare/v0.23.0...v0.23.1-0
|
|
1751
|
-
|
|
1752
1715
|
[0.23.0]: https://github.com/rockcarver/frodo-cli/compare/v0.22.3...v0.23.0
|
|
1753
|
-
|
|
1754
1716
|
[0.22.3]: https://github.com/rockcarver/frodo-cli/compare/v0.22.2...v0.22.3
|
|
1755
|
-
|
|
1756
1717
|
[0.22.2]: https://github.com/rockcarver/frodo-cli/compare/v0.22.1...v0.22.2
|
|
1757
|
-
|
|
1758
1718
|
[0.22.1]: https://github.com/rockcarver/frodo-cli/compare/v0.22.0...v0.22.1
|
|
1759
|
-
|
|
1760
1719
|
[0.22.0]: https://github.com/rockcarver/frodo-cli/compare/v0.21.1...v0.22.0
|
|
1761
|
-
|
|
1762
1720
|
[0.21.1]: https://github.com/rockcarver/frodo-cli/compare/v0.21.0...v0.21.1
|
|
1763
|
-
|
|
1764
1721
|
[0.21.0]: https://github.com/rockcarver/frodo-cli/compare/v0.20.2-0...v0.21.0
|
|
1765
|
-
|
|
1766
1722
|
[0.20.2-0]: https://github.com/rockcarver/frodo-cli/compare/v0.20.1...v0.20.2-0
|
|
1767
|
-
|
|
1768
1723
|
[0.20.1]: https://github.com/rockcarver/frodo-cli/compare/v0.20.1-1...v0.20.1
|
|
1769
|
-
|
|
1770
1724
|
[0.20.1-1]: https://github.com/rockcarver/frodo-cli/compare/v0.20.1-0...v0.20.1-1
|
|
1771
|
-
|
|
1772
1725
|
[0.20.1-0]: https://github.com/rockcarver/frodo-cli/compare/v0.20.0...v0.20.1-0
|
|
1773
|
-
|
|
1774
1726
|
[0.20.0]: https://github.com/rockcarver/frodo-cli/compare/v0.19.5-2...v0.20.0
|
|
1775
|
-
|
|
1776
1727
|
[0.19.5-2]: https://github.com/rockcarver/frodo-cli/compare/v0.19.5-1...v0.19.5-2
|
|
1777
|
-
|
|
1778
1728
|
[0.19.5-1]: https://github.com/rockcarver/frodo-cli/compare/v0.19.5-0...v0.19.5-1
|
|
1779
|
-
|
|
1780
1729
|
[0.19.5-0]: https://github.com/rockcarver/frodo-cli/compare/v0.19.4...v0.19.5-0
|
|
1781
|
-
|
|
1782
1730
|
[0.19.4]: https://github.com/rockcarver/frodo-cli/compare/v0.19.3...v0.19.4
|
|
1783
|
-
|
|
1784
1731
|
[0.19.3]: https://github.com/rockcarver/frodo-cli/compare/v0.19.3-3...v0.19.3
|
|
1785
|
-
|
|
1786
1732
|
[0.19.3-3]: https://github.com/rockcarver/frodo-cli/compare/v0.19.3-2...v0.19.3-3
|
|
1787
|
-
|
|
1788
1733
|
[0.19.3-2]: https://github.com/rockcarver/frodo-cli/compare/v0.19.3-1...v0.19.3-2
|
|
1789
|
-
|
|
1790
1734
|
[0.19.3-1]: https://github.com/rockcarver/frodo-cli/compare/v0.19.3-0...v0.19.3-1
|
|
1791
|
-
|
|
1792
1735
|
[0.19.3-0]: https://github.com/rockcarver/frodo-cli/compare/v0.19.2...v0.19.3-0
|
|
1793
|
-
|
|
1794
1736
|
[0.19.2]: https://github.com/rockcarver/frodo-cli/compare/v0.19.1...v0.19.2
|
|
1795
|
-
|
|
1796
1737
|
[0.19.1]: https://github.com/rockcarver/frodo-cli/compare/v0.19.0...v0.19.1
|
|
1797
|
-
|
|
1798
1738
|
[0.19.0]: https://github.com/rockcarver/frodo-cli/compare/v0.18.2-18...v0.19.0
|
|
1799
|
-
|
|
1800
1739
|
[0.18.2-18]: https://github.com/rockcarver/frodo-cli/compare/v0.18.2-17...v0.18.2-18
|
|
1801
|
-
|
|
1802
1740
|
[0.18.2-17]: https://github.com/rockcarver/frodo-cli/compare/v0.18.2-16...v0.18.2-17
|
|
1803
|
-
|
|
1804
1741
|
[0.18.2-16]: https://github.com/rockcarver/frodo-cli/compare/v0.18.2-15...v0.18.2-16
|
|
1805
|
-
|
|
1806
1742
|
[0.18.2-15]: https://github.com/rockcarver/frodo-cli/compare/v0.18.2-14...v0.18.2-15
|
|
1807
|
-
|
|
1808
1743
|
[0.18.2-14]: https://github.com/rockcarver/frodo-cli/compare/v0.18.2-13...v0.18.2-14
|
|
1809
|
-
|
|
1810
1744
|
[0.18.2-13]: https://github.com/rockcarver/frodo-cli/compare/v0.18.2-12...v0.18.2-13
|
|
1811
|
-
|
|
1812
1745
|
[0.18.2-12]: https://github.com/rockcarver/frodo-cli/compare/v0.18.2-11...v0.18.2-12
|
|
1813
|
-
|
|
1814
1746
|
[0.18.2-11]: https://github.com/rockcarver/frodo-cli/compare/v0.18.2-10...v0.18.2-11
|
|
1815
|
-
|
|
1816
1747
|
[0.18.2-10]: https://github.com/rockcarver/frodo-cli/compare/v0.18.2-9...v0.18.2-10
|
|
1817
|
-
|
|
1818
1748
|
[0.18.2-9]: https://github.com/rockcarver/frodo-cli/compare/v0.18.2-8...v0.18.2-9
|
|
1819
|
-
|
|
1820
1749
|
[0.18.2-8]: https://github.com/rockcarver/frodo-cli/compare/v0.18.2-7...v0.18.2-8
|
|
1821
|
-
|
|
1822
1750
|
[0.18.2-7]: https://github.com/rockcarver/frodo-cli/compare/v0.18.2-6...v0.18.2-7
|
|
1823
|
-
|
|
1824
1751
|
[0.18.2-6]: https://github.com/rockcarver/frodo-cli/compare/v0.18.2-5...v0.18.2-6
|
|
1825
|
-
|
|
1826
1752
|
[0.18.2-5]: https://github.com/rockcarver/frodo-cli/compare/v0.18.2-4...v0.18.2-5
|
|
1827
|
-
|
|
1828
1753
|
[0.18.2-4]: https://github.com/rockcarver/frodo-cli/compare/v0.18.2-3...v0.18.2-4
|
|
1829
|
-
|
|
1830
1754
|
[0.18.2-3]: https://github.com/rockcarver/frodo-cli/compare/v0.18.2-2...v0.18.2-3
|
|
1831
|
-
|
|
1832
1755
|
[0.18.2-2]: https://github.com/rockcarver/frodo-cli/compare/v0.18.2-1...v0.18.2-2
|
|
1833
|
-
|
|
1834
1756
|
[0.18.2-1]: https://github.com/rockcarver/frodo-cli/compare/v0.18.2-0...v0.18.2-1
|
|
1835
|
-
|
|
1836
1757
|
[0.18.2-0]: https://github.com/rockcarver/frodo-cli/compare/v0.18.1...v0.18.2-0
|
|
1837
|
-
|
|
1838
1758
|
[0.18.1]: https://github.com/rockcarver/frodo-cli/compare/v0.18.0...v0.18.1
|
|
1839
|
-
|
|
1840
1759
|
[0.18.0]: https://github.com/rockcarver/frodo-cli/compare/v0.17.1...v0.18.0
|
|
1841
|
-
|
|
1842
1760
|
[0.17.1]: https://github.com/rockcarver/frodo-cli/compare/v0.17.0...v0.17.1
|
|
1843
|
-
|
|
1844
1761
|
[0.17.0]: https://github.com/rockcarver/frodo-cli/compare/v0.16.2-1...v0.17.0
|
|
1845
|
-
|
|
1846
1762
|
[0.16.2-1]: https://github.com/rockcarver/frodo-cli/compare/v0.16.2-0...v0.16.2-1
|
|
1847
|
-
|
|
1848
1763
|
[0.16.2-0]: https://github.com/rockcarver/frodo-cli/compare/v0.16.1...v0.16.2-0
|
|
1849
|
-
|
|
1850
1764
|
[0.16.1]: https://github.com/rockcarver/frodo-cli/compare/v0.16.0...v0.16.1
|
|
1851
|
-
|
|
1852
1765
|
[0.16.0]: https://github.com/rockcarver/frodo-cli/compare/v0.15.1...v0.16.0
|
|
1853
|
-
|
|
1854
1766
|
[0.15.1]: https://github.com/rockcarver/frodo-cli/compare/v0.15.1-0...v0.15.1
|
|
1855
|
-
|
|
1856
1767
|
[0.15.1-0]: https://github.com/rockcarver/frodo-cli/compare/v0.15.0...v0.15.1-0
|
|
1857
|
-
|
|
1858
1768
|
[0.15.0]: https://github.com/rockcarver/frodo-cli/compare/v0.14.1...v0.15.0
|
|
1859
|
-
|
|
1860
1769
|
[0.14.1]: https://github.com/rockcarver/frodo-cli/compare/v0.14.0...v0.14.1
|
|
1861
|
-
|
|
1862
1770
|
[0.14.0]: https://github.com/rockcarver/frodo-cli/compare/v0.13.3...v0.14.0
|
|
1863
|
-
|
|
1864
1771
|
[0.13.3]: https://github.com/rockcarver/frodo-cli/compare/v0.13.2...v0.13.3
|
|
1865
|
-
|
|
1866
1772
|
[0.13.2]: https://github.com/rockcarver/frodo-cli/compare/v0.13.1...v0.13.2
|
|
1867
|
-
|
|
1868
1773
|
[0.13.1]: https://github.com/rockcarver/frodo-cli/compare/v0.13.0...v0.13.1
|
|
1869
|
-
|
|
1870
1774
|
[0.13.0]: https://github.com/rockcarver/frodo-cli/compare/v0.12.5...v0.13.0
|
|
1871
|
-
|
|
1872
1775
|
[0.12.5]: https://github.com/rockcarver/frodo-cli/compare/v0.12.4...v0.12.5
|
|
1873
|
-
|
|
1874
1776
|
[0.12.4]: https://github.com/rockcarver/frodo-cli/compare/v0.12.4-6...v0.12.4
|
|
1875
|
-
|
|
1876
1777
|
[0.12.4-6]: https://github.com/rockcarver/frodo-cli/compare/v0.12.4-5...v0.12.4-6
|
|
1877
|
-
|
|
1878
1778
|
[0.12.4-5]: https://github.com/rockcarver/frodo-cli/compare/v0.12.4-4...v0.12.4-5
|
|
1879
|
-
|
|
1880
1779
|
[0.12.4-4]: https://github.com/rockcarver/frodo-cli/compare/v0.12.4-3...v0.12.4-4
|
|
1881
|
-
|
|
1882
1780
|
[0.12.4-3]: https://github.com/rockcarver/frodo-cli/compare/v0.12.4-2...v0.12.4-3
|
|
1883
|
-
|
|
1884
1781
|
[0.12.4-2]: https://github.com/rockcarver/frodo-cli/compare/v0.12.4-1...v0.12.4-2
|
|
1885
|
-
|
|
1886
1782
|
[0.12.4-1]: https://github.com/rockcarver/frodo-cli/compare/v0.12.4-0...v0.12.4-1
|
|
1887
|
-
|
|
1888
1783
|
[0.12.4-0]: https://github.com/rockcarver/frodo-cli/compare/v0.12.3...v0.12.4-0
|
|
1889
|
-
|
|
1890
1784
|
[0.12.3]: https://github.com/rockcarver/frodo-cli/compare/v0.12.3-1...v0.12.3
|
|
1891
|
-
|
|
1892
1785
|
[0.12.3-1]: https://github.com/rockcarver/frodo-cli/compare/v0.12.3-0...v0.12.3-1
|
|
1893
|
-
|
|
1894
1786
|
[0.12.3-0]: https://github.com/rockcarver/frodo-cli/compare/v0.12.2...v0.12.3-0
|
|
1895
|
-
|
|
1896
1787
|
[0.12.2]: https://github.com/rockcarver/frodo-cli/compare/v0.12.2-2...v0.12.2
|
|
1897
|
-
|
|
1898
1788
|
[0.12.2-2]: https://github.com/rockcarver/frodo-cli/compare/v0.12.2-1...v0.12.2-2
|
|
1899
|
-
|
|
1900
1789
|
[0.12.2-1]: https://github.com/rockcarver/frodo-cli/compare/v0.12.2-0...v0.12.2-1
|
|
1901
|
-
|
|
1902
1790
|
[0.12.2-0]: https://github.com/rockcarver/frodo-cli/compare/v0.12.1...v0.12.2-0
|
|
1903
|
-
|
|
1904
1791
|
[0.12.1]: https://github.com/rockcarver/frodo-cli/compare/v0.12.0...v0.12.1
|
|
1905
|
-
|
|
1906
1792
|
[0.12.0]: https://github.com/rockcarver/frodo-cli/compare/v0.11.1-2...v0.12.0
|
|
1907
|
-
|
|
1908
1793
|
[0.11.1-2]: https://github.com/rockcarver/frodo-cli/compare/v0.11.1-1...v0.11.1-2
|
|
1909
|
-
|
|
1910
1794
|
[0.11.1-1]: https://github.com/rockcarver/frodo-cli/compare/v0.11.1-0...v0.11.1-1
|
|
1911
|
-
|
|
1912
1795
|
[0.11.1-0]: https://github.com/rockcarver/frodo-cli/compare/v0.10.4...v0.11.1-0
|
|
1913
|
-
|
|
1914
1796
|
[0.10.4]: https://github.com/rockcarver/frodo/compare/v0.10.3...v0.10.4
|
|
1915
|
-
|
|
1916
1797
|
[0.10.3]: https://github.com/rockcarver/frodo/compare/v0.10.3-0...v0.10.3
|
|
1917
|
-
|
|
1918
1798
|
[0.10.3-0]: https://github.com/rockcarver/frodo/compare/v0.10.2...v0.10.3-0
|
|
1919
|
-
|
|
1920
1799
|
[0.10.2]: https://github.com/rockcarver/frodo/compare/v0.10.2-0...v0.10.2
|
|
1921
|
-
|
|
1922
1800
|
[0.10.2-0]: https://github.com/rockcarver/frodo/compare/v0.10.1...v0.10.2-0
|
|
1923
|
-
|
|
1924
1801
|
[0.10.1]: https://github.com/rockcarver/frodo/compare/v0.10.0...v0.10.1
|
|
1925
|
-
|
|
1926
1802
|
[0.10.0]: https://github.com/rockcarver/frodo/compare/v0.9.3-7...v0.10.0
|
|
1927
|
-
|
|
1928
1803
|
[0.9.3-7]: https://github.com/rockcarver/frodo/compare/v0.9.3-6...v0.9.3-7
|
|
1929
|
-
|
|
1930
1804
|
[0.9.3-6]: https://github.com/rockcarver/frodo/compare/v0.9.3-5...v0.9.3-6
|
|
1931
|
-
|
|
1932
1805
|
[0.9.3-5]: https://github.com/rockcarver/frodo/compare/v0.9.3-4...v0.9.3-5
|
|
1933
|
-
|
|
1934
1806
|
[0.9.3-4]: https://github.com/rockcarver/frodo/compare/v0.9.3-3...v0.9.3-4
|
|
1935
|
-
|
|
1936
1807
|
[0.9.3-3]: https://github.com/rockcarver/frodo/compare/v0.9.3-2...v0.9.3-3
|
|
1937
|
-
|
|
1938
1808
|
[0.9.3-2]: https://github.com/rockcarver/frodo/compare/v0.9.3-1...v0.9.3-2
|
|
1939
|
-
|
|
1940
1809
|
[0.9.3-1]: https://github.com/rockcarver/frodo/compare/v0.9.3-0...v0.9.3-1
|
|
1941
|
-
|
|
1942
1810
|
[0.9.3-0]: https://github.com/rockcarver/frodo/compare/v0.9.2...v0.9.3-0
|
|
1943
|
-
|
|
1944
1811
|
[0.9.2]: https://github.com/rockcarver/frodo/compare/v0.9.2-12...v0.9.2
|
|
1945
|
-
|
|
1946
1812
|
[0.9.2-12]: https://github.com/rockcarver/frodo/compare/v0.9.2-11...v0.9.2-12
|
|
1947
|
-
|
|
1948
1813
|
[0.9.2-11]: https://github.com/rockcarver/frodo/compare/v0.9.2-10...v0.9.2-11
|
|
1949
|
-
|
|
1950
1814
|
[0.9.2-10]: https://github.com/rockcarver/frodo/compare/v0.9.2-9...v0.9.2-10
|
|
1951
|
-
|
|
1952
1815
|
[0.9.2-9]: https://github.com/rockcarver/frodo/compare/v0.9.2-8...v0.9.2-9
|
|
1953
|
-
|
|
1954
1816
|
[0.9.2-8]: https://github.com/rockcarver/frodo/compare/v0.9.2-7...v0.9.2-8
|
|
1955
|
-
|
|
1956
1817
|
[0.9.2-7]: https://github.com/rockcarver/frodo/compare/v0.9.2-6...v0.9.2-7
|
|
1957
|
-
|
|
1958
1818
|
[0.9.2-6]: https://github.com/rockcarver/frodo/compare/v0.9.2-5...v0.9.2-6
|
|
1959
|
-
|
|
1960
1819
|
[0.9.2-5]: https://github.com/rockcarver/frodo/compare/v0.9.2-4...v0.9.2-5
|
|
1961
|
-
|
|
1962
1820
|
[0.9.2-4]: https://github.com/rockcarver/frodo/compare/v0.9.2-3...v0.9.2-4
|
|
1963
|
-
|
|
1964
1821
|
[0.9.2-3]: https://github.com/rockcarver/frodo/compare/v0.9.2-2...v0.9.2-3
|
|
1965
|
-
|
|
1966
1822
|
[0.9.2-2]: https://github.com/rockcarver/frodo/compare/v0.9.2-1...v0.9.2-2
|
|
1967
|
-
|
|
1968
1823
|
[0.9.2-1]: https://github.com/rockcarver/frodo/compare/v0.9.2-0...v0.9.2-1
|
|
1969
|
-
|
|
1970
1824
|
[0.9.2-0]: https://github.com/rockcarver/frodo/compare/v0.9.1...v0.9.2-0
|
|
1971
|
-
|
|
1972
1825
|
[0.9.1]: https://github.com/rockcarver/frodo/compare/v0.9.1-1...v0.9.1
|
|
1973
|
-
|
|
1974
1826
|
[0.9.1-1]: https://github.com/rockcarver/frodo/compare/v0.9.1-0...v0.9.1-1
|
|
1975
|
-
|
|
1976
1827
|
[0.9.1-0]: https://github.com/rockcarver/frodo/compare/v0.9.0...v0.9.1-0
|
|
1977
|
-
|
|
1978
1828
|
[0.9.0]: https://github.com/rockcarver/frodo/compare/v0.8.2...v0.9.0
|
|
1979
|
-
|
|
1980
1829
|
[0.8.2]: https://github.com/rockcarver/frodo/compare/v0.8.2-1...v0.8.2
|
|
1981
|
-
|
|
1982
1830
|
[0.8.2-1]: https://github.com/rockcarver/frodo/compare/v0.8.2-0...v0.8.2-1
|
|
1983
|
-
|
|
1984
1831
|
[0.8.2-0]: https://github.com/rockcarver/frodo/compare/v0.8.1...v0.8.2-0
|
|
1985
|
-
|
|
1986
1832
|
[0.8.1]: https://github.com/rockcarver/frodo/compare/v0.8.1-0...v0.8.1
|
|
1987
|
-
|
|
1988
1833
|
[0.8.1-0]: https://github.com/rockcarver/frodo/compare/v0.8.0...v0.8.1-0
|
|
1989
|
-
|
|
1990
1834
|
[0.8.0]: https://github.com/rockcarver/frodo/compare/v0.7.1-1...v0.8.0
|
|
1991
|
-
|
|
1992
1835
|
[0.7.1-1]: https://github.com/rockcarver/frodo/compare/v0.7.1-0...v0.7.1-1
|
|
1993
|
-
|
|
1994
1836
|
[0.7.1-0]: https://github.com/rockcarver/frodo/compare/v0.7.0...v0.7.1-0
|
|
1995
|
-
|
|
1996
1837
|
[0.7.0]: https://github.com/rockcarver/frodo/compare/v0.6.4-4...v0.7.0
|
|
1997
|
-
|
|
1998
1838
|
[0.6.4-4]: https://github.com/rockcarver/frodo/compare/v0.6.4-3...v0.6.4-4
|
|
1999
|
-
|
|
2000
1839
|
[0.6.4-3]: https://github.com/rockcarver/frodo/compare/v0.6.4-2...v0.6.4-3
|
|
2001
|
-
|
|
2002
1840
|
[0.6.4-2]: https://github.com/rockcarver/frodo/compare/v0.6.4-1...v0.6.4-2
|
|
2003
|
-
|
|
2004
1841
|
[0.6.4-1]: https://github.com/rockcarver/frodo/compare/v0.6.4-0...v0.6.4-1
|
|
2005
|
-
|
|
2006
1842
|
[0.6.4-0]: https://github.com/rockcarver/frodo/compare/v0.6.3...v0.6.4-0
|
|
2007
|
-
|
|
2008
1843
|
[0.6.3]: https://github.com/rockcarver/frodo/compare/v0.6.3-alpha.51...v0.6.3
|
|
2009
|
-
|
|
2010
1844
|
[0.6.3-alpha.51]: https://github.com/rockcarver/frodo/compare/6137b8b19f1c22af40af5afbf7a2e6c5a95b61cb...v0.6.3-alpha.51
|