-
Notifications
You must be signed in to change notification settings - Fork 98
Upgrade AWS Java SDK to 1.12.228 #334
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
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 |
---|---|---|
|
@@ -5,8 +5,9 @@ plugins { | |
data class DependencySet(val group: String, val version: String, val modules: List<String>) | ||
|
||
val DEPENDENCY_BOMS = listOf( | ||
"com.fasterxml.jackson:jackson-bom:2.11.0", | ||
"org.junit:junit-bom:5.6.2" | ||
"com.amazonaws:aws-java-sdk-bom:1.12.228", | ||
"com.fasterxml.jackson:jackson-bom:2.12.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I wanted to remove this However, now my theory is that it won't see them because There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. v1.12.x shadows Jackson dependencies since customers were relying on the version that came with the SDK, preventing the team from upgrading from insecure versions to newer ones without introducing breaking changes. Hence the change in v1.12.x which forces customers to bring their own Jackson version. |
||
"org.junit:junit-bom:5.8.2" | ||
) | ||
|
||
val DEPENDENCY_SETS = listOf( | ||
|
@@ -17,7 +18,7 @@ val DEPENDENCY_SETS = listOf( | |
), | ||
DependencySet( | ||
"com.fasterxml.jackson.datatype", | ||
"2.11.0", | ||
"2.12.0", | ||
listOf("jackson-datatype-jsr310") | ||
), | ||
DependencySet( | ||
|
@@ -42,7 +43,7 @@ val DEPENDENCY_SETS = listOf( | |
), | ||
DependencySet( | ||
"junit", | ||
"4.12", | ||
"4.13.1", | ||
listOf("junit") | ||
), | ||
DependencySet( | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.4.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
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.
These formatting changes were failing the build, although I don't agree with them, added them for now and we can revisit the linter later.