Skip to content

Commit

Permalink
Update manifest and docs to 4.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
gdbarron committed Apr 22, 2022
1 parent 6ec686e commit 21fc5cf
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 4.2.3
- Fix certain aliases not being exported

## 4.2.2
- Add authentication options, VaaS key or TPP token, in addition to VenafiSession to be provided directly to any function that supports that platform. This better enables devops scenarios so 1 call can be made for a function as opposed to executing New-VenafiSession first. Note, if using this with TPP, an environment variable named TppServer with the url of the server must be set.
- Add `Test-VenafiSession` private function to add support for the new authentication methods as VenafiSession.Validate isn't used. `Invoke-VenafiRestMethod` has been updated to accept these new authentication methods as well.
Expand Down Expand Up @@ -348,3 +351,4 @@




8 changes: 5 additions & 3 deletions VenafiPS/VenafiPS.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Venafi
#
# Generated on: 04/12/2022
# Generated on: 04/22/2022
#

@{
Expand All @@ -12,7 +12,7 @@
RootModule = 'VenafiPS.psm1'

# Version number of this module.
ModuleVersion = '4.2.2'
ModuleVersion = '4.2.3'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -109,7 +109,9 @@ CmdletsToExport = @()
VariablesToExport = 'VenafiSession'

# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
AliasesToExport = 'fto', 'itcr', 'Find-TppCertificate', 'Get-TppIdentity', 'Read-TppLog', 'Invoke-TppRestMethod', 'Get-TppCertificate', 'Get-TppCertificateDetail'
AliasesToExport = 'fto', 'itcr', 'Find-TppCertificate', 'Get-TppIdentity', 'Read-TppLog',
'Invoke-TppRestMethod', 'Get-TppCertificate',
'Get-TppCertificateDetail'

# DSC resources to export from this module
# DscResourcesToExport = @()
Expand Down
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 4.2.3
- Fix certain aliases not being exported

## 4.2.2
- Add authentication options, VaaS key or TPP token, in addition to VenafiSession to be provided directly to any function that supports that platform. This better enables devops scenarios so 1 call can be made for a function as opposed to executing New-VenafiSession first. Note, if using this with TPP, an environment variable named TppServer with the url of the server must be set.
- Add `Test-VenafiSession` private function to add support for the new authentication methods as VenafiSession.Validate isn't used. `Invoke-VenafiRestMethod` has been updated to accept these new authentication methods as well.
Expand Down Expand Up @@ -348,3 +351,4 @@




0 comments on commit 21fc5cf

Please sign in to comment.