@rockcarver/frodo-cli 3.0.0 → 3.0.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 +33 -14
- package/dist/app.cjs +23045 -52355
- package/dist/app.cjs.map +1 -1
- package/dist/loader.cjs +1 -0
- package/dist/loader.cjs.map +1 -1
- package/package.json +17 -16
- package/~/temp/Connections.json +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -9,22 +9,39 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
### Changed
|
|
11
11
|
|
|
12
|
+
- Update to frodo-lib 3.0.2
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- #479: Fixes issues introduced by a recent PingOne Advanced Identity Cloud release (16747.0 on 27 Feb 2025) which prevented Frodo from correctly determining the deployment type of `cloud` and led to failures in the `frodo conn save` and `frodo conn add` commands when Frodo was attempting to create service accounts with scopes that are not available in an environment.
|
|
17
|
+
- Updated dependencies with vulnerabilities
|
|
18
|
+
|
|
19
|
+
## [3.0.1] - 2025-02-06
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- Update to frodo-lib 3.0.1
|
|
24
|
+
|
|
25
|
+
## [3.0.0] - 2024-11-05
|
|
26
|
+
|
|
27
|
+
### Changed
|
|
28
|
+
|
|
12
29
|
- Update to frodo-lib 3.0.0
|
|
13
30
|
- Fixes and improvements to imports and exports:
|
|
14
31
|
|
|
15
|
-
-
|
|
16
|
-
-
|
|
17
|
-
-
|
|
18
|
-
-
|
|
19
|
-
-
|
|
20
|
-
-
|
|
21
|
-
-
|
|
22
|
-
-
|
|
23
|
-
-
|
|
24
|
-
-
|
|
25
|
-
-
|
|
26
|
-
-
|
|
27
|
-
-
|
|
32
|
+
- Fixed an issue with file paths on the Windows version of Frodo that was causing errors on imports due to the differences between Windows and Linux file paths.
|
|
33
|
+
- **_BREAKING_**: Updated IDM exports to be formatted the same as normal exports instead of as raw data by putting the raw data into a type object. This included changing the names of the exports to have a type ‘idm’, such as ‘sync.idm.json’ instead of ‘sync.json’, in order to reflect this change.
|
|
34
|
+
- Added option to import an entity from a single file from the full export using the -f flag in the config import command.
|
|
35
|
+
- Added option to do env substitution on single entity IDM exports/imports, and put logic for handling it all in Frodo-Lib
|
|
36
|
+
- Added option to export/import all IDM entities to/from a single file using the -a flag
|
|
37
|
+
- Added option to include or not include metadata in IDM exports
|
|
38
|
+
- **_BREAKING_**: Updated exports for agents, secrets, and variables to have a singular rather than plural type to be more consistent with other exports (see frodo-lib PR for more information on this change)
|
|
39
|
+
- Fixed a bug where the agent list command wouldn’t work if the agent had no status
|
|
40
|
+
- Fixed a bug where oauth2 and managed applications were exported with the wrong type in a full export
|
|
41
|
+
- Fixed a bug where journey imports weren’t working when importing using -D flag
|
|
42
|
+
- Standardized file extraction since it is used in multiple places (namely scripts, sync mappings, and, in a future PR, servers).
|
|
43
|
+
- Removed progress indicators for script, esv variable and esv secret describe commands since they caused Frodo to never terminate.
|
|
44
|
+
- Improved config imports to be able to import individual files based on the file type in the name instead of on directory structure (although directory structure is still used to determine whether to import globally or to know which realm to import to).
|
|
28
45
|
|
|
29
46
|
## [2.1.0] - 2024-10-10
|
|
30
47
|
|
|
@@ -2007,7 +2024,9 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
|
|
|
2007
2024
|
- Fixed problem with adding connection profiles
|
|
2008
2025
|
- Miscellaneous bug fixes
|
|
2009
2026
|
|
|
2010
|
-
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/
|
|
2027
|
+
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v3.0.1...HEAD
|
|
2028
|
+
[3.0.1]: https://github.com/rockcarver/frodo-cli/compare/v3.0.0...v3.0.1
|
|
2029
|
+
[3.0.0]: https://github.com/rockcarver/frodo-cli/compare/v2.1.0...v3.0.0
|
|
2011
2030
|
[2.1.0]: https://github.com/rockcarver/frodo-cli/compare/v2.0.6-2...v2.1.0
|
|
2012
2031
|
[2.0.6-2]: https://github.com/rockcarver/frodo-cli/compare/v2.0.6-1...v2.0.6-2
|
|
2013
2032
|
[2.0.6-1]: https://github.com/rockcarver/frodo-cli/compare/v2.0.6-0...v2.0.6-1
|