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

[PostgreSQL] SDK upgrade for PostgreSQL flexible server to version 2022-12-01 #33843

Merged
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
5 changes: 5 additions & 0 deletions eng/Packages.Data.props
Original file line number Diff line number Diff line change
Expand Up @@ -186,11 +186,15 @@
<PackageReference Update="Azure.Messaging.ServiceBus" Version="7.11.1" />
<PackageReference Update="Azure.ResourceManager.Compute" Version="1.0.0" />
<PackageReference Update="Azure.ResourceManager.CognitiveServices" Version="1.1.0" />
<PackageReference Update="Azure.ResourceManager.KeyVault" Version="1.0.0" />
<PackageReference Update="Azure.ResourceManager.ManagedServiceIdentities" Version="1.0.0" />
<PackageReference Update="Azure.ResourceManager.Network" Version="1.1.0" />
<PackageReference Update="Azure.ResourceManager.OperationalInsights" Version="1.0.0" />
<PackageReference Update="Azure.ResourceManager.PrivateDns" Version="1.0.0" />
<PackageReference Update="Azure.ResourceManager.Resources" Version="1.3.1" />
<PackageReference Update="Azure.ResourceManager.Storage" Version="1.1.0" />
<PackageReference Update="Azure.Search.Documents" Version="11.2.0" />
<PackageReference Update="Azure.Security.KeyVault.Keys" Version="4.4.0" />
<PackageReference Update="Azure.Security.KeyVault.Secrets" Version="4.2.0-beta.4" />
<PackageReference Update="Azure.Storage.Blobs" Version="12.13.1" />
<PackageReference Update="Azure.Storage.Files.DataLake" Version="12.8.0" />
Expand Down Expand Up @@ -237,6 +241,7 @@
<PackageReference Update="Microsoft.Extensions.Configuration" Version="5.0.0" />
<PackageReference Update="Microsoft.Extensions.DependencyInjection" Version="2.1.1" />
<PackageReference Update="Microsoft.Extensions.PlatformAbstractions" Version="1.1.0" />
<PackageReference Update="Microsoft.Graph" Version="4.52.0" />
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="17.0.0" />
<PackageReference Update="Microsoft.NET.Sdk.Functions" Version="3.0.12" />
<PackageReference Update="Microsoft.Rest.ClientRuntime.Azure.Authentication" Version="[2.4.0]" />
Expand Down
17 changes: 11 additions & 6 deletions sdk/postgresql/Azure.ResourceManager.PostgreSql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
# Release History

## 1.1.0-beta.1 (Unreleased)
## 1.1.0 (2023-02-02)

### Features Added

### Breaking Changes
This release uses GA api version 2022-12-01 for PostgreSQL flexible server.

### Bugs Fixed
### Features Added

### Other Changes
- Data encryption
- User managed identities
- Active Directory authentication
- Geo-Restore
- Read Replicas
- Same Zone HA
- Server backups
- Major version upgrade

## 1.0.0 (2022-09-05)

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.1.0-beta.1</Version>
<!--The ApiCompatVersion is managed automatically and should not generally be modified manually.-->
<ApiCompatVersion>1.0.0</ApiCompatVersion>
<Version>1.1.0</Version>
<PackageId>Azure.ResourceManager.PostgreSql</PackageId>
<Description>Microsoft Azure Resource Manager client SDK for Azure resource provider Microsoft.DBforPostgreSQL.</Description>
<PackageTags>azure;management;arm;resource manager;postgresql</PackageTags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,13 @@ public PostgreSqlFlexibleServerVersion(string value)
_value = value ?? throw new ArgumentNullException(nameof(value));
}

private const string Ver14Value = "14";
private const string Ver13Value = "13";
private const string Ver12Value = "12";
private const string Ver11Value = "11";

/// <summary> 14. </summary>
public static PostgreSqlFlexibleServerVersion Ver14 { get; } = new PostgreSqlFlexibleServerVersion(Ver14Value);
/// <summary> 13. </summary>
public static PostgreSqlFlexibleServerVersion Ver13 { get; } = new PostgreSqlFlexibleServerVersion(Ver13Value);
/// <summary> 12. </summary>
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading