Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Key Vault package information for release #7958

Merged
merged 4 commits into from Oct 7, 2019
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -1,6 +1,6 @@
# Release History

## 4.0.0-preview.4
## 4.0.0-preview.5 (2019-10-07)

### Breaking changes

Expand Down
Expand Up @@ -7,10 +7,13 @@
<PackageTags>Microsoft Azure Key Vault Certificates</PackageTags>
<PackageReleaseNotes>
<![CDATA[
Initial release of the Azure.Security.KeyVault.Certificates enabling:
- Management of Key Vault certififiates
- Management of Certificate Issuers
- Management of Certificate Contacts
Refactored several classes based on feedback, including:
* CertificateBase is now CertificateProperties.
* Certificate contains a Properties property of type CertificateProperties.
* IssuerBase is now IssuerProperties.
* Issuer contains a Properties property of type IssuerProperties.

See https://github.com/Azure/azure-sdk-for-net/tree/Azure.Security.KeyVault.Certificates_4.0.0-preview.5/sdk/keyvault/Azure.Security.KeyVault.Certificates/ChangeLog.md for more details.
]]>
</PackageReleaseNotes>

Expand Down
2 changes: 1 addition & 1 deletion sdk/keyvault/Azure.Security.KeyVault.Keys/ChangeLog.md
@@ -1,6 +1,6 @@
# Release History

## 4.0.0-preview.4
## 4.0.0-preview.5 (2019-10-07)

### Breaking changes

Expand Down
Expand Up @@ -7,7 +7,13 @@
<PackageTags>Microsoft Azure Key Vault Keys</PackageTags>
<PackageReleaseNotes>
<![CDATA[
Minor updates and bug fixes
Refactored several classes based on feedback, including:
* KeyBase is now KeyProperties.
* Key contains a Properties property of type KeyProperties.
* Enumeration members have been renamed to reflect general naming guidelines consistent with .NET.
* Enumerations have been changed to structures to allow additions by the server to support new algorithms.

See https://github.com/Azure/azure-sdk-for-net/tree/Azure.Security.KeyVault.Certificates_4.0.0-preview.5/sdk/keyvault/Azure.Security.KeyVault.Keys/ChangeLog.md for more details.
]]>
</PackageReleaseNotes>

Expand Down
5 changes: 4 additions & 1 deletion sdk/keyvault/Azure.Security.KeyVault.Keys/src/Key.cs
Expand Up @@ -38,8 +38,11 @@ public Key(string name)
public string Name => Properties.Name;

/// <summary>
/// As of http://tools.ietf.org/html/draft-ietf-jose-json-web-key-18
/// The cryptographic keys, the key type, and operations you can perform using the key.
/// </summary>
/// <remarks>
/// See http://tools.ietf.org/html/draft-ietf-jose-json-web-key-18 for specifications of a JSON web key.
/// </remarks>
public JsonWebKey KeyMaterial { get; set; }

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion sdk/keyvault/Azure.Security.KeyVault.Secrets/ChangeLog.md
@@ -1,6 +1,6 @@
# Release History

## 4.0.0-preview.4
## 4.0.0-preview.5 (2019-10-07)

### Breaking changes

Expand Down
Expand Up @@ -7,7 +7,13 @@
<PackageTags>Microsoft Azure Key Vault Secrets</PackageTags>
<PackageReleaseNotes>
<![CDATA[
Minor updates and bug fixes
Refactored several classes based on feedback, including:
* SecretBase is now SecretProperties.
* Secret contains a Properties property of type SecretProperties.
* Enumeration members have been renamed to reflect general naming guidelines consistent with .NET.
* Enumerations have been changed to structures to allow additions by the server to support new algorithms.

See https://github.com/Azure/azure-sdk-for-net/tree/Azure.Security.KeyVault.Certificates_4.0.0-preview.5/sdk/keyvault/Azure.Security.KeyVault.Secrets/ChangeLog.md for more details.
]]>
</PackageReleaseNotes>

Expand Down