-
Notifications
You must be signed in to change notification settings - Fork 0
chore(deps): bump the gradle-minor-and-patch group across 1 directory with 3 updates #57
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 |
|---|---|---|
|
|
@@ -31,9 +31,9 @@ dependencies { | |
| testImplementation "org.mockito:mockito-core:3.12.4" | ||
| testImplementation "org.slf4j:slf4j-nop:1.7.34" | ||
|
|
||
| implementation 'com.google.code.gson:gson:2.8.9' | ||
| implementation 'com.google.guava:guava:33.6.0-android' | ||
| implementation group: 'org.bouncycastle', name: 'bcprov-jdk18on', version: '1.84' | ||
| implementation 'com.google.code.gson:gson:2.14.0' | ||
| implementation 'com.google.guava:guava:33.7.1-android' | ||
| implementation group: 'org.bouncycastle', name: 'bcprov-jdk18on', version: '1.85.2' | ||
|
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. bcprov-jdk18on 1.84 → 1.85.2 is a crypto bump; |
||
| implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.14' | ||
|
|
||
| } | ||
|
|
||
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.
Highest-risk change in this PR. Jumping gson 2.8.9 → 2.14.0 crosses several minor releases with behavioral changes (new
Strictness/stricter number parsing since 2.11, the 2.14 duplicate-key handling change, removal ofSerializablefrom internalTypeimpls, newjava.timeadapters). This SDK relies on lenient quoted-number coercion (e.g.TokenResult.expiry:longfrom"1234567890",CardData.cvv:intfrom"123") and on the internalcom.google.gson.internal.LinkedTreeMapinWhenPerformingHttpRequestTests. Please confirm the failing test(s) here — and consider isolating the gson bump in its own PR.