@rockcarver/frodo-cli 2.0.5 → 2.0.6-1

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 CHANGED
@@ -7,6 +7,38 @@ 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-0] - 2024-08-26
11
+
12
+ ### Added
13
+
14
+ - Improve support for custom platform deployments (non-forgeops or customized forgeops)
15
+
16
+ - \#429: Added options to support custom oauth2 clients used to obtain the access token for IDM API calls:
17
+
18
+ - `--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").
19
+ - `--login-redirect-uri <redirect-uri>` Specify a custom redirect URI to use with your custom OAuth2 client (efault: "<host>/platform/appAuthHelperRedirect.html").
20
+
21
+ The above options can also be supplied through environment variables:
22
+
23
+ - `FRODO_LOGIN_CLIENT_ID` OAuth2 client id for IDM API calls. Overridden by '--login-client-id' option.
24
+ - `FRODO_LOGIN_REDIRECT_URI` Redirect Uri for custom OAuth2 client id. Overridden by '--login-redirect-uri' option.
25
+
26
+ - \#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):
27
+
28
+ - `--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".
29
+
30
+ The above option can also be supplied through an environment variable:
31
+
32
+ - `FRODO_IDM_HOST` IDM base URL. Overridden by '--idm-host' option.
33
+
34
+ **_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.
35
+
36
+ ### Changed
37
+
38
+ - Update to frodo-lib 2.1.2-0
39
+
40
+ ## [2.0.5] - 2024-08-20
41
+
10
42
  ### Added
11
43
 
12
44
  - Improvements to the `frodo script` commands:
@@ -1942,7 +1974,9 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
1942
1974
  - Fixed problem with adding connection profiles
1943
1975
  - Miscellaneous bug fixes
1944
1976
 
1945
- [unreleased]: https://github.com/rockcarver/frodo-cli/compare/v2.0.5-0...HEAD
1977
+ [unreleased]: https://github.com/rockcarver/frodo-cli/compare/v2.0.6-0...HEAD
1978
+ [2.0.6-0]: https://github.com/rockcarver/frodo-cli/compare/v2.0.5...v2.0.6-0
1979
+ [2.0.5]: https://github.com/rockcarver/frodo-cli/compare/v2.0.5-0...v2.0.5
1946
1980
  [2.0.5-0]: https://github.com/rockcarver/frodo-cli/compare/v2.0.4...v2.0.5-0
1947
1981
  [2.0.4]: https://github.com/rockcarver/frodo-cli/compare/v2.0.3...v2.0.4
1948
1982
  [2.0.3]: https://github.com/rockcarver/frodo-cli/compare/v2.0.2...v2.0.3