@rockcarver/frodo-cli 3.1.0 → 3.1.1-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 +43 -1
- package/dist/app.cjs +6777 -6162
- package/dist/app.cjs.map +1 -1
- package/package.json +2 -2
- package/~/temp/Connections.json +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,40 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [3.1.0] - 2026-01-22
|
|
11
|
+
|
|
12
|
+
## [3.0.10] - 2026-01-20
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- This release enables the CLI to support Proxy Connect in PingOne Advanced Identity Cloud through the use of custom authentication headers.
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- rockcarver/frodo-lib#519: Fixed an error generated by the `frodo admin grant-oauth2-client-admin-privileges` command due to changes in AIC default configuration.
|
|
21
|
+
- Updated dependencies with security issues.
|
|
22
|
+
|
|
23
|
+
## [3.0.9] - 2025-09-16
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
|
|
27
|
+
- Further improve exports using the -a and -A options to no longer stop prematurely if errors are encountered. This version resolves issues with large sets of IDM configurations.
|
|
28
|
+
|
|
29
|
+
## [3.0.8] - 2025-09-11
|
|
30
|
+
|
|
31
|
+
### Fixed
|
|
32
|
+
|
|
33
|
+
- Exports using the -a and -A options no longer stop prematurely if errors are encountered.
|
|
34
|
+
|
|
35
|
+
## [3.0.7] - 2025-07-24
|
|
36
|
+
|
|
37
|
+
### Fixed
|
|
38
|
+
|
|
39
|
+
- log fetch now repects the log API request limit (1 per second)
|
|
40
|
+
- log fetch and log tail default to ALL levels by default
|
|
41
|
+
|
|
42
|
+
## [3.0.6] - 2025-06-18
|
|
43
|
+
|
|
10
44
|
## [3.0.5] - 2025-04-07
|
|
11
45
|
|
|
12
46
|
### Fixed
|
|
@@ -2073,7 +2107,15 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
2073
2107
|
- Fixed problem with adding connection profiles
|
|
2074
2108
|
- Miscellaneous bug fixes
|
|
2075
2109
|
|
|
2076
|
-
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v3.0
|
|
2110
|
+
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v3.1.0...HEAD
|
|
2111
|
+
[3.1.0]: https://github.com/rockcarver/frodo-cli/compare/v3.0.10...v3.1.0
|
|
2112
|
+
[3.0.10]: https://github.com/rockcarver/frodo-cli/compare/v3.0.10-1...v3.0.10
|
|
2113
|
+
[3.0.10-1]: https://github.com/rockcarver/frodo-cli/compare/v3.0.10-0...v3.0.10-1
|
|
2114
|
+
[3.0.10-0]: https://github.com/rockcarver/frodo-cli/compare/v3.0.9...v3.0.10-0
|
|
2115
|
+
[3.0.9]: https://github.com/rockcarver/frodo-cli/compare/v3.0.8...v3.0.9
|
|
2116
|
+
[3.0.8]: https://github.com/rockcarver/frodo-cli/compare/v3.0.7...v3.0.8
|
|
2117
|
+
[3.0.7]: https://github.com/rockcarver/frodo-cli/compare/v3.0.6...v3.0.7
|
|
2118
|
+
[3.0.6]: https://github.com/rockcarver/frodo-cli/compare/v3.0.5...v3.0.6
|
|
2077
2119
|
[3.0.5]: https://github.com/rockcarver/frodo-cli/compare/v3.0.4...v3.0.5
|
|
2078
2120
|
[3.0.4]: https://github.com/rockcarver/frodo-cli/compare/v3.0.4-1...v3.0.4
|
|
2079
2121
|
[3.0.4-1]: https://github.com/rockcarver/frodo-cli/compare/v3.0.4-0...v3.0.4-1
|