-
Notifications
You must be signed in to change notification settings - Fork 45
Upgrade Azure SDK BOM to 1.3.6 and pin msal4j 1.24.1 for sovereign cloud support #472
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
b46abe0
3921c83
a8f6692
45a5cbb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -41,7 +41,8 @@ | |||||||||||||||||||||||||||||||
| <slf4j.version>1.8.0-beta4</slf4j.version> | ||||||||||||||||||||||||||||||||
| <json.version>20201115</json.version> | ||||||||||||||||||||||||||||||||
| <ingest-v2.revision>0.0.1-beta</ingest-v2.revision> | ||||||||||||||||||||||||||||||||
| <azure-identity.version>1.18.1</azure-identity.version> | ||||||||||||||||||||||||||||||||
| <azure-identity.version>1.18.2</azure-identity.version> | ||||||||||||||||||||||||||||||||
| <msal4j.version>1.24.1</msal4j.version> | ||||||||||||||||||||||||||||||||
| </properties> | ||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||
|
Comment on lines
+44
to
47
|
||||||||||||||||||||||||||||||||
| <azure-identity.version>1.18.2</azure-identity.version> | |
| </properties> | |
| <azure-identity.version>1.18.2</azure-identity.version> | |
| <msal4j.version>1.24.1</msal4j.version> | |
| </properties> | |
| <dependencyManagement> | |
| <dependencies> | |
| <dependency> | |
| <groupId>com.microsoft.azure</groupId> | |
| <artifactId>msal4j</artifactId> | |
| <version>${msal4j.version}</version> | |
| </dependency> | |
| </dependencies> | |
| </dependencyManagement> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The PR description says
ingest-v2/pom.xmlupdatesazure-bom-versionto1.3.6, but the change here removes the module-levelazure-bom-versionproperty entirely. If the intent is to inherit${azure-bom-version}from the parent, please update the PR description (or leave an explicit override here) so the change is accurately documented for reviewers and future maintainers.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@copilot apply changes based on this feedback
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Restored the explicit
azure-bom-version=1.3.6override iningest-v2/pom.xmlso the upgrade intent is clearly documented in the file itself (commit 45a5cbb). It still inherits from the parent, but the explicit pin makes it unambiguous for future maintainers.