-
Notifications
You must be signed in to change notification settings - Fork 122
Bump com.google.code.gson:gson from 2.12.1 to 2.13.1 #846
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
Open
dependabot
wants to merge
2
commits into
main
Choose a base branch
from
dependabot/gradle/com.google.code.gson-gson-2.13.1
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Bump com.google.code.gson:gson from 2.12.1 to 2.13.1 #846
dependabot
wants to merge
2
commits into
main
from
dependabot/gradle/com.google.code.gson-gson-2.13.1
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bumps [com.google.code.gson:gson](https://github.com/google/gson) from 2.12.1 to 2.13.1. - [Release notes](https://github.com/google/gson/releases) - [Changelog](https://github.com/google/gson/blob/main/CHANGELOG.md) - [Commits](google/gson@gson-parent-2.12.1...gson-parent-2.13.1) --- updated-dependencies: - dependency-name: com.google.code.gson:gson dependency-version: 2.13.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
curquiza
approved these changes
May 12, 2025
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.
bors merge
meili-bors bot
added a commit
that referenced
this pull request
May 12, 2025
846: Bump com.google.code.gson:gson from 2.12.1 to 2.13.1 r=curquiza a=dependabot[bot] Bumps [com.google.code.gson:gson](https://github.com/google/gson) from 2.12.1 to 2.13.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/google/gson/releases">com.google.code.gson:gson's releases</a>.</em></p> <blockquote> <h2>Gson 2.13.1</h2> <h2>What's Changed</h2> <ul> <li>Give FieldNamingStrategy the ability to return multiple String names by <a href="https://github.com/mfriesen"><code>`@mfriesen</code></a>` in <a href="https://redirect.github.com/google/gson/pull/2776">google/gson#2776</a></li> <li>Remove outdated android-proguard-example by <a href="https://github.com/Goooler"><code>`@Goooler</code></a>` in <a href="https://redirect.github.com/google/gson/pull/2843">google/gson#2843</a></li> <li>Adjust Troubleshooting Guide ProGuard / R8 section by <a href="https://github.com/Marcono1234"><code>`@Marcono1234</code></a>` in <a href="https://redirect.github.com/google/gson/pull/2844">google/gson#2844</a></li> <li>Update dependencies, including the problematic <code>com.google.errorprone:error_prone_annotations:2.37.0</code>.</li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/mfriesen"><code>`@mfriesen</code></a>` made their first contribution in <a href="https://redirect.github.com/google/gson/pull/2776">google/gson#2776</a></li> <li><a href="https://github.com/Goooler"><code>`@Goooler</code></a>` made their first contribution in <a href="https://redirect.github.com/google/gson/pull/2843">google/gson#2843</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/google/gson/compare/gson-parent-2.13.0...gson-parent-2.13.1">https://github.com/google/gson/compare/gson-parent-2.13.0...gson-parent-2.13.1</a></p> <h2>Gson 2.13.0</h2> <h2>What's Changed</h2> <ul> <li> <p>A bug in deserializing collections has been fixed. Previously, if you did something like this:</p> <pre><code>gson.fromJson(jsonString, new TypeToken<ImmutableList<String>>() {}) </code></pre> <p>then the inferred type would be <code>ImmutableList<String></code>, but Gson actually gave you an <code>ArrayList<String></code>. Usually that would lead to an immediate <code>ClassCastException</code>, but in some circumstances the code might sometimes succeed despite the wrong type. Now you will see an exception like this:</p> <pre><code>com.google.gson.JsonIOException: Abstract classes can't be instantiated! Adjust the R8 configuration or register an InstanceCreator or a TypeAdapter for this type. Class name: com.google.common.collect.ImmutableList </code></pre> <p>because Gson now really is trying to create an <code>ImmutableList</code> through its constructor, but that isn't possible. Either change the requested type (in the <code>TypeToken</code>) to <code>List<String></code>, or register a <code>TypeAdapter</code> or <code>JsonDeserializer</code> for <code>ImmutableList</code>.</p> </li> <li> <p>The internal classes <code>$Gson$Types</code> and <code>$Gson$Preconditions</code> have been renamed to remove the <code>$</code> characters. Since these are internal classes (as signaled not only by the package name but by the <code>$</code> characters), client code should not be affected. If your code <em>was</em> depending on these classes then we suggest making a copy of the class (subject to the <a href="https://www.apache.org/licenses/LICENSE-2.0">license</a>) rather than depending on the new names.</p> </li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/google/gson/compare/gson-parent-2.12.1...gson-parent-2.13.0">https://github.com/google/gson/compare/gson-parent-2.12.1...gson-parent-2.13.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/google/gson/commit/257bee9eff81889893ca02a6925aa1b620378e9e"><code>257bee9</code></a> [maven-release-plugin] prepare release gson-parent-2.13.1</li> <li><a href="https://github.com/google/gson/commit/63d74b39400be6e2a244a227820fa9d984a493e9"><code>63d74b3</code></a> Bump the maven group with 5 updates (<a href="https://redirect.github.com/google/gson/issues/2851">#2851</a>)</li> <li><a href="https://github.com/google/gson/commit/810e3560590bb807ed7113ccfff716aac21a3f33"><code>810e356</code></a> Add shrinker test for interface implementation being deserialized (<a href="https://redirect.github.com/google/gson/issues/2845">#2845</a>)</li> <li><a href="https://github.com/google/gson/commit/00ae39775708147e115512be5d4f92bee02e9b89"><code>00ae397</code></a> Adjust Troubleshooting Guide ProGuard / R8 section (<a href="https://redirect.github.com/google/gson/issues/2844">#2844</a>)</li> <li><a href="https://github.com/google/gson/commit/0eec6f35c59f164ee49ef175e38896db20296b44"><code>0eec6f3</code></a> Remove outdated android-proguard-example (<a href="https://redirect.github.com/google/gson/issues/2843">#2843</a>)</li> <li><a href="https://github.com/google/gson/commit/4e65e6ab368d92638b4ca04521958dbf1d3753e7"><code>4e65e6a</code></a> Give FieldNamingStrategy the ability to return multiple String names (<a href="https://redirect.github.com/google/gson/issues/2776">#2776</a>)</li> <li><a href="https://github.com/google/gson/commit/6010131366fa3f72c3f07151bff6d1c4e1a7f6e0"><code>6010131</code></a> [maven-release-plugin] prepare for next development iteration</li> <li><a href="https://github.com/google/gson/commit/bfe0fd58e3efc9f54938a87b955bbfc42dfd45e1"><code>bfe0fd5</code></a> [maven-release-plugin] prepare release gson-parent-2.13.0</li> <li><a href="https://github.com/google/gson/commit/6ed64ca3a8990c60b758d838e16713b2a1e0f461"><code>6ed64ca</code></a> add multi-catch support to the code base (<a href="https://redirect.github.com/google/gson/issues/2841">#2841</a>)</li> <li><a href="https://github.com/google/gson/commit/0074376f7e605700f218ff7362dd45a690926074"><code>0074376</code></a> Bump the maven group with 3 updates (<a href="https://redirect.github.com/google/gson/issues/2840">#2840</a>)</li> <li>Additional commits viewable in <a href="https://github.com/google/gson/compare/gson-parent-2.12.1...gson-parent-2.13.1">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting ``@dependabot` rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - ``@dependabot` rebase` will rebase this PR - ``@dependabot` recreate` will recreate this PR, overwriting any edits that have been made to it - ``@dependabot` merge` will merge this PR after your CI passes on it - ``@dependabot` squash and merge` will squash and merge this PR after your CI passes on it - ``@dependabot` cancel merge` will cancel a previously requested merge and block automerging - ``@dependabot` reopen` will reopen this PR if it is closed - ``@dependabot` close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - ``@dependabot` show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - ``@dependabot` ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - ``@dependabot` ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - ``@dependabot` ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> 852: Update version for the next release (v0.14.5) r=curquiza a=meili-bot _This PR is auto-generated._ The automated script updates the version of meilisearch-java to a new version: "v0.14.5" Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: meili-bot <[email protected]>
This PR was included in a batch that successfully built, but then failed to merge into main. It will not be retried. Additional information: {"message":"Changes must be made through a pull request.","documentation_url":"https://docs.github.com/articles/about-protected-branches","status":"422"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
dependencies
Pull requests that update a dependency file
skip-changelog
The PR will not appear in the release changelogs
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bumps com.google.code.gson:gson from 2.12.1 to 2.13.1.
Release notes
Sourced from com.google.code.gson:gson's releases.
Commits
257bee9
[maven-release-plugin] prepare release gson-parent-2.13.163d74b3
Bump the maven group with 5 updates (#2851)810e356
Add shrinker test for interface implementation being deserialized (#2845)00ae397
Adjust Troubleshooting Guide ProGuard / R8 section (#2844)0eec6f3
Remove outdated android-proguard-example (#2843)4e65e6a
Give FieldNamingStrategy the ability to return multiple String names (#2776)6010131
[maven-release-plugin] prepare for next development iterationbfe0fd5
[maven-release-plugin] prepare release gson-parent-2.13.06ed64ca
add multi-catch support to the code base (#2841)0074376
Bump the maven group with 3 updates (#2840)You can trigger a rebase of this PR by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)