Skip to content

Commit 8755cca

Browse files
Readme update for release (#1267)
* auto * changelog
1 parent a87b08b commit 8755cca

File tree

2 files changed

+51
-4
lines changed

2 files changed

+51
-4
lines changed

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Documentation is available [on this page](https://aka.ms/azure-sdk-dotnet-mgmt)
88

99
# Azure Management Libraries for .NET
1010

11-
This README is based on the released stable version (1.37.1). If you are looking for other releases, see [More Information](#more-information)
11+
This README is based on the released stable version (1.38.0). If you are looking for other releases, see [More Information](#more-information)
1212

1313
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).
1414

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

3030
## Feature Availability and Road Map
31-
:triangular_flag_on_post: *as of Version 1.37.1*
31+
:triangular_flag_on_post: *as of Version 1.38.0*
3232

3333
<table>
3434
<tr>
@@ -599,7 +599,7 @@ IAzure azure = Azure.Configure().WithLogLevel(HttpLoggingDelegatingHandler.Level
599599

600600
### Latest stable release
601601

602-
**1.37.1** release builds are available on NuGet:
602+
**1.38.0** release builds are available on NuGet:
603603

604604
|Azure Management Library | Package name | Stable |
605605
|---------------------------------------------|-----------------------------------------------------|------------------------|
@@ -638,7 +638,7 @@ IAzure azure = Azure.Configure().WithLogLevel(HttpLoggingDelegatingHandler.Level
638638

639639
## Upgrading from older versions
640640

641-
If you are migrating your code from 1.37.0 to 1.37.1, you can use these release notes for [preparing your code for 1.37.1 from 1.37.0](./notes/prepare-for-1.37.1.md).
641+
If you are migrating your code from 1.37.1 to 1.38.0, you can use these release notes for [preparing your code for 1.38.0 from 1.37.1](./notes/prepare-for-1.38.0.md).
642642

643643
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:
644644

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

674674
| Version | SHA1 | Remarks |
675675
|-------------------|-------------------------------------------------------------------------------------------|-------------------------------------------------------|
676+
| 1.38 | [1.38](https://github.com/Azure/azure-libraries-for-net/releases/tag/Fluent-v1.38.0) | Tagged release for 1.38 version of Azure management libraries |
676677
| 1.37.1 | [1.37.1](https://github.com/Azure/azure-libraries-for-net/releases/tag/Fluent-v1.37.1) | Tagged release for 1.37.1 version of Azure management libraries |
677678
| 1.37 | [1.37](https://github.com/Azure/azure-libraries-for-net/releases/tag/Fluent-v1.37.0) | Tagged release for 1.37 version of Azure management libraries |
678679
| 1.36.1 | [1.36.1](https://github.com/Azure/azure-libraries-for-net/releases/tag/Fluent-v1.36.1) | Tagged release for 1.36.1 version of Azure management libraries |

notes/prepare-for-1.38.0.md

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Prepare for Azure Management Libraries for .NET 1.38 #
2+
3+
Steps to migrate code that uses Azure Management Libraries for .NET from 1.37.1 to 1.38 ...
4+
5+
> If this note missed any breaking changes, please open a pull request.
6+
7+
V1.38 is backwards compatible with V1.37.1 in the APIs intended for public use that reached the general availability (stable) stage in V1.x.
8+
9+
## Features
10+
11+
- Updating resource tag via `IAzure.GenericResources.Manager.Inner.Tags.UpdateAtScopeAsync`.
12+
13+
## Breaking changes
14+
15+
The following methods and/or types have been changed in V1.38 compared to the previous release (V1.37.1):
16+
17+
<table>
18+
<tr>
19+
<th align=left>Area/Model</th>
20+
<th align=left>In V1.37.1</th>
21+
<th align=left>In V1.38</th>
22+
<th align=left>Remarks</th>
23+
<th align=left>Ref</th>
24+
</tr>
25+
<tr>
26+
<td align=left>Resources</td>
27+
<td align=left>Type of property <code>IDeployment.ProvisioningState</code> is <code>string</code></td>
28+
<td align=left>Type is changed to <code>ProvisioningState</code></td>
29+
<td align=left></td>
30+
<td align=left><a href="https://github.com/Azure/azure-libraries-for-net/pull/1261">PR #1261</th>
31+
</tr>
32+
<tr>
33+
<td align=left>Resources</td>
34+
<td align=left>Property <code>IDeployment.Template</code></td>
35+
<td align=left>Removed, as it is not in response</td>
36+
<td align=left></td>
37+
<td align=left><a href="https://github.com/Azure/azure-libraries-for-net/pull/1261">PR #1261</th>
38+
</tr>
39+
<tr>
40+
<td align=left>Resources</td>
41+
<td align=left>Update flow of <code>IIGenericResource</code> uses PUT method</td>
42+
<td align=left>Changed to use PATCH method</td>
43+
<td align=left></td>
44+
<td align=left><a href="https://github.com/Azure/azure-libraries-for-net/pull/1261">PR #1261</th>
45+
</tr>
46+
</table>

0 commit comments

Comments
 (0)