Skip to content

Commit 4b37565

Browse files
committed
Release 1.3.0
1 parent 5bf6fa6 commit 4b37565

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [1.3.0] - 2021-11-14
9+
10+
Reintroduced PowerShell 5.1 support [#26](https://github.com/joshcorr/SecretManagement.Hashicorp.Vault.KV/issues/26)
11+
Backported changes from main branch
12+
813
## [2.0.0] - 2021-11-11
914

1015
*Powershell 5.1 is no longer a supported version for this extension.
@@ -21,7 +26,7 @@ Adds `Unlock-SecretVault` [#21](https://github.com/joshcorr/SecretManagement.Has
2126
Adds support for checking tokens lifespan and renewing when they are close to expiring or have already expired. [#11](https://github.com/joshcorr/SecretManagement.Hashicorp.Vault.KV/issues/11)
2227
Increase verbose messages and fix formatting
2328
Add Byte as supported data type
24-
Fix pester tests s
29+
Fix pester tests
2530

2631
## [1.1.1] - 2021-08-25
2732

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@
44
[![PSGallery][]][PSGalleryLink]
55
[![SupportBadge][]][SupportBadge]
66

7-
A PowerShell SecretManagement extension for Hashicorp Vault Key Value (KV) Engine. This supports version 1, version2, and cubbyhole (similar to v1). It does not currently support all of the version 2 features like versioned secrets. This extension only supports PowerShell 6+
7+
A PowerShell SecretManagement extension for Hashicorp Vault Key Value (KV) Engine. This supports version 1, version2, and cubbyhole (similar to v1). It does not currently support all of the version 2 features like versioned secrets.
8+
9+
| Extension Version | 6.0+ | 5.1 | Constrained Language Mode |
10+
| ----------------- | ---- | --- | ------------------------- |
11+
| 1.x.x | Yes | Yes | No |
12+
| 2.x.x | Yes | No | Yes |
813

914
> **NOTE: This project is not maintained by Hashicorp.**
1015
> **I work on this in my free time because I use Vault.**
@@ -51,4 +56,4 @@ You may provide either a single text string or a hashtable to the `-Secret` para
5156

5257
[PSGallery]: https://img.shields.io/powershellgallery/v/SecretManagement.Hashicorp.Vault.KV?include_prereleases
5358
[PSGalleryLink]: https://www.powershellgallery.com/packages/SecretManagement.Hashicorp.Vault.KV
54-
[SupportBadge]: https://img.shields.io/powershellgallery/p/SecretManagement.Hashicorp.Vault.KV?label=6.0%2B&logo=powershell
59+
[SupportBadge]: https://img.shields.io/powershellgallery/p/SecretManagement.Hashicorp.Vault.KV?label=5.1%2B&logo=powershell
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@{
2-
ModuleVersion = '1.2.0'
2+
ModuleVersion = '1.3.0'
33
RootModule = 'SecretManagement.Hashicorp.Vault.KV.Extension.psm1'
44
FunctionsToExport = @('Set-Secret', 'Get-Secret', 'Remove-Secret', 'Get-SecretInfo', 'Test-SecretVault', 'Unlock-SecretVault', 'Unregister-SecretVault')
55
}

SecretManagement.Hashicorp.Vault.KV/SecretManagement.Hashicorp.Vault.KV.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@{
2-
ModuleVersion = '1.2.0'
2+
ModuleVersion = '1.3.0'
33
CompatiblePSEditions = @('Desktop','Core')
44
GUID = '5dbf943d-d9c0-4db5-88a2-1995043a6305'
55
Author = 'Josh Corrick'

0 commit comments

Comments
 (0)