@rockcarver/frodo-cli 2.0.5-0 → 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 +54 -1
- package/dist/app.cjs +1914 -1058
- package/dist/app.cjs.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,57 @@ 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
|
+
- 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
|
+
|
|
42
|
+
- Improvements to the `frodo script` commands:
|
|
43
|
+
|
|
44
|
+
- Added the `-i`/`--script-id` option to import and export scripts by id.
|
|
45
|
+
- Added the `--no-deps` option to not include library scripts in exports of single scripts. Similarly adds the option on single script imports using the same flag to not import library dependencies if so desired.
|
|
46
|
+
|
|
47
|
+
### Changed
|
|
48
|
+
|
|
49
|
+
- Update to frodo-lib 2.1.0
|
|
50
|
+
|
|
51
|
+
### Fixed
|
|
52
|
+
|
|
53
|
+
- Fixes to the handling of scripts in the `frodo script` commands and the `frodo config import` command:
|
|
54
|
+
|
|
55
|
+
- Fixing many bugs related to script extraction. For example, there were certain cases where importing wouldn't function correctly due to being unable to find the extracted script(s). For exports, library scripts weren't being extracted correctly either. Therefore, an overhaul was done to try and help simplify the extraction process to that it can work for multiple scripts if dealing with library scripts both on export and import.
|
|
56
|
+
- Fixing many errors in the watch option for script imports. One big one was if there were several scripts for a single json file (e.g. when exporting scripts with library scripts) that only one of the scripts would correctly be watched. This was fixed by creating mappings before watching begins to map extracted script files with their corresponding json files so it functions correctly.
|
|
57
|
+
- Fixing a small bug with config imports where, if the working directory started with `.` or `./` it would usually fail due to being unable to locate the expected files it was looking for.
|
|
58
|
+
|
|
59
|
+
## [2.0.5-0] - 2024-08-16
|
|
60
|
+
|
|
10
61
|
## [2.0.4] - 2024-08-14
|
|
11
62
|
|
|
12
63
|
### Changed
|
|
@@ -1921,7 +1972,9 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
1921
1972
|
- Fixed problem with adding connection profiles
|
|
1922
1973
|
- Miscellaneous bug fixes
|
|
1923
1974
|
|
|
1924
|
-
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v2.0.
|
|
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
|
|
1977
|
+
[2.0.5-0]: https://github.com/rockcarver/frodo-cli/compare/v2.0.4...v2.0.5-0
|
|
1925
1978
|
[2.0.4]: https://github.com/rockcarver/frodo-cli/compare/v2.0.3...v2.0.4
|
|
1926
1979
|
[2.0.3]: https://github.com/rockcarver/frodo-cli/compare/v2.0.2...v2.0.3
|
|
1927
1980
|
[2.0.2]: https://github.com/rockcarver/frodo-cli/compare/v2.0.1...v2.0.2
|