Skip to content

Commit d9fbaa7

Browse files
authored
Release note 1.29.1 (#937)
* Release note 1.29.1 * Release note 1.29.1: update breaking changes
1 parent 33e5100 commit d9fbaa7

File tree

2 files changed

+35
-4
lines changed

2 files changed

+35
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# Azure Management Libraries for .NET
55

6-
This README is based on the released stable version (1.29.0). If you are looking for other releases, see [More Information](#more-information)
6+
This README is based on the released stable version (1.29.1). If you are looking for other releases, see [More Information](#more-information)
77

88
The Azure Management Libraries for .NET is a higher-level, object-oriented API for managing Azure resources. Libraries are built on the lower-level, request-response style [auto generated clients](https://github.com/Azure/azure-sdk-for-net/tree/AutoRest) and can run side-by-side with [auto generated clients](https://github.com/Azure/azure-sdk-for-net/tree/AutoRest).
99

@@ -23,7 +23,7 @@ The Azure Management Libraries for .NET is a higher-level, object-oriented API f
2323
* [More information](#more-information)
2424

2525
## Feature Availability and Road Map
26-
:triangular_flag_on_post: *as of Version 1.29.0*
26+
:triangular_flag_on_post: *as of Version 1.29.1*
2727

2828
<table>
2929
<tr>
@@ -570,7 +570,7 @@ var database = sqlServer.Databases.Define(databaseName)
570570

571571
### Latest stable release
572572

573-
**1.29.0** release builds are available on NuGet:
573+
**1.29.1** release builds are available on NuGet:
574574

575575
|Azure Management Library | Package name | Stable |
576576
|---------------------------------------------|-----------------------------------------------------|------------------------|
@@ -609,7 +609,7 @@ var database = sqlServer.Databases.Define(databaseName)
609609

610610
## Upgrading from older versions
611611

612-
If you are migrating your code from 1.28.1 to 1.29.0, you can use these release notes for [preparing your code for 1.29.0 from 1.28.1](./notes/prepare-for-1.29.0.md).
612+
If you are migrating your code from 1.29.0 to 1.29.1, you can use these release notes for [preparing your code for 1.29.1 from 1.29.0](./notes/prepare-for-1.29.1.md).
613613

614614
In general, Azure Libraries for .Net follow [semantic versioning](http://semver.org/), so user code should continue working in a compatible fashion between minor versions of the same major version release train, with the following caveats:
615615

@@ -644,6 +644,7 @@ If you would like to become an active contributor to this project please follow
644644

645645
| Version | SHA1 | Remarks |
646646
|-------------------|-------------------------------------------------------------------------------------------|-------------------------------------------------------|
647+
| 1.29.1 | [1.29.1](https://github.com/Azure/azure-libraries-for-net/releases/tag/Fluent-v1.29.1) | Tagged release for 1.29.1 version of Azure management libraries |
647648
| 1.29 | [1.29](https://github.com/Azure/azure-libraries-for-net/releases/tag/Fluent-v1.29.0) | Tagged release for 1.29 version of Azure management libraries |
648649
| 1.28.1 | [1.28.1](https://github.com/Azure/azure-libraries-for-net/releases/tag/Fluent-v1.28.1) | Tagged release for 1.28.1 version of Azure management libraries |
649650
| 1.28 | [1.28](https://github.com/Azure/azure-libraries-for-net/releases/tag/Fluent-v1.28.0) | Tagged release for 1.28 version of Azure management libraries |

notes/prepare-for-1.29.1.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Prepare for Azure Management Libraries for .NET 1.29.1 #
2+
3+
Steps to migrate code that uses Azure Management Libraries for .NET from 1.29 to 1.29.1 ...
4+
5+
> If this note missed any breaking changes, please open a pull request.
6+
7+
V1.29.1 is backwards compatible with V1.29 in the APIs intended for public use that reached the general availability (stable) stage in V1.x.
8+
9+
Some breaking changes were introduced in APIs that were still in Beta in V1.29, as indicated by their inheritance from the `IBeta` interface.
10+
11+
## Breaking changes
12+
13+
The following methods and/or types have been changed in V1.29.1 compared to the previous release (V1.29):
14+
15+
<table>
16+
<tr>
17+
<th align=left>Area/Model</th>
18+
<th align=left>In V1.29</th>
19+
<th align=left>In V1.29.1</th>
20+
<th align=left>Remarks</th>
21+
<th align=left>Ref</th>
22+
</tr>
23+
<tr>
24+
<td align=left>ProvisioningState</td>
25+
<td align=left>string ProvisioningState</td>
26+
<td align=left>ProvisioningState ProvisioningState</td>
27+
<td align=left></td>
28+
<td align=left><a href="https://github.com/Azure/azure-libraries-for-net/pull/927/commits/14adb5670babdbb2e35e39559fb89a206890f84e">PR #927</th>
29+
</tr>
30+
</table>

0 commit comments

Comments
 (0)