@rockcarver/frodo-cli 2.0.6-0 → 2.0.6-2
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 +11 -5
- package/dist/app.cjs +372 -95
- package/dist/app.cjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,13 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.0.6-1] - 2024-09-09
|
|
11
|
+
|
|
12
|
+
## [2.0.6-0] - 2024-08-26
|
|
13
|
+
|
|
10
14
|
### Added
|
|
11
15
|
|
|
12
16
|
- Improve support for custom platform deployments (non-forgeops or customized forgeops)
|
|
13
17
|
|
|
14
18
|
- \#429: Added options to support custom oauth2 clients used to obtain the access token for IDM API calls:
|
|
15
19
|
|
|
16
|
-
- `--login-client-id <client-id>` Specify a custom OAuth2 client id to use a your own oauth2 client for IDM API calls in deployments of type "cloud" or "forgeops". Your custom client must be configured as a public client and allow the authorization code grant using the "openid fr:idm
|
|
20
|
+
- `--login-client-id <client-id>` Specify a custom OAuth2 client id to use a your own oauth2 client for IDM API calls in deployments of type "cloud" or "forgeops". Your custom client must be configured as a public client and allow the authorization code grant using the "openid fr:idm:\*" scope. Use the "--redirect-uri" parameter if you have configured a custom redirect uri (default: "<host>/platform/appAuthHelperRedirect.html").
|
|
17
21
|
- `--login-redirect-uri <redirect-uri>` Specify a custom redirect URI to use with your custom OAuth2 client (efault: "<host>/platform/appAuthHelperRedirect.html").
|
|
18
22
|
|
|
19
23
|
The above options can also be supplied through environment variables:
|
|
@@ -23,13 +27,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
23
27
|
|
|
24
28
|
- \#359: Added an option to support custom IDM host URLs for all IDM API calls (e.g. platform deployments hosting AM and IDM on/in different DNS hosts/domains):
|
|
25
29
|
|
|
26
|
-
- `--idm-host <idm-host>` IDM base URL, e.g.: https://cdk.idm.example.com/myidm
|
|
30
|
+
- `--idm-host <idm-host>` IDM base URL, e.g.: <https://cdk.idm.example.com/myidm>. Use only if your IDM installation resides in a different domain and/or if the base path differs from the default "/openidm".
|
|
27
31
|
|
|
28
32
|
The above option can also be supplied through an environment variable:
|
|
29
33
|
|
|
30
34
|
- `FRODO_IDM_HOST` IDM base URL. Overridden by '--idm-host' option.
|
|
31
|
-
|
|
32
|
-
|
|
35
|
+
|
|
36
|
+
**_Note:_** All the above options are also persisted in connection profiles so they only have to specified once and after that they come out of the connection profile.
|
|
33
37
|
|
|
34
38
|
### Changed
|
|
35
39
|
|
|
@@ -1972,7 +1976,9 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
1972
1976
|
- Fixed problem with adding connection profiles
|
|
1973
1977
|
- Miscellaneous bug fixes
|
|
1974
1978
|
|
|
1975
|
-
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v2.0.
|
|
1979
|
+
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v2.0.6-1...HEAD
|
|
1980
|
+
[2.0.6-1]: https://github.com/rockcarver/frodo-cli/compare/v2.0.6-0...v2.0.6-1
|
|
1981
|
+
[2.0.6-0]: https://github.com/rockcarver/frodo-cli/compare/v2.0.5...v2.0.6-0
|
|
1976
1982
|
[2.0.5]: https://github.com/rockcarver/frodo-cli/compare/v2.0.5-0...v2.0.5
|
|
1977
1983
|
[2.0.5-0]: https://github.com/rockcarver/frodo-cli/compare/v2.0.4...v2.0.5-0
|
|
1978
1984
|
[2.0.4]: https://github.com/rockcarver/frodo-cli/compare/v2.0.3...v2.0.4
|