Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
4 changes: 4 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ MSAL Wiki : https://github.com/AzureAD/microsoft-authentication-library-for-andr

vNext
----------

Version 7.0.0
----------
- [PATCH] Update common @22.0.0
- [MINOR] Copy username from UiRequiredException to MsalUiRequiredException (#2344)
- [MAJOR] Bump TargetSdk to 35, minSdk to 24, AGP to 8.10.0 (#3164)
- [MINOR] Update Nimbus version (#2346)
Expand Down
4 changes: 2 additions & 2 deletions msal/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -167,12 +167,12 @@ task sourcesJar(type: Jar) {

// In dev, we want to keep the dependencies (common4j, common) to 1.0.+ to be able to be consumed by daily dev pipeline.
// In release/*, we change these to specific versions being consumed.
def commonVersion = "1.0.+"
def commonVersion = "22.0.0"
if (project.hasProperty("distCommonVersion")) {
commonVersion = project.distCommonVersion
}
// Used for testfixtures
def common4jVersion = "1.0.+"
def common4jVersion = "22.0.0"
if (project.hasProperty("distCommon4jVersion")) {
distCommon4jVersion = project.distCommon4jVersion
Copy link
Preview

Copilot AI Aug 6, 2025

Choose a reason for hiding this comment

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

The assignment should use 'commonVersion' instead of 'distCommon4jVersion'. This appears to be a copy-paste error from the commonVersion logic above.

Suggested change
distCommon4jVersion = project.distCommon4jVersion
common4jVersion = project.distCommon4jVersion

Copilot uses AI. Check for mistakes.

}
Expand Down
2 changes: 1 addition & 1 deletion msal/versioning/version.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#Wed Aug 01 15:24:11 PDT 2018
versionName=6.2.0
versionName=7.0.0
versionCode=0
Loading