-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2afe156
commit af50c9a
Showing
2 changed files
with
54 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Prepare for Azure Management Libraries for Java 1.41.0 # | ||
|
||
Steps to migrate code that uses Azure Management Libraries for Java from 1.40 to 1.41 ... | ||
|
||
> If this note missed any breaking changes, please open a pull request. | ||
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. | ||
|
||
Some breaking changes were introduced in APIs because update of the API service spec. | ||
|
||
|
||
## Breaking changes | ||
|
||
The following methods and/or types have been changed in V1.41 compared to the previous release (V1.40): | ||
|
||
<table> | ||
<tr> | ||
<th align=left>Area/Model</th> | ||
<th align=left>In V1.40</th> | ||
<th align=left>In V1.41</th> | ||
<th align=left>Remarks</th> | ||
<th align=left>Ref</th> | ||
</tr> | ||
<tr> | ||
<td><code>com.microsoft.azure.management.containerinstance.ContainerGroups</code></td> | ||
<td><code>.listOperations()</code></td> | ||
<td>Return type changed to <code>PagedList<Operation></code></td> | ||
<td></td> | ||
<td><a href="https://github.com/Azure/azure-libraries-for-java/pull/1381">#1381</a></td> | ||
</tr> | ||
<tr> | ||
<td><code>com.microsoft.azure.management.containerinstance.ContainerGroups</code></td> | ||
<td><code>.listCachedImages()</code></td> | ||
<td>Return type changed to <code>PagedList<CachedImages></code></td> | ||
<td></td> | ||
<td><a href="https://github.com/Azure/azure-libraries-for-java/pull/1381">#1381</a></td> | ||
</tr> | ||
<tr> | ||
<td><code>com.microsoft.azure.management.containerinstance.ContainerGroups</code></td> | ||
<td><code>.listCapabilities()</code></td> | ||
<td>Return type changed to <code>PagedList<Capabilities></code></td> | ||
<td></td> | ||
<td><a href="https://github.com/Azure/azure-libraries-for-java/pull/1381">#1381</a></td> | ||
</tr> | ||
</table> |