Skip to content

23.2

Compare
Choose a tag to compare
@cgdecker cgdecker released this 11 Oct 23:30
· 2111 commits to master since this release

Maven

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

Javadoc

JDiff

Changelog

  • Added JPMS module name com.google.common for Guava.
  • base: Deprecated built-in CharMatchers which cannot work as expected because the API does not support supplementary code points.
  • collect: Fixed #2962
  • collect: Fixed a bug in HashBiMap.inverse().forcePut()
  • graph: Added implementation for common.graph.Traverser, a new class that provides efficient breadth-first and depth-first traversal of graphs and trees. It should be used in place of common.collect.TreeTraverser, which will be deprecated.
  • graph: Fixed regression in ValueGraph.edgeValueOrDefault() (from Guava 23) that caused it sometimes to return null instead of the default value.