@rockcarver/frodo-cli 2.0.0-66 → 2.0.0-68
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 +18 -1
- package/dist/app.cjs +2254 -3575
- package/dist/app.cjs.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.0.0-67] - 2024-07-11
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- New commands to manage IDM mappings:
|
|
15
|
+
|
|
16
|
+
- `frodo mapping` Manage IDM mappings.
|
|
17
|
+
- `delete` Delete IDM mappings.
|
|
18
|
+
- `export` Export IDM mappings.
|
|
19
|
+
- `import` Import IDM mappings.
|
|
20
|
+
- `list` List IDM mappings.
|
|
21
|
+
- `rename` Renames mappings from the combined/default/legacy naming scheme (sync/\\<name>) to the separate/new naming scheme (mapping/\\<name>). To rename mappings from new back to legacy, use the -l, --legacy flag.
|
|
22
|
+
|
|
23
|
+
## [2.0.0-66] - 2024-07-10
|
|
24
|
+
|
|
10
25
|
### Added
|
|
11
26
|
|
|
12
27
|
- \#404: Frodo now saves the `-k`/`--insecure` option in connection profiles.
|
|
@@ -1629,7 +1644,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1629
1644
|
- Fixed problem with adding connection profiles
|
|
1630
1645
|
- Miscellaneous bug fixes
|
|
1631
1646
|
|
|
1632
|
-
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-
|
|
1647
|
+
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-67...HEAD
|
|
1648
|
+
[2.0.0-67]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-66...v2.0.0-67
|
|
1649
|
+
[2.0.0-66]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-65...v2.0.0-66
|
|
1633
1650
|
[2.0.0-65]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-64...v2.0.0-65
|
|
1634
1651
|
[2.0.0-64]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-63...v2.0.0-64
|
|
1635
1652
|
[2.0.0-63]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-62...v2.0.0-63
|