@rockcarver/frodo-cli 2.0.0-65 → 2.0.0-67
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 +36 -6
- package/dist/app.cjs +2269 -3580
- package/dist/app.cjs.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,33 @@ 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
|
+
- New commands to manage IDM mappings:
|
|
13
|
+
|
|
14
|
+
- `frodo mapping` Manage IDM mappings.
|
|
15
|
+
- `delete` Delete IDM mappings.
|
|
16
|
+
- `export` Export IDM mappings.
|
|
17
|
+
- `import` Import IDM mappings.
|
|
18
|
+
- `list` List IDM mappings.
|
|
19
|
+
- `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.
|
|
20
|
+
|
|
21
|
+
## [2.0.0-66] - 2024-07-10
|
|
22
|
+
|
|
23
|
+
### Added
|
|
24
|
+
|
|
25
|
+
- \#404: Frodo now saves the `-k`/`--insecure` option in connection profiles.
|
|
26
|
+
|
|
27
|
+
### Changed
|
|
28
|
+
|
|
29
|
+
- Update to frodo-lib 2.0.0-92
|
|
30
|
+
|
|
31
|
+
### Fixed
|
|
32
|
+
|
|
33
|
+
- \#400: Frodo now properly honors the `-k`/`--insecure` option and allows connecting to platform instances using self-signed certificates.
|
|
34
|
+
|
|
35
|
+
## [2.0.0-65] - 2024-07-06
|
|
36
|
+
|
|
10
37
|
### Add
|
|
11
38
|
|
|
12
39
|
- rockcarver/frodo-lib#387: Support import of ESVs (variables and secrets). Frodo now supports importing ESV variables and secrets with two new commands:
|
|
@@ -14,17 +41,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
14
41
|
- `frodo esv secret import`
|
|
15
42
|
|
|
16
43
|
- Frodo now supports exporting (and importing) of ESV secret values. To leave stuartship of secret values with the cloud environment where they belong, frodo will always encrypt values using either encryption keys from the source environment (default) or the target environment (export option). Frodo will never export secrets in the clear. However, frodo supports importing clear values (as well as importing encrypted values). Use these new commands and parameters to export/import variables and secrets including secret values:
|
|
44
|
+
|
|
17
45
|
- New parameters for existing `frodo esv secret export` and `frodo config export` commands:
|
|
18
|
-
|
|
19
|
-
- `--include-active-values` Include the currently active (and loaded) secret value in the export. By default, secret values are encrypted server-side in the environment they are exported from. Use `--target <host url>` to have another environment perform the encryption.
|
|
20
46
|
|
|
21
|
-
|
|
47
|
+
- `--include-active-values` Include the currently active (and loaded) secret value in the export. By default, secret values are encrypted server-side in the environment they are exported from. Use `--target <host url>` to have another environment perform the encryption.
|
|
48
|
+
|
|
49
|
+
- `--target <host url>` Host URL of the environment to perform secret value encryption. The URL must resolve to an existing connection profile. Use this option to generate an export that can be imported into the target environment without requiring admin access to the source environment.
|
|
22
50
|
|
|
23
51
|
- New `frodo esv secret import` and updated existing `frodo config import` command and note-worthy parameters:
|
|
24
52
|
|
|
25
|
-
|
|
53
|
+
- `--include-active-values` Import any secret values contained in the import file. By default, secret values are encrypted server-side in the environment they are exported from. Use `--source <host url>` to import a file exported from another environment than the one you are importing to.
|
|
26
54
|
|
|
27
|
-
|
|
55
|
+
- `--source <host url>` Host URL of the environment which performed secret value encryption. The URL must resolve to an existing connection profile. Use this option to import a file that was exported from a different source environment than the one you are importing to.
|
|
28
56
|
|
|
29
57
|
- rockcarver/frodo-lib#394: Support for `base64aes` encoding for ESV secrets
|
|
30
58
|
|
|
@@ -1614,7 +1642,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1614
1642
|
- Fixed problem with adding connection profiles
|
|
1615
1643
|
- Miscellaneous bug fixes
|
|
1616
1644
|
|
|
1617
|
-
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-
|
|
1645
|
+
[unreleased]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-66...HEAD
|
|
1646
|
+
[2.0.0-66]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-65...v2.0.0-66
|
|
1647
|
+
[2.0.0-65]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-64...v2.0.0-65
|
|
1618
1648
|
[2.0.0-64]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-63...v2.0.0-64
|
|
1619
1649
|
[2.0.0-63]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-62...v2.0.0-63
|
|
1620
1650
|
[2.0.0-62]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-61...v2.0.0-62
|