diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index 3991484a..fccc31b8 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -228,7 +228,7 @@ Update this file whenever you make changes that affect: ### Example Scenarios - **Added a new auth flow?** → Add it to the "Authentication Flows & Public APIs" section with its Parameters class, Supplier class, and key classes -- **Changed version to 1.24.0?** → Update the version in "Project Overview" +- **Changed the version in the pom.xml?** → Update the version in "Project Overview" - **Refactored cache entities?** → Update the "Token Cache" description in "Key Architectural Patterns" - **Added a new application type?** → Update "Application Hierarchy" and relevant flow sections - **Moved files to new directories?** → Update the "Important Directories" section diff --git a/README.md b/README.md index 7fe365ab..d16c51b9 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Quick links: The library supports the following Java environments: - Java 8 (or higher) -Current version - 1.24.0 +Current version - 1.24.1 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). @@ -28,13 +28,13 @@ Find [the latest package in the Maven repository](https://mvnrepository.com/arti com.microsoft.azure msal4j - 1.24.0 + 1.24.1 ``` ### Gradle ```gradle -implementation group: 'com.microsoft.azure', name: 'com.microsoft.aad.msal4j', version: '1.24.0' +implementation group: 'com.microsoft.azure', name: 'com.microsoft.aad.msal4j', version: '1.24.1' ``` ## Usage diff --git a/changelog.txt b/changelog.txt index d5028640..4edfee82 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,9 @@ +Version 1.24.1 +============= +- Improve sovereign cloud support and network error handling (#1018) +- Internal test restructuring (#1017) +- Update minor dependencies (#1006, #1013) + Version 1.24.0 ============= - Code quality improvements (#992, #993, #994) diff --git a/msal4j-sdk/README.md b/msal4j-sdk/README.md index 93a7dacf..04cb0997 100644 --- a/msal4j-sdk/README.md +++ b/msal4j-sdk/README.md @@ -16,7 +16,7 @@ Quick links: The library supports the following Java environments: - Java 8 (or higher) -Current version - 1.24.0 +Current version - 1.24.1 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). @@ -28,13 +28,13 @@ Find [the latest package in the Maven repository](https://mvnrepository.com/arti com.microsoft.azure msal4j - 1.24.0 + 1.24.1 ``` ### Gradle ```gradle -compile group: 'com.microsoft.azure', name: 'msal4j', version: '1.24.0' +compile group: 'com.microsoft.azure', name: 'msal4j', version: '1.24.1' ``` ## Usage diff --git a/msal4j-sdk/bnd.bnd b/msal4j-sdk/bnd.bnd index 658c4565..4a633b85 100644 --- a/msal4j-sdk/bnd.bnd +++ b/msal4j-sdk/bnd.bnd @@ -1,2 +1,2 @@ -Export-Package: com.microsoft.aad.msal4j;version="1.24.0" +Export-Package: com.microsoft.aad.msal4j;version="1.24.1" Automatic-Module-Name: com.microsoft.aad.msal4j diff --git a/msal4j-sdk/pom.xml b/msal4j-sdk/pom.xml index a2939fb3..36984d77 100644 --- a/msal4j-sdk/pom.xml +++ b/msal4j-sdk/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.microsoft.azure msal4j - 1.24.0 + 1.24.1 jar msal4j diff --git a/msal4j-sdk/src/integrationtest/java/com/microsoft/aad/msal4j/AuthorizationCodeIT.java b/msal4j-sdk/src/integrationtest/java/com/microsoft/aad/msal4j/AuthorizationCodeIT.java index fc8e9236..58bc72a5 100644 --- a/msal4j-sdk/src/integrationtest/java/com/microsoft/aad/msal4j/AuthorizationCodeIT.java +++ b/msal4j-sdk/src/integrationtest/java/com/microsoft/aad/msal4j/AuthorizationCodeIT.java @@ -45,7 +45,9 @@ public void acquireTokenWithAuthorizationCode_ManagedUser() { assertAcquireTokenAAD(user, app.getAppId(), null); } - @Test + //Temporarily disabling: no change in the library, but started seeing "The service has encountered an internal error. Please reauthenticate and try again." + //Needs investigation, tracked in https://github.com/AzureAD/microsoft-authentication-library-for-java/issues/1023 + //@Test public void acquireTokenWithAuthorizationCode_B2C_Local() { UserConfig user = LabResponseHelper.getUserConfig(USER_B2C); assertAcquireTokenB2C(user); diff --git a/msal4j-sdk/src/integrationtest/java/com/microsoft/aad/msal4j/DeviceCodeIT.java b/msal4j-sdk/src/integrationtest/java/com/microsoft/aad/msal4j/DeviceCodeIT.java index 6c060d9f..0f205053 100644 --- a/msal4j-sdk/src/integrationtest/java/com/microsoft/aad/msal4j/DeviceCodeIT.java +++ b/msal4j-sdk/src/integrationtest/java/com/microsoft/aad/msal4j/DeviceCodeIT.java @@ -29,7 +29,9 @@ void setUp() { seleniumDriver = SeleniumExtensions.createDefaultWebDriver(); } - @Test + //Temporarily disabling: timeout occuring after 15 minutes, likely either a server-side issue or a UI change + //Needs investigation, tracked in https://github.com/AzureAD/microsoft-authentication-library-for-java/issues/1023 + //@Test void DeviceCodeFlowADTest() throws Exception { AppConfig app = LabResponseHelper.getAppConfig(APP_PCACLIENT); UserConfig user = LabResponseHelper.getUserConfig(USER_PUBLIC_CLOUD);