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