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

Prepare extensions release #21077

Merged
merged 2 commits into from
May 14, 2021
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,10 @@
# Release History

## 1.1.0-beta.1 (Unreleased)
## 1.1.0 (2021-05-14)

### Changes

- Dependency versions updated.

### Added

Expand All @@ -25,6 +29,6 @@ An overload of `AddAzureKeyVault` that takes an `AzureKeyVaultConfigurationOptio

- Package renamed to Azure.Extensions.AspNetCore.Configuration.Secrets

## 1.0.0-preview.1 (2020)
## 1.0.0-preview.1 (2020-03-02)

- Initial preview of the Azure.Extensions.Configuration.Secrets library
- Initial preview of the Azure.Extensions.Configuration.Secrets library
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@
<Description>Azure Key Vault configuration provider implementation for Microsoft.Extensions.Configuration.</Description>
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);azure;keyvault</PackageTags>
<Version>1.1.0-beta.1</Version>
<Version>1.1.0</Version>
<ApiCompatVersion>1.0.2</ApiCompatVersion>
<NoWarn>$(NoWarn);AZC0001;AZC0102</NoWarn>
<IsExtensionClientLibrary>true</IsExtensionClientLibrary>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Azure.Core" />
<PackageReference Include="Azure.Security.KeyVault.Secrets" />
<PackageReference Include="Microsoft.Extensions.Configuration" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# Release History

## 1.3.0-beta.1 (Unreleased)
## 1.2.1 (2021-05-14)

### Changes

- Dependency versions updated.

#### Key Bug Fixes

- Fixed a bug where referencing an existing empty blob resulted in a failure.
Expand Down Expand Up @@ -34,6 +36,6 @@

- Package renamed to Azure.Extensions.AspNetCore.DataProtection.Blobs

## 1.0.0-preview.1 (2020)
## 1.0.0-preview.1 (2020-03-02)

- Initial preview of the Azure.AspNetCore.DataProtection.Blobs library
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
<Description>Microsoft Azure Blob storage support as key store (https://docs.microsoft.com/en-us/aspnet/core/security/data-protection/implementation/key-storage-providers).</Description>
<PackageTags>aspnetcore;dataprotection;azure;blob;key store</PackageTags>
<Version>1.3.0-beta.1</Version>
<Version>1.2.1</Version>
<ApiCompatVersion>1.2.0</ApiCompatVersion>
<IsExtensionClientLibrary>true</IsExtensionClientLibrary>
<NoWarn>$(NoWarn);AZC0102</NoWarn>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Azure.Core" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection" />
<PackageReference Include="Azure.Storage.Blobs" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Release History

## 1.1.0-beta.1 (Unreleased)
## 1.0.3 (2021-05-14)

### Changes

- Dependency versions updated.

## 1.0.2 (2020-09-01)

Expand All @@ -24,6 +27,6 @@
- Package renamed to Azure.Extensions.AspNetCore.DataProtection.Keys
- Default overload of ProtectKeysWithAzureKeyVault now takes a Uri to be consistent with other extension methods and KeyVault clients.

## 1.0.0-preview.1 (2020)
## 1.0.0-preview.1 (2020-03-02)

- Initial preview of the Azure.AspNetCore.DataProtection.Keys library
- Initial preview of the Azure.AspNetCore.DataProtection.Keys library
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
<PropertyGroup>
<Description>Microsoft Azure Key Vault key encryption support.</Description>
<PackageTags>aspnetcore;dataprotection;azure;keyvault</PackageTags>
<Version>1.1.0-beta.1</Version>
<Version>1.0.3</Version>
<ApiCompatVersion>1.0.2</ApiCompatVersion>
<IsExtensionClientLibrary>true</IsExtensionClientLibrary>
<NoWarn>$(NoWarn);AZC0102</NoWarn>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Azure.Core" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection" />
<PackageReference Include="Azure.Security.KeyVault.Keys" />
</ItemGroup>
Expand Down