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