Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
a11475d
Fix many bugs with imports and exports. Improve IDM and config export…
phalestrivir Oct 23, 2024
fa5f5da
update to frodo-lib 2.3.0 and update changelog
vscheuber Nov 2, 2024
a332e72
increase jest testTimeout
vscheuber Nov 4, 2024
029dda3
fix major release trigger
vscheuber Nov 5, 2024
65a3302
update to frodo-lib 3.0.0, update dependencies, and update changelog
vscheuber Nov 5, 2024
8d3c892
Merge pull request #451 from rockcarver/pr/448
vscheuber Nov 5, 2024
b4aff69
Updated changelog and version for release v3.0.0
github-actions[bot] Nov 5, 2024
45dc3cf
Add new internal roles command with list, export, and import function…
phalestrivir Nov 13, 2024
4bc9963
Add new server command with list, export, and import functionality.
phalestrivir Nov 13, 2024
8114738
Add realm export and import commands.
phalestrivir Nov 13, 2024
e75bb09
Add ability to export, import, and describe global authentication set…
phalestrivir Nov 13, 2024
8800c7f
Add new agent exports and imports. Add ability to list, describe, imp…
phalestrivir Nov 13, 2024
5d54b02
Fix bug with sync mapping imports
phalestrivir Nov 13, 2024
72f6e33
Cleanup and eslint fix.
phalestrivir Nov 13, 2024
b1e2494
Update mocks and exports for tests to pass
phalestrivir Nov 13, 2024
441dd81
Update package.json to latest lib version. Delete conflicting export …
phalestrivir Nov 22, 2024
7c7fb2e
Merge pull request #454 from trivir/feature/new-imports-and-exports
vscheuber Nov 22, 2024
ec27b8d
Fix type import
vscheuber Nov 22, 2024
4aa0634
Fix dependency vulnerability: Regular Expression Denial of Service (R…
vscheuber Nov 22, 2024
7bd9496
Merge pull request #455 from vscheuber/main
vscheuber Nov 22, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
id: version-bump
uses: 'phips28/gh-action-bump-version@master'
with:
major-wording: 'NO MAJOR RELEASES IN THIS BRANCH! Capped at 1.x to avoid version collisions.'
major-wording: 'MAJOR RELEASE'
minor-wording: 'MINOR RELEASE'
patch-wording: 'PATCH RELEASE'
rc-wording: ''
Expand Down
24 changes: 23 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.0.0] - 2024-11-05

### Changed

- Update to frodo-lib 3.0.0
- Fixes and improvements to imports and exports:

- 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.
- **_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.
- Added option to import an entity from a single file from the full export using the -f flag in the config import command.
- Added option to do env substitution on single entity IDM exports/imports, and put logic for handling it all in Frodo-Lib
- Added option to export/import all IDM entities to/from a single file using the -a flag
- Added option to include or not include metadata in IDM exports
- **_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)
- Fixed a bug where the agent list command wouldn’t work if the agent had no status
- Fixed a bug where oauth2 and managed applications were exported with the wrong type in a full export
- Fixed a bug where journey imports weren’t working when importing using -D flag
- Standardized file extraction since it is used in multiple places (namely scripts, sync mappings, and, in a future PR, servers).
- Removed progress indicators for script, esv variable and esv secret describe commands since they caused Frodo to never terminate.
- 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).

## [2.1.0] - 2024-10-10

### Changed
Expand Down Expand Up @@ -1988,7 +2009,8 @@ Frodo CLI 2.x automatically refreshes session and access tokens before they expi
- Fixed problem with adding connection profiles
- Miscellaneous bug fixes

[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v2.1.0...HEAD
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v3.0.0...HEAD
[3.0.0]: https://github.com/rockcarver/frodo-cli/compare/v2.1.0...v3.0.0
[2.1.0]: https://github.com/rockcarver/frodo-cli/compare/v2.0.6-2...v2.1.0
[2.0.6-2]: https://github.com/rockcarver/frodo-cli/compare/v2.0.6-1...v2.0.6-2
[2.0.6-1]: https://github.com/rockcarver/frodo-cli/compare/v2.0.6-0...v2.0.6-1
Expand Down
Loading
Loading