26.0
Maven
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>26.0-jre</version>
<!-- or, for Android: -->
<version>26.0-android</version>
</dependency>
Javadoc
JDiff
Changelog
base
: Removed deprecatedpublic static
fields fromCharMatcher
. Use the equivalentpublic static
methods instead. (f1249c4)base
: Fixed theServiceConfigurationError
that some users encountered when using Guava as a JPMS module. (8287cdf)cache
: Fixed a bug whereCache.asMap.compute*
methods could cause nonsensical weights to be stored, breaking cache eviction. (15764d7)concurrent
: Removed deprecatedFutures
methods that implicitly usedirectExecutor()
. (87d87f5)concurrent
: AddedExecutionSequencer
, a new utility to run a series of asynchronous operations serially. (8d1fbc9)concurrent
: Removed special-casingUndeclaredThrowableException
inFutures.transform()
. (9466b62)net
: ChangedHostAndPort.equals()
andhashCode()
to stop depending on whether brackets were included. Now they depend only on host and port. (34c1616)net
: AddedHttpHeaders
constant for Sec-Metadata header. (986a3a3)net
: AddedMediaType
for "application/hal+json". (fea88fe)