Skip to content

Commit af50c9a

Browse files
Readme for release 1.41.0 (#1383)
1 parent 2afe156 commit af50c9a

File tree

2 files changed

+54
-8
lines changed

2 files changed

+54
-8
lines changed

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ New Management libraries can be identified by namespaces that start with `azure-
1010

1111
# Azure Management Libraries for Java
1212

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

1515
The Azure Management Libraries for Java is a higher-level, object-oriented API for *managing* Azure resources, that is optimized for ease of use, succinctness and consistency.
1616

@@ -32,7 +32,7 @@ If you are looking for Java client libraries for *consuming* (rather than *manag
3232
* [More information](#more-information)
3333

3434
## Feature Availability and Road Map
35-
:triangular_flag_on_post: *as of Version 1.40.0*
35+
:triangular_flag_on_post: *as of Version 1.41.0*
3636

3737
<table>
3838
<tr>
@@ -624,13 +624,13 @@ SqlDatabase database = sqlServer.databases().define("myNewDatabase")
624624

625625
### Use single library
626626

627-
For instance, if you only need azure-mgmt-appservice library from 1.40.0, and wish to limit the dependencies, using following dependency instead in POM.
627+
For instance, if you only need azure-mgmt-appservice library from 1.41.0, and wish to limit the dependencies, using following dependency instead in POM.
628628

629629
```xml
630630
<dependency>
631631
<groupId>com.microsoft.azure</groupId>
632632
<artifactId>azure-mgmt-appservice</artifactId>
633-
<version>1.40.0</version>
633+
<version>1.41.0</version>
634634
</dependency>
635635
<dependency>
636636
<groupId>com.microsoft.azure</groupId>
@@ -661,13 +661,13 @@ WebApp webApp = appServiceClient.webApps()
661661

662662
### Latest stable release
663663

664-
If you are using released builds from 1.40.0, add the following to your POM file:
664+
If you are using released builds from 1.41.0, add the following to your POM file:
665665

666666
```xml
667667
<dependency>
668668
<groupId>com.microsoft.azure</groupId>
669669
<artifactId>azure</artifactId>
670-
<version>1.40.0</version>
670+
<version>1.41.0</version>
671671
</dependency>
672672
```
673673

@@ -694,7 +694,7 @@ If you are using snapshots builds for this repo, add the following repository an
694694
<dependency>
695695
<groupId>com.microsoft.azure</groupId>
696696
<artifactId>azure</artifactId>
697-
<version>1.40.1-SNAPSHOT</version>
697+
<version>1.41.1-SNAPSHOT</version>
698698
</dependency>
699699
```
700700

@@ -706,7 +706,7 @@ If you are using snapshots builds for this repo, add the following repository an
706706

707707
## Upgrading from older versions
708708

709-
If you are migrating your code from 1.39.1 to 1.40.0, you can use these release notes for [preparing your code for 1.40.0 from 1.39.1](./notes/prepare-for-1.40.0.md).
709+
If you are migrating your code from 1.40.0 to 1.41.0, you can use these release notes for [preparing your code for 1.41.0 from 1.40.0](./notes/prepare-for-1.41.0.md).
710710

711711
In general, Azure Libraries for Java 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:
712712

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

740740
| Version | SHA1 | Remarks |
741741
|-------------------|-------------------------------------------------------------------------------------------|-------------------------------------------------------|
742+
| 1.41.0 | [1.41.0](https://github.com/Azure/azure-libraries-for-java/tree/v1.41.0) | Tagged release for 1.41.0 version of Azure management libraries |
742743
| 1.40.0 | [1.40.0](https://github.com/Azure/azure-libraries-for-java/tree/v1.40.0) | Tagged release for 1.40.0 version of Azure management libraries |
743744
| 1.39.1 | [1.39.1](https://github.com/Azure/azure-libraries-for-java/tree/v1.39.1) | Tagged release for 1.39.1 version of Azure management libraries |
744745
| 1.39.0 | [1.39.0](https://github.com/Azure/azure-libraries-for-java/tree/v1.39.0) | Tagged release for 1.39.0 version of Azure management libraries |

notes/prepare-for-1.41.0.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Prepare for Azure Management Libraries for Java 1.41.0 #
2+
3+
Steps to migrate code that uses Azure Management Libraries for Java from 1.40 to 1.41 ...
4+
5+
> If this note missed any breaking changes, please open a pull request.
6+
7+
V1.41 is backwards compatible with V1.40 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 because update of the API service spec.
10+
11+
12+
## Breaking changes
13+
14+
The following methods and/or types have been changed in V1.41 compared to the previous release (V1.40):
15+
16+
<table>
17+
<tr>
18+
<th align=left>Area/Model</th>
19+
<th align=left>In V1.40</th>
20+
<th align=left>In V1.41</th>
21+
<th align=left>Remarks</th>
22+
<th align=left>Ref</th>
23+
</tr>
24+
<tr>
25+
<td><code>com.microsoft.azure.management.containerinstance.ContainerGroups</code></td>
26+
<td><code>.listOperations()</code></td>
27+
<td>Return type changed to <code>PagedList&lt;Operation&gt;</code></td>
28+
<td></td>
29+
<td><a href="https://github.com/Azure/azure-libraries-for-java/pull/1381">#1381</a></td>
30+
</tr>
31+
<tr>
32+
<td><code>com.microsoft.azure.management.containerinstance.ContainerGroups</code></td>
33+
<td><code>.listCachedImages()</code></td>
34+
<td>Return type changed to <code>PagedList&lt;CachedImages&gt;</code></td>
35+
<td></td>
36+
<td><a href="https://github.com/Azure/azure-libraries-for-java/pull/1381">#1381</a></td>
37+
</tr>
38+
<tr>
39+
<td><code>com.microsoft.azure.management.containerinstance.ContainerGroups</code></td>
40+
<td><code>.listCapabilities()</code></td>
41+
<td>Return type changed to <code>PagedList&lt;Capabilities&gt;</code></td>
42+
<td></td>
43+
<td><a href="https://github.com/Azure/azure-libraries-for-java/pull/1381">#1381</a></td>
44+
</tr>
45+
</table>

0 commit comments

Comments
 (0)