Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 4.0.0-beta.1 (Unreleased)
## 4.0.0-beta.1 (2020-09-08)

### Added

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# Release History

## 4.2.0-beta.1 (Unreleased)
## 4.2.0-beta.1 (2020-09-08)

### Added

- Added `KeyVaultCertificateIdentifier` to parse certificate URIs.
- Added link to sample on `KeyVaultCertificate.Cer` to the private key.

## 4.1.0 (2020-08-11)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ public Uri SecretId
/// <summary>
/// Gets the CER formatted public X509 certificate.
/// </summary>
/// <remarks>
/// This property contains only the public key.
/// If you must retrieve the key pair including the private key instead of performing cryptographic operations in Azure Key Vault, see the sample:
/// <see href="https://docs.microsoft.com/samples/azure/azure-sdk-for-net/get-certificate-private-key"/>
/// </remarks>
public byte[] Cer { get; internal set; }

internal virtual void ReadProperty(JsonProperty prop)
Expand Down
2 changes: 1 addition & 1 deletion sdk/keyvault/Azure.Security.KeyVault.Keys/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 4.2.0-beta.1 (Unreleased)
## 4.2.0-beta.1 (2020-09-08)

### Added

Expand Down
2 changes: 1 addition & 1 deletion sdk/keyvault/Azure.Security.KeyVault.Secrets/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 4.2.0-beta.1 (Unreleased)
## 4.2.0-beta.1 (2020-09-08)

### Added

Expand Down