@rockcarver/frodo-cli 0.24.6-3 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +40 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,41 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- MacOS binaries are now signed and notarized and run without security exceptions.
|
|
13
|
+
- \#251: Support for Identity Cloud admin federation configuration:
|
|
14
|
+
|
|
15
|
+
- `frodo admin federation` Manage admin federation configuration.
|
|
16
|
+
- `export` Export admin federation providers.
|
|
17
|
+
- `import` Import admin federation providers.
|
|
18
|
+
- `list` List admin federation providers.
|
|
19
|
+
|
|
20
|
+
Examples:
|
|
21
|
+
|
|
22
|
+
- List all configured admin federation providers:<br>
|
|
23
|
+
`frodo admin federation list <myTenant>`
|
|
24
|
+
|
|
25
|
+
`frodo admin federation list <myTenant> <username> <password>`
|
|
26
|
+
- Export all admin federation providers to a single file:<br>
|
|
27
|
+
`frodo admin federation export -a <myTenant>`
|
|
28
|
+
|
|
29
|
+
`frodo admin federation export -a <myTenant> <username> <password>`
|
|
30
|
+
- Import all admin federation providers from a single file:<br>
|
|
31
|
+
`frodo admin federation import -a -f allProviders.admin.federation.json <myTenant>`
|
|
32
|
+
|
|
33
|
+
`frodo admin federation import -a -f allProviders.admin.federation.json <myTenant> <username> <password>`<br>
|
|
34
|
+
|
|
35
|
+
**_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.
|
|
36
|
+
|
|
37
|
+
### Changed
|
|
38
|
+
|
|
39
|
+
- Update to frodo-lib 1.1.0
|
|
40
|
+
|
|
41
|
+
## [1.0.0-1] - 2023-06-30
|
|
42
|
+
|
|
43
|
+
## [0.24.6-3] - 2023-06-30
|
|
44
|
+
|
|
10
45
|
## [0.24.6-2] - 2023-06-22
|
|
11
46
|
|
|
12
47
|
## [0.24.6-1] - 2023-06-22
|
|
@@ -1236,7 +1271,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1236
1271
|
- Fixed problem with adding connection profiles
|
|
1237
1272
|
- Miscellaneous bug fixes
|
|
1238
1273
|
|
|
1239
|
-
[Unreleased]: https://github.com/rockcarver/frodo-cli/compare/
|
|
1274
|
+
[Unreleased]: https://github.com/rockcarver/frodo-cli/compare/v1.0.0-1...HEAD
|
|
1275
|
+
|
|
1276
|
+
[1.0.0-1]: https://github.com/rockcarver/frodo-cli/compare/v0.24.6-3...v1.0.0-1
|
|
1277
|
+
|
|
1278
|
+
[0.24.6-3]: https://github.com/rockcarver/frodo-cli/compare/v0.24.6-2...v0.24.6-3
|
|
1240
1279
|
|
|
1241
1280
|
[0.24.6-2]: https://github.com/rockcarver/frodo-cli/compare/v0.24.6-1...v0.24.6-2
|
|
1242
1281
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rockcarver/frodo-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A command line interface to manage ForgeRock Identity Cloud tenants, ForgeOps deployments, and classic deployments.",
|
|
6
6
|
"keywords": [
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
]
|
|
102
102
|
},
|
|
103
103
|
"dependencies": {
|
|
104
|
-
"@rockcarver/frodo-lib": "1.0
|
|
104
|
+
"@rockcarver/frodo-lib": "1.1.0",
|
|
105
105
|
"chokidar": "^3.5.3",
|
|
106
106
|
"cli-progress": "^3.11.2",
|
|
107
107
|
"cli-table3": "^0.6.3",
|