Skip to content
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

Bump com.google.guava:guava from 33.1.0-jre to 33.2.0-jre #55

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 6, 2024

Bumps com.google.guava:guava from 33.1.0-jre to 33.2.0-jre.

Release notes

Sourced from com.google.guava:guava's releases.

33.2.0

Android users: Please test recent Guava versions

If you know of Guava Android users who have not yet upgraded to at least release 33.0.0, please encourage them to upgrade, preferably to today's release, 33.2.0. These releases have begun adding Java 8+ APIs to guava-android. While we don't anticipate problems, we do anticipate that any unexpected problems could force a disruptive rollback. To minimize any disruption, we'd like to catch any such problems early.

Please let us know of any problems you encounter.

Maven

<dependency>
  <groupId>com.google.guava</groupId>
  <artifactId>guava</artifactId>
  <version>33.2.0-jre</version>
  <!-- or, for Android: -->
  <version>33.2.0-android</version>
</dependency>

Jar files

Guava requires one runtime dependency, which you can download here:

Javadoc

JDiff

Changelog

  • Dropped testing for Android versions before Lollipop (API Level 21). Guava may stop working under older versions in the future, or it may have done so already.
  • Fixed a GWT compilation breakage under Gradle. (858caf425c)
  • collect: Made our Collector APIs (e.g., ImmutableList.toImmutableList()) available in guava-android. More Java 8 APIs will follow in future releases. (96fca0b747)
    • As always, streams are available to Android code only when that code enables library desugaring or targets a new enough API Level (24 (Nougat) for many stream APIs). (But note that we test only with library desugaring, so we don't currently know if API Level 24 is high enough to use our Collector APIs unless you have also enabled library desugaring.) Guava users who avoid the Collector APIs do not need to meet this requirement.
  • collect: Fixed a potential NullPointerException in ImmutableMap.Builder on a rare code path. (70a98115d8)
  • net: Added HttpHeaders constants Ad-Auction-Allowed, Permissions-Policy-Report-Only, and Sec-GPC. (7dc01ed27b, 41d0d9a833, 38c8017bd44b7919b112f1c99f3d8ce4b058ae5d)
Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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)

Bumps [com.google.guava:guava](https://github.com/google/guava) from 33.1.0-jre to 33.2.0-jre.
- [Release notes](https://github.com/google/guava/releases)
- [Commits](https://github.com/google/guava/commits)

---
updated-dependencies:
- dependency-name: com.google.guava:guava
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label May 6, 2024
@hizumiaoba
Copy link
Owner

@dependabot squash and merge

@dependabot dependabot bot merged commit 6aeeecb into develop May 7, 2024
3 checks passed
@dependabot dependabot bot deleted the dependabot/gradle/com.google.guava-guava-33.2.0-jre branch May 7, 2024 01:57
hizumiaoba added a commit that referenced this pull request May 10, 2024
* Bump com.google.guava:guava from 33.1.0-jre to 33.2.0-jre (#55)

* add experimental logic for checking update

* add tests

* add getter for specific version data

---------

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
hizumiaoba added a commit that referenced this pull request May 16, 2024
* Add Version annotation interface

* Add Retention policy Version annotation interface

* Add Version annotation

* Add helper method for suffix

* Add VersionHelper

* Refactor VersionObj class

* Delete `EXPERIMENTAL` Suffix

* add suffix checking logic

* add test code for checking Suffix checking

* fix tests

* fix array index validation

* roll back build script

* fix status checking method

* fix status checking method

* add test for status checking

* change accessor for `fromAnnotation` method

* add `okhttp` and `jackson` deps

* add check method

* add modules for new deps

* add some implementation for fetching online content

* complete implementation for HttpRequest classes

* build: add github-client dep

* Revert "build: add github-client dep"

This reverts commit a7eabc4.

* dependency update

* add logic for fetch remote versions

* delete redundant test

* fix for an issue where version string can be started with `v`

* add checking matches completely

* Update NOTICE

add License notice for `GitHub API for Java`

* refactor

* Breaking changes for version check logic (#56)

* Bump com.google.guava:guava from 33.1.0-jre to 33.2.0-jre (#55)

* add experimental logic for checking update

* add tests

* add getter for specific version data

---------

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* delete unused deps

* add ability to fetch remote version

* add log statement for tracing

* add some annotation

* add logic for both prerelease and not.

* add UI component and event handling for Version Update Checking

* update version String conversion process

* add GUI for user-friendly version check dialog

---------

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
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
Projects
Development

Successfully merging this pull request may close these issues.

1 participant