Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Quick links:
The library supports the following Java environments:
- Java 8 (or higher)

Current version - 1.20.1
Current version - 1.21.0

You can find the changes for each version in the [change log](https://github.com/AzureAD/microsoft-authentication-library-for-java/blob/main/msal4j-sdk/changelog.txt).

Expand All @@ -28,13 +28,13 @@ Find [the latest package in the Maven repository](https://mvnrepository.com/arti
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>msal4j</artifactId>
<version>1.20.1</version>
<version>1.21.0</version>
</dependency>
```
### Gradle

```gradle
implementation group: 'com.microsoft.azure', name: 'com.microsoft.aad.msal4j', version: '1.20.1'
implementation group: 'com.microsoft.azure', name: 'com.microsoft.aad.msal4j', version: '1.21.0'
```

## Usage
Expand Down
8 changes: 8 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Version 1.21.0
=============
- Add support for claims, client capabilities, and token revocation in Service Fabric scenarios (#929, #943)
- Improve retry logic for HTTP requests, and add API to disable retries (#960, #963, #964)
Copy link
Member

@bgavrilMS bgavrilMS Jun 6, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please inform Vinay about this new API, otherwise it's going to be a breaking change for them if they don't use the API.

Copy link
Contributor Author

@Avery-Dunn Avery-Dunn Jun 6, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are you saying that having IMDS scenarios retry on a couple of different status codes from normal managed identity is considered a breaking change? If so, why would it only be a problem for Azure SDK?

Other than the status codes for IMDS it was just a refactor of the existing retry behavior, and a new API to disable that behavior

- Support multiple date formats in Managed identity scenarios (#956)
- Fix query parameter issue in IMDS scenarios (#954)
- Update dependencies used in tests to avoid CVE warnings (#962)

Version 1.20.1
=============
- Fix Base64URL decoding bug (#938)
Expand Down
6 changes: 3 additions & 3 deletions msal4j-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Quick links:
The library supports the following Java environments:
- Java 8 (or higher)

Current version - 1.20.1
Current version - 1.21.0

You can find the changes for each version in the [change log](https://github.com/AzureAD/microsoft-authentication-library-for-java/blob/master/changelog.txt).

Expand All @@ -28,13 +28,13 @@ Find [the latest package in the Maven repository](https://mvnrepository.com/arti
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>msal4j</artifactId>
<version>1.20.1</version>
<version>1.21.0</version>
</dependency>
```
### Gradle

```gradle
compile group: 'com.microsoft.azure', name: 'msal4j', version: '1.20.1'
compile group: 'com.microsoft.azure', name: 'msal4j', version: '1.21.0'
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion msal4j-sdk/bnd.bnd
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Export-Package: com.microsoft.aad.msal4j;version="1.20.1"
Export-Package: com.microsoft.aad.msal4j;version="1.21.0"
Automatic-Module-Name: com.microsoft.aad.msal4j
2 changes: 1 addition & 1 deletion msal4j-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure</groupId>
<artifactId>msal4j</artifactId>
<version>1.20.1</version>
<version>1.21.0</version>
<packaging>jar</packaging>
<name>msal4j</name>
<description>
Expand Down