Skip to content

Commit

Permalink
Update manifest and docs to 6.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
gdbarron committed Jan 22, 2025
1 parent 1780ad4 commit 6f9e670
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 20 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 6.7.3
- Add ability to import all certificates from a folder with `Import-VcCertificate -Path`
- Fix parameter set issue where `-PrivateKeyPassword` could not be provided with `Import-VcCertificate -Path`
- Fix [#315](https://github.com/Venafi/VenafiPS/issues/315), appending certificate id to exported file name

## 6.7.2
- Fix API parameter in `Import-VdcCertificate`, [#316](https://github.com/Venafi/VenafiPS/issues/316)
- Fix Invalid JSON response in `Find-VdcObject`, [#318](https://github.com/Venafi/VenafiPS/issues/318)
Expand Down Expand Up @@ -778,5 +783,6 @@ This is a major release. Although every attempt has been made to be backwards c






4 changes: 2 additions & 2 deletions VenafiPS/VenafiPS.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Greg Brownstein
#
# Generated on: 01/14/2025
# Generated on: 01/22/2025
#

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

# Version number of this module.
ModuleVersion = '6.7.2'
ModuleVersion = '6.7.3'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
6 changes: 6 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 6.7.3
- Add ability to import all certificates from a folder with `Import-VcCertificate -Path`
- Fix parameter set issue where `-PrivateKeyPassword` could not be provided with `Import-VcCertificate -Path`
- Fix [#315](https://github.com/Venafi/VenafiPS/issues/315), appending certificate id to exported file name

## 6.7.2
- Fix API parameter in `Import-VdcCertificate`, [#316](https://github.com/Venafi/VenafiPS/issues/316)
- Fix Invalid JSON response in `Find-VdcObject`, [#318](https://github.com/Venafi/VenafiPS/issues/318)
Expand Down Expand Up @@ -778,5 +783,6 @@ This is a major release. Although every attempt has been made to be backwards c






36 changes: 18 additions & 18 deletions docs/functions/Import-VcCertificate.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

### ByFile (Default)
```
Import-VcCertificate -FilePath <String> [-ThrottleLimit <Int32>] [-Force] [-VenafiSession <PSObject>]
[-ProgressAction <ActionPreference>] [<CommonParameters>]
Import-VcCertificate -Path <String> -PrivateKeyPassword <PSObject> [-ThrottleLimit <Int32>] [-Force]
[-VenafiSession <PSObject>] [-ProgressAction <ActionPreference>] [<CommonParameters>]
```

### Format
Expand Down Expand Up @@ -59,21 +59,6 @@ Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
### -FilePath
{{ Fill FilePath Description }}
```yaml
Type: String
Parameter Sets: ByFile
Aliases: FullName, CertificatePath

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```
### -Force
{{ Fill Force Description }}
Expand Down Expand Up @@ -135,12 +120,27 @@ Accept pipeline input: False
Accept wildcard characters: False
```
### -Path
{{ Fill Path Description }}
```yaml
Type: String
Parameter Sets: ByFile
Aliases: FullName, CertificatePath, FilePath

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -PrivateKeyPassword
{{ Fill PrivateKeyPassword Description }}
```yaml
Type: PSObject
Parameter Sets: PKCS8, PKCS12
Parameter Sets: ByFile, PKCS8, PKCS12
Aliases:

Required: True
Expand Down

0 comments on commit 6f9e670

Please sign in to comment.