Skip to content

Commit

Permalink
Update manifest and docs to 6.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gdbarron committed Nov 17, 2023
1 parent f1580fc commit eb777e7
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 6.0.1
- Update `Export-VdcCertificate` to return just certificate if private key isn't available for supporting formats
- Add support for PKCS #8 in `Import-VcCertificate -Data`, by file will come in a future release


## 6.0.0
This is a major release. Although every attempt has been made to be backwards compatible, **existing scripts will likely require some updates**. Please read the full release notes.

Expand Down Expand Up @@ -596,5 +601,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: Venafi
#
# Generated on: 11/16/2023
# Generated on: 11/17/2023
#

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

# Version number of this module.
ModuleVersion = '6.0.0'
ModuleVersion = '6.0.1'

# 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.0.1
- Update `Export-VdcCertificate` to return just certificate if private key isn't available for supporting formats
- Add support for PKCS #8 in `Import-VcCertificate -Data`, by file will come in a future release


## 6.0.0
This is a major release. Although every attempt has been made to be backwards compatible, **existing scripts will likely require some updates**. Please read the full release notes.

Expand Down Expand Up @@ -596,5 +601,6 @@ This is a major release. Although every attempt has been made to be backwards c






34 changes: 28 additions & 6 deletions docs/functions/Import-VcCertificate.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ Import-VcCertificate -Path <String> -PrivateKeyPassword <PSObject> [-ThrottleLim
[-VenafiSession <PSObject>] [<CommonParameters>]
```

### Pkcs8
```
Import-VcCertificate -Data <String> [-Pkcs8] -PrivateKeyPassword <PSObject> [-ThrottleLimit <Int32>]
[-VenafiSession <PSObject>] [<CommonParameters>]
```

### Pkcs12
```
Import-VcCertificate -Data <String> [-Pkcs12] -PrivateKeyPassword <PSObject> [-ThrottleLimit <Int32>]
Expand All @@ -19,7 +25,7 @@ Import-VcCertificate -Data <String> [-Pkcs12] -PrivateKeyPassword <PSObject> [-T

## DESCRIPTION
Import one or more certificates and their private keys.
Currently PKCS12 (.pfx or .p12) is supported.
Currently PKCS #8 and PKCS #12 (.pfx or .p12) are supported.

## EXAMPLES

Expand Down Expand Up @@ -72,7 +78,7 @@ Provide either this or -Path.
```yaml
Type: String
Parameter Sets: Pkcs12
Parameter Sets: Pkcs8, Pkcs12
Aliases: CertificateData

Required: True
Expand All @@ -83,7 +89,7 @@ Accept wildcard characters: False
```
### -Pkcs12
{{ Fill Pkcs12 Description }}
Provided -Data is in PKCS #12 format
```yaml
Type: SwitchParameter
Expand All @@ -97,8 +103,23 @@ Accept pipeline input: False
Accept wildcard characters: False
```
### -Pkcs8
Provided -Data is in PKCS #8 format
```yaml
Type: SwitchParameter
Parameter Sets: Pkcs8
Aliases:

Required: True
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
```
### -PrivateKeyPassword
{{ Fill PrivateKeyPassword Description }}
Password the private key was encrypted with
```yaml
Type: PSObject
Expand All @@ -113,8 +134,9 @@ Accept wildcard characters: False
```
### -ThrottleLimit
Limit the number of threads when running in parallel; the default is 100.
Limit the number of threads when running in parallel; the default is 10.
Applicable to PS v7+ only.
100 keystores will be imported at a time so it's less important to have a very high throttle limit.
```yaml
Type: Int32
Expand All @@ -123,7 +145,7 @@ Aliases:

Required: False
Position: Named
Default value: 100
Default value: 10
Accept pipeline input: False
Accept wildcard characters: False
```
Expand Down

0 comments on commit eb777e7

Please sign in to comment.