Skip to content

Commit

Permalink
Release 1.11 notes. (#362)
Browse files Browse the repository at this point in the history
  • Loading branch information
hovsepm authored Jun 15, 2018
1 parent 6450e96 commit b8db526
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 5 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Azure Management Libraries for .NET

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

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

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

## Feature Availability and Road Map
:triangular_flag_on_post: *as of Version 1.10*
:triangular_flag_on_post: *as of Version 1.11*

<table>
<tr>
Expand Down Expand Up @@ -572,7 +572,7 @@ var database = sqlServer.Databases.Define(databaseName)

### Latest stable release

**1.10** release builds are available on NuGet:
**1.11** release builds are available on NuGet:

|Azure Management Library | Package name | Stable |
|---------------------------------------------|-----------------------------------------------------|------------------------|
Expand Down Expand Up @@ -611,7 +611,7 @@ var database = sqlServer.Databases.Define(databaseName)

## Upgrading from older versions

If you are migrating your code from 1.9.x to 1.10.x, you can use these release notes for [preparing your code for 1.10 from 1.9](./notes/prepare-for-1.10.md).
If you are migrating your code from 1.10.x to 1.11.x, you can use these release notes for [preparing your code for 1.11 from 1.10](./notes/prepare-for-1.11.md).

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:

Expand Down Expand Up @@ -646,7 +646,8 @@ If you would like to become an active contributor to this project please follow

| Version | SHA1 | Remarks |
|-------------------|-------------------------------------------------------------------------------------------|-------------------------------------------------------|
| 1.10 | [1.10](https://github.com/Azure/azure-libraries-for-net/releases/tag/Fluent-v1.10) | Tagged release for 1.10 version of Azure management libraries |
| 1.11 | [1.11](https://github.com/Azure/azure-libraries-for-net/releases/tag/Fluent-v1.11) | Tagged release for 1.11 version of Azure management libraries |
| 1.10 | [1.10](https://github.com/Azure/azure-libraries-for-net/releases/tag/Fluent-v1.10) | Tagged release for 1.10 version of Azure management libraries |
| 1.9 | [1.9](https://github.com/Azure/azure-libraries-for-net/releases/tag/Fluent-v1.9) | Tagged release for 1.9 version of Azure management libraries |
| 1.8 | [1.8](https://github.com/Azure/azure-libraries-for-net/releases/tag/Fluent-v1.8) | Tagged release for 1.8 version of Azure management libraries |
| 1.7 | [1.7](https://github.com/Azure/azure-libraries-for-net/releases/tag/Fluent-v1.7) | Tagged release for 1.7 version of Azure management libraries |
Expand Down
33 changes: 33 additions & 0 deletions notes/prepare-for-1.11.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Prepare for Azure Management Libraries for .NET 1.11 #

Steps to migrate code that uses Azure Management Libraries for .NET from 1.10 to 1.11 ...

> If this note missed any breaking changes, please open a pull request.

V1.11 is backwards compatible with V1.10 in the APIs intended for public use that reached the general availability (stable) stage in V1.x with a few exceptions in the SQL management library (though these changes will have minimal impact on the developer).

Some breaking changes were introduced in APIs that were still in Beta in V1.10, as indicated by their inheritance from the `IBeta` interface.


## Breaking changes

The following methods and/or types have been changed in V1.11 compared to the previous release (V1.10):

<table>
<tr>
<th align=left>Area/Model</th>
<th align=left>In V1.10</th>
<th align=left>In V1.11</th>
<th align=left>Remarks</th>
<th align=left>Ref</th>
</tr>
<tr>
<td><code>ContainerServiceVMSizeTypes</code></td>
<td><code>StandardA0, StandardB1MS, StandardB1S</code></td>
<td><code>N/A</code></td>
<td>These container service VM size types are removed but since it's an expandable enum these values can be manually instantiated.</code></td>
<td><a href="https://github.com/Azure/azure-libraries-for-net/pull/335">PR #335</a></td>
</tr>
</table>

0 comments on commit b8db526

Please sign in to comment.