@rockcarver/frodo-cli 2.0.0-30 → 2.0.0-31
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 +8 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,8 @@ 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-30] - 2023-11-04
|
|
11
|
+
|
|
10
12
|
### Added
|
|
11
13
|
|
|
12
14
|
- \#283: Support for authentication settings:
|
|
@@ -24,14 +26,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
24
26
|
`frodo authn describe --json <myTenant> <realm>`
|
|
25
27
|
|
|
26
28
|
`frodo authn describe <myTenant> <username> <password>`
|
|
29
|
+
|
|
27
30
|
- Describe authentication settings in machine-readable format (json):<br>
|
|
28
31
|
`frodo authn describe --json <myTenant> <realm>`
|
|
29
32
|
|
|
30
33
|
`frodo authn describe --json <myTenant> <realm> <username> <password>`
|
|
34
|
+
|
|
31
35
|
- Export authentication settings to file:<br>
|
|
32
36
|
`frodo authn export <myTenant> <realm>`
|
|
33
37
|
|
|
34
38
|
`frodo authn export <myTenant> <realm> <username> <password>`
|
|
39
|
+
|
|
35
40
|
- Import authentication settings from file:<br>
|
|
36
41
|
`frodo authn import -f alphaRealm.authentication.settings.json <myTenant> <realm>`
|
|
37
42
|
|
|
@@ -1422,7 +1427,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1422
1427
|
- Fixed problem with adding connection profiles
|
|
1423
1428
|
- Miscellaneous bug fixes
|
|
1424
1429
|
|
|
1425
|
-
[Unreleased]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-
|
|
1430
|
+
[Unreleased]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-30...HEAD
|
|
1431
|
+
|
|
1432
|
+
[2.0.0-30]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-29...v2.0.0-30
|
|
1426
1433
|
|
|
1427
1434
|
[2.0.0-29]: https://github.com/rockcarver/frodo-cli/compare/v2.0.0-28...v2.0.0-29
|
|
1428
1435
|
|
package/package.json
CHANGED