Release note 1.29.0 (#916)
This commit is contained in:
Родитель
44e9f7c557
Коммит
52c1619f49
13
README.md
13
README.md
|
@ -3,7 +3,7 @@
|
|||
|
||||
# Azure Management Libraries for Java
|
||||
|
||||
This README is based on the released stable version (1.28.0). If you are looking for other releases, see [More Information](#more-information).
|
||||
This README is based on the released stable version (1.29.0). If you are looking for other releases, see [More Information](#more-information).
|
||||
|
||||
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.
|
||||
|
||||
|
@ -25,7 +25,7 @@ If you are looking for Java client libraries for *consuming* (rather than *manag
|
|||
* [More information](#more-information)
|
||||
|
||||
## Feature Availability and Road Map
|
||||
:triangular_flag_on_post: *as of Version 1.28.0*
|
||||
:triangular_flag_on_post: *as of Version 1.29.0*
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
|
@ -607,13 +607,13 @@ SqlDatabase database = sqlServer.databases().define("myNewDatabase")
|
|||
|
||||
### Latest stable release
|
||||
|
||||
If you are using released builds from 1.28.0, add the following to your POM file:
|
||||
If you are using released builds from 1.29.0, add the following to your POM file:
|
||||
|
||||
```xml
|
||||
<dependency>
|
||||
<groupId>com.microsoft.azure</groupId>
|
||||
<artifactId>azure</artifactId>
|
||||
<version>1.28.0</version>
|
||||
<version>1.29.0</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
|
@ -640,7 +640,7 @@ If you are using snapshots builds for this repo, add the following repository an
|
|||
<dependency>
|
||||
<groupId>com.microsoft.azure</groupId>
|
||||
<artifactId>azure</artifactId>
|
||||
<version>1.28.1-SNAPSHOT</version>
|
||||
<version>1.29.1-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.microsoft.azure</groupId>
|
||||
|
@ -667,7 +667,7 @@ If you are using snapshots builds for this repo, add the following repository an
|
|||
|
||||
## Upgrading from older versions
|
||||
|
||||
If you are migrating your code from 1.27.2 to 1.28.0, you can use these release notes for [preparing your code for 1.28.0 from 1.27.2](./notes/prepare-for-1.28.0.md).
|
||||
If you are migrating your code from 1.28.0 to 1.29.0, you can use these release notes for [preparing your code for 1.29.0 from 1.28.0](./notes/prepare-for-1.29.0.md).
|
||||
|
||||
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:
|
||||
|
||||
|
@ -701,6 +701,7 @@ If you would like to become an active contributor to this project please follow
|
|||
|
||||
| Version | SHA1 | Remarks |
|
||||
|-------------------|-------------------------------------------------------------------------------------------|-------------------------------------------------------|
|
||||
| 1.29.0 | [1.29.0](https://github.com/Azure/azure-libraries-for-java/tree/v1.29.0) | Tagged release for 1.29.0 version of Azure management libraries |
|
||||
| 1.28.0 | [1.28.0](https://github.com/Azure/azure-libraries-for-java/tree/v1.28.0) | Tagged release for 1.28.0 version of Azure management libraries |
|
||||
| 1.27.2 | [1.27.2](https://github.com/Azure/azure-libraries-for-java/tree/v1.27.2) | Tagged release for 1.27.2 version of Azure management libraries |
|
||||
| 1.27.0 | [1.27.0](https://github.com/Azure/azure-libraries-for-java/tree/v1.27.0) | Tagged release for 1.27.0 version of Azure management libraries |
|
||||
|
|
|
@ -0,0 +1,30 @@
|
|||
# Prepare for Azure Management Libraries for Java 1.29.0 #
|
||||
|
||||
Steps to migrate code that uses Azure Management Libraries for Java from 1.28 to 1.29 ...
|
||||
|
||||
> If this note missed any breaking changes, please open a pull request.
|
||||
|
||||
V1.29 is backwards compatible with V1.28 in the APIs intended for public use that reached the general availability (stable) stage in V1.x with a few exceptions in the ==XXXX== 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.29, as indicated by the `@Beta` annotation.
|
||||
|
||||
## Breaking changes
|
||||
|
||||
The following methods and/or types have been changed in V1.18 compared to the previous release (V1.17):
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<th align=left>Area/Model</th>
|
||||
<th align=left>In V1.28</th>
|
||||
<th align=left>In V1.29</th>
|
||||
<th align=left>Remarks</th>
|
||||
<th align=left>Ref</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align=left>Disk</td>
|
||||
<td align=left>fromVhd</td>
|
||||
<td align=left>fromVhd.withStorageAccount</td>
|
||||
<td align=left></td>
|
||||
<td align=left><a href="https://github.com/Azure/azure-libraries-for-java/pull/908/commits/4561e32b364b1cc77fbf9598e4a10dc27caea323">PR #908</th>
|
||||
</tr>
|
||||
</table>
|
Загрузка…
Ссылка в новой задаче