Skip to content

Commit

Permalink
Release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joshcorr committed Nov 14, 2021
1 parent 5bf6fa6 commit 4b37565
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [1.3.0] - 2021-11-14

Reintroduced PowerShell 5.1 support [#26](https://github.com/joshcorr/SecretManagement.Hashicorp.Vault.KV/issues/26)
Backported changes from main branch

## [2.0.0] - 2021-11-11

*Powershell 5.1 is no longer a supported version for this extension.
Expand All @@ -21,7 +26,7 @@ Adds `Unlock-SecretVault` [#21](https://github.com/joshcorr/SecretManagement.Has
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)
Increase verbose messages and fix formatting
Add Byte as supported data type
Fix pester tests s
Fix pester tests

## [1.1.1] - 2021-08-25

Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@
[![PSGallery][]][PSGalleryLink]
[![SupportBadge][]][SupportBadge]

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+
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.

| Extension Version | 6.0+ | 5.1 | Constrained Language Mode |
| ----------------- | ---- | --- | ------------------------- |
| 1.x.x | Yes | Yes | No |
| 2.x.x | Yes | No | Yes |

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

[PSGallery]: https://img.shields.io/powershellgallery/v/SecretManagement.Hashicorp.Vault.KV?include_prereleases
[PSGalleryLink]: https://www.powershellgallery.com/packages/SecretManagement.Hashicorp.Vault.KV
[SupportBadge]: https://img.shields.io/powershellgallery/p/SecretManagement.Hashicorp.Vault.KV?label=6.0%2B&logo=powershell
[SupportBadge]: https://img.shields.io/powershellgallery/p/SecretManagement.Hashicorp.Vault.KV?label=5.1%2B&logo=powershell
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@{
ModuleVersion = '1.2.0'
ModuleVersion = '1.3.0'
RootModule = 'SecretManagement.Hashicorp.Vault.KV.Extension.psm1'
FunctionsToExport = @('Set-Secret', 'Get-Secret', 'Remove-Secret', 'Get-SecretInfo', 'Test-SecretVault', 'Unlock-SecretVault', 'Unregister-SecretVault')
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@{
ModuleVersion = '1.2.0'
ModuleVersion = '1.3.0'
CompatiblePSEditions = @('Desktop','Core')
GUID = '5dbf943d-d9c0-4db5-88a2-1995043a6305'
Author = 'Josh Corrick'
Expand Down

0 comments on commit 4b37565

Please sign in to comment.