From 0f6ccdab67c2fd14094bb4418449a20cc5ac0da4 Mon Sep 17 00:00:00 2001 From: Greg Brownstein Date: Wed, 13 Jul 2022 03:42:02 +0000 Subject: [PATCH] Update manifest and docs to 4.6.1 --- CHANGELOG.md | 8 ++++++++ VenafiPS/VenafiPS.psd1 | 4 ++-- docs/changelog.md | 8 ++++++++ docs/functions/Get-VenafiIdentity.md | 2 +- docs/functions/Get-VenafiTeam.md | 2 +- docs/functions/Test-TppIdentity.md | 2 +- 6 files changed, 21 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 668013fb..3caf8577 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 4.6.1 +- Add validation and error handling in `Get-VenafiTeam` for invalid IDs, [#126](https://github.com/Venafi/VenafiPS/issues/126) +- Add messaging and error handling in `Get-VenafiTeam` for local groups, [#127](https://github.com/Venafi/VenafiPS/issues/127) +- Add support for PrefixedName identity format in `Test-TppIdentity` and `Get-VenafiIdentity`, [#128](https://github.com/Venafi/VenafiPS/issues/128) +- Fix Split-Path failing in TppObject class, and other functions where applicable, when PowerShell reserved characters are used in the object name, [#129](https://github.com/Venafi/VenafiPS/issues/129) + + ## 4.6.0 - Add `Import-VaasCertificate`. Export from TPP right into VaaS (and vice versa). - `Import-TppCertificate` updates @@ -404,3 +411,4 @@ + diff --git a/VenafiPS/VenafiPS.psd1 b/VenafiPS/VenafiPS.psd1 index 6e19aa1a..d41d8dd1 100644 --- a/VenafiPS/VenafiPS.psd1 +++ b/VenafiPS/VenafiPS.psd1 @@ -3,7 +3,7 @@ # # Generated by: Venafi # -# Generated on: 06/29/2022 +# Generated on: 07/13/2022 # @{ @@ -12,7 +12,7 @@ RootModule = 'VenafiPS.psm1' # Version number of this module. -ModuleVersion = '4.6.0' +ModuleVersion = '4.6.1' # Supported PSEditions # CompatiblePSEditions = @() diff --git a/docs/changelog.md b/docs/changelog.md index 6c7416cb..6589ff51 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,3 +1,10 @@ +## 4.6.1 +- Add validation and error handling in `Get-VenafiTeam` for invalid IDs, [#126](https://github.com/Venafi/VenafiPS/issues/126) +- Add messaging and error handling in `Get-VenafiTeam` for local groups, [#127](https://github.com/Venafi/VenafiPS/issues/127) +- Add support for PrefixedName identity format in `Test-TppIdentity` and `Get-VenafiIdentity`, [#128](https://github.com/Venafi/VenafiPS/issues/128) +- Fix Split-Path failing in TppObject class, and other functions where applicable, when PowerShell reserved characters are used in the object name, [#129](https://github.com/Venafi/VenafiPS/issues/129) + + ## 4.6.0 - Add `Import-VaasCertificate`. Export from TPP right into VaaS (and vice versa). - `Import-TppCertificate` updates @@ -404,3 +411,4 @@ + diff --git a/docs/functions/Get-VenafiIdentity.md b/docs/functions/Get-VenafiIdentity.md index cde4b513..ed00c2c7 100644 --- a/docs/functions/Get-VenafiIdentity.md +++ b/docs/functions/Get-VenafiIdentity.md @@ -89,7 +89,7 @@ For VaaS this can either be the user id (guid) or username which is the email ad ```yaml Type: String Parameter Sets: Id -Aliases: Guid +Aliases: Guid, FullName Required: True Position: Named diff --git a/docs/functions/Get-VenafiTeam.md b/docs/functions/Get-VenafiTeam.md index bc27a024..c282740d 100644 --- a/docs/functions/Get-VenafiTeam.md +++ b/docs/functions/Get-VenafiTeam.md @@ -60,7 +60,7 @@ You can find the group ID with Find-TppIdentity. ```yaml Type: String Parameter Sets: ID -Aliases: PrefixedUniversal, Guid +Aliases: PrefixedUniversal, Guid, PrefixedName Required: True Position: Named diff --git a/docs/functions/Test-TppIdentity.md b/docs/functions/Test-TppIdentity.md index 50666c2b..793cc29c 100644 --- a/docs/functions/Test-TppIdentity.md +++ b/docs/functions/Test-TppIdentity.md @@ -36,7 +36,7 @@ Retrieve existence for only one identity, returns boolean ```yaml Type: String[] Parameter Sets: (All) -Aliases: PrefixedUniversal, Contact, IdentityId +Aliases: PrefixedUniversal, Contact, IdentityId, FullName Required: True Position: 1