Skip to content
This repository has been archived by the owner on Jan 16, 2023. It is now read-only.

Bump caffeine from 2.8.8 to 3.0.1 #219

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 18, 2021

Bumps caffeine from 2.8.8 to 3.0.1.

Release notes

Sourced from caffeine's releases.

3.0.1

  • Fixed thread local fallback initialization for striped buffer (#515)
  • Improved eviction reordering for weighted caches (#513)
  • Added putIfAbsent optimistic fastpath (#506)

3.0.0

This release includes API incompatible changes.

Highlights

  • Java 11 or above is required
  • Java 8 users can continue to use version 2.x, which will be supported

API improvements

  • Added Policy.refreshes() for a snapshot of the in-flight refresh operations
  • CacheLoader and AsyncCacheLoader offer bulk factory methods
  • AsyncCacheLoader methods may now throw checked exceptions
  • Better usage of Checker Framework nullness annotations (#337)
  • LoadingCache.refresh now returns the in-flight future (#143)
  • Various unimplemented default methods are now abstract
  • Added LoadingCache.refreshAll convenience method
  • Bulk loads now receive a Set of keys (was Iterable)
  • More flexible generic bounds and type parameters

Implementation improvements

Incompatible changes

  • VarExpiration time-based puts now return the old value instead of a boolean result
  • Removed jandex resource as no longer utilized by Quarkus
  • Split Policy.Expiration into fixed and refresh interfaces

Deprecation removals

  • CacheWriter, SingleConsumerQueue, and UnsafeAccess
  • StatsCounter.recordEviction variations
  • CacheStats constructors

Notes

  • CacheWriter usages can be replaced by Map computations and Caffeine.evictionListener
  • For best performance Unsafe may be used if available, otherwise falls back to VarHandles
  • We will continue to support and maintain version 2.x for Java 8 users

2.9.0

Cache

  • Added Caffeine.evictionListener which is notified within the atomic operation when an entry is automatically removed
  • Added triggering cache maintenance if an iterator observes an expired entry for more aggressive eviction (#487)
  • Improved eager eviction of an added or updated entry if it exceeds the cache's maximum weight
  • Deprecated CacheWriter. Please use asMap computations or an eviction listener instead
  • Added CacheStats.of(...) to allow for becoming a value-based class in a future release
Commits
  • cbc71f2 Fix thread local fallback initialization (#515)
  • 50af7d7 Improved eviction reordering for weighted caches (fixes #513)
  • a8c274d Add putIfAbsent optimistic fastpath (fixes #506)
  • 9074b61 Released 3.0; prepare for next development version
  • be6ad63 add checkerframework javadoc link
  • a95ae26 Added snapshot view of in-flight refresh operations
  • 0d23987 misc improvements (javadoc, generics, build)
  • b45b1cc Add refreshAll(keys) convenience method (bulk not supported)
  • b792cc3 Split the release workflow out from the build action
  • 16ddc49 Update version to 3.0.0
  • Additional commits viewable in compare view

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 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 [caffeine](https://github.com/ben-manes/caffeine) from 2.8.8 to 3.0.1.
- [Release notes](https://github.com/ben-manes/caffeine/releases)
- [Commits](ben-manes/caffeine@v2.8.8...v3.0.1)

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 18, 2021
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github May 3, 2021

Superseded by #256.

@dependabot dependabot bot closed this May 3, 2021
@dependabot dependabot bot deleted the dependabot/maven/com.github.ben-manes.caffeine-caffeine-3.0.1 branch May 3, 2021 05:37
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

asMap() compute and the Weigher putIfAbsent() regression?
0 participants