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