Skip to content

Commit fb7bbac

Browse files
release notes 1.41.3 (#1421)
1 parent c55be24 commit fb7bbac

File tree

2 files changed

+23
-9
lines changed

2 files changed

+23
-9
lines changed

README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ New Management libraries can be identified by namespaces `com.azure.resourcemana
1414

1515
# Azure Management Libraries for Java
1616

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

1919
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.
2020

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

3838
## Feature Availability and Road Map
39-
:triangular_flag_on_post: *as of Version 1.41.2*
39+
:triangular_flag_on_post: *as of Version 1.41.3*
4040

4141
<table>
4242
<tr>
@@ -628,18 +628,18 @@ SqlDatabase database = sqlServer.databases().define("myNewDatabase")
628628

629629
### Use single library
630630

631-
For instance, if you only need azure-mgmt-appservice library from 1.41.2, and wish to limit the dependencies, using following dependency instead in POM.
631+
For instance, if you only need azure-mgmt-appservice library from 1.41.3, and wish to limit the dependencies, using following dependency instead in POM.
632632

633633
```xml
634634
<dependency>
635635
<groupId>com.microsoft.azure</groupId>
636636
<artifactId>azure-mgmt-appservice</artifactId>
637-
<version>1.41.2</version>
637+
<version>1.41.3</version>
638638
</dependency>
639639
<dependency>
640640
<groupId>com.microsoft.azure</groupId>
641641
<artifactId>azure-client-authentication</artifactId>
642-
<version>1.7.12</version>
642+
<version>1.7.14</version>
643643
</dependency>
644644
```
645645

@@ -665,13 +665,13 @@ WebApp webApp = appServiceClient.webApps()
665665

666666
### Latest stable release
667667

668-
If you are using released builds from 1.41.2, add the following to your POM file:
668+
If you are using released builds from 1.41.3, add the following to your POM file:
669669

670670
```xml
671671
<dependency>
672672
<groupId>com.microsoft.azure</groupId>
673673
<artifactId>azure</artifactId>
674-
<version>1.41.2</version>
674+
<version>1.41.3</version>
675675
</dependency>
676676
```
677677

@@ -698,7 +698,7 @@ If you are using snapshots builds for this repo, add the following repository an
698698
<dependency>
699699
<groupId>com.microsoft.azure</groupId>
700700
<artifactId>azure</artifactId>
701-
<version>1.41.3-SNAPSHOT</version>
701+
<version>1.41.4-SNAPSHOT</version>
702702
</dependency>
703703
```
704704

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

711711
## Upgrading from older versions
712712

713-
If you are migrating your code from 1.41.1 to 1.41.2, you can use these release notes for [preparing your code for 1.41.2 from 1.41.1](./notes/prepare-for-1.41.2.md).
713+
If you are migrating your code from 1.41.2 to 1.41.3, you can use these release notes for [preparing your code for 1.41.3 from 1.41.2](./notes/prepare-for-1.41.3.md).
714714

715715
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:
716716

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

744744
| Version | SHA1 | Remarks |
745745
|-------------------|-------------------------------------------------------------------------------------------|-------------------------------------------------------|
746+
| 1.41.3 | [1.41.3](https://github.com/Azure/azure-libraries-for-java/tree/v1.41.3) | Tagged release for 1.41.3 version of Azure management libraries |
746747
| 1.41.2 | [1.41.2](https://github.com/Azure/azure-libraries-for-java/tree/v1.41.2) | Tagged release for 1.41.2 version of Azure management libraries |
747748
| 1.41.1 | [1.41.1](https://github.com/Azure/azure-libraries-for-java/tree/v1.41.1) | Tagged release for 1.41.1 version of Azure management libraries |
748749
| 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 |

notes/prepare-for-1.41.3.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Prepare for Azure Management Libraries for Java 1.41.3 #
2+
3+
Steps to migrate code that uses Azure Management Libraries for Java from 1.41.2 to 1.41.3 ...
4+
5+
> If this note missed any breaking changes, please open a pull request.
6+
7+
V1.41.3 is backwards compatible with V1.41.2 in the APIs intended for public use that reached the general availability (stable) stage in V1.x.
8+
9+
Please note, all packages in this repository have been deprecated. Replacement packages are available [azure-resourcemanager](http://aka.ms/azsdk/java/mgmt) as of 31-March-2022.
10+
11+
While these packages will continue to receive critical bug fixes through 31-March-2023, we strongly encourage you to upgrade.
12+
13+
See [Migration Guide](https://azure.github.io/azure-sdk/policies_support.html) for more details.

0 commit comments

Comments
 (0)