Releases: google/guava
Releases · google/guava
28.2
Maven
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>28.2-jre</version>
<!-- or, for Android: -->
<version>28.2-android</version>
</dependency>
Javadoc
JDiff
Changelog
- Warning to users of GWT-RPC: The first Guava release of 2020 will remove support for GWT-serializing Guava types. To test ahead of time with GWT-RPC support for Guava types disabled, set the
guava.gwt.emergency_reenable_rpc
system property tofalse
. (Even without the system property enabled, apps will now log warnings when sending Guava types over GWT-RPC.) (08bbf53) base
: AddedSplitter.splitToStream()
.concurrent
: AddedFutures.submit()
(c7ef0cc)concurrent
: MadeplatformThreadFactory()
and related utilities (mainly*Service
) work under Java 11 App Engine, and tweaked other App Engine threading behavior. (e3ee00d)concurrent
: Addedcatch
toStackOverflowError
inAbstractFuture.toString
to prevent long chains of futures from failingtoString
calls. (a2e6acc)concurrent
: MadeListenableFuture
implementThenable
via a default interface method in GWT/j2cl (e0bac74).graph
: Fixed bug inAbstractNetwork.hasEdgeConnecting()
causing it to throw if either endpoint was not in the graph. Originally reported as #3721. (2ee7f9d)graph
: Fixed data race. (0e94fb5)math
: AddedStream
support toStats
andStatsAccumulator
. (e2f4eba)math
: AddedQuantiles
compute()
methods which return aMap
now return a map with entries in the same order in which the indexes were provided. (786c3d8)net
: Added support for scope IDs for IPv6 addresses. (8a7d36a)net
: AddedtoBigInteger
andfromIpv4BigInteger
/fromIpv6BigInteger
toInetAddresses
for manipulatingInetAddresses
asBigIntegers
(d7a0b3d)net
: AddedMediaType
constants for application/opensearchdescription+xml (f79c4fe) and MPEG-DASH (67dd062), as well as a constant for the header Cross-Origin-Opener-Policy (4ef2111).net
: MadeMediaType
reject empty type, subtype, and attribute (b080067) and non-ASCII parameter values (2278123). Also, made it serialize empty parameter values to quoted strings (2278123).- Added
@DoNotMock
to several types. (4eea0f7, add4309) - Removed dependency on
animal-sniffer-annotations
. (5f37e53)
28.1
Maven
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>28.1-jre</version>
<!-- or, for Android: -->
<version>28.1-android</version>
</dependency>
Javadoc
JDiff
Changelog
collect
: AddedRangeMap.merge
, analogous toMap.merge
. (687252d)collect
: Fixed a bug inImmutableSet.Builder
that could lead to infinite loops when building multiple sets from the same builder. (0007cb2)io
: Fixed an issue where theInputStream
returned byBaseEncoding.decodingStream(Reader)
could fail to throwDecodingException
while decoding an invalid string. (ddd4a49)net
: AddedMediaType
for "image/heif" and "image/jp2" (508696a)net
: AddedUpgrade-Insecure-Requests
header toHttpHeaders
. (6a8b716)concurrent
: Fixed potential memory leak inFutures.whenAllSucceed/whenAllComplete
(494834b)
28.0
Maven
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>28.0-jre</version>
<!-- or, for Android: -->
<version>28.0-android</version>
</dependency>
Javadoc
JDiff
Changelog
collect
: AddedDuration
-based overloads to someQueues
methods. (21d06cf)net
: AddedMediaType
for "application/geo+json". (36cd5cf)net
: Added a number of constants toHttpHeaders
.concurrent
: Removed deprecatedCheckedFuture
and related utilities. (3dd22fe)concurrent
: AddedDuration
-based overloads to many methods.concurrent
: Removed@Beta
fromsetFuture
. (5ec1360)concurrent
: Added deprecatedFluentFuture.from(FluentFuture)
to point out redundant code. (f9f2807)graph
: AddedGraphBuilder.immutable()
,ValueGraphBuilder.immutable()
andNetworkBuilder.immutable()
for building immutable graphs in a fluent way.- J2ObjC: Fixed crashes from use of
ImmutableMap.entrySet()
. (74fc49f)
27.1
Maven
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>27.1-jre</version>
<!-- or, for Android: -->
<version>27.1-android</version>
</dependency>
Javadoc
JDiff
Changelog
- Removed GWT emulations that are no longer needed as of GWT 2.8.2. This means that GWT projects that use this version of Guava must use GWT 2.8.2 or higher. (5f35072)
- Created a BOM for Guava (new
guava-bom
artifact). (0e59641) - Removed
@Beta
from a number of frequently used APIs. (6242bdd) net
: AddedSec-Fetch
headers toHttpHeaders
. (673b243)net
: AddedSourceMap
header toHttpHeaders
(a99c15f)net
: AddedMediaType
for "application/jose" and "application/jose+json". (d416e04)graph
: Added overloads to methods accepting pairs of nodes to also acceptEndpointPair
; changed behavior of*Graph.edges().contains()
to allow undirected graphs to accept orderedEndpointPair
s. (af3ee1c)
27.0.1
Maven
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>27.0.1-jre</version>
<!-- or, for Android: -->
<version>27.0.1-android</version>
</dependency>
Javadoc
JDiff
Changelog
27.0
Maven
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>27.0-jre</version>
<!-- or, for Android: -->
<version>27.0-android</version>
</dependency>
Javadoc
JDiff
Changelog
Important: ListenableFuture
is now available as a separate artifact (com.google.guava:listenablefuture:1.0
) from the rest of Guava. As part of that change, Guava now has a real (needed at runtime) dependency on com.google.guava:failureaccess:1.0
. For more details, see this announcement. (b62d529)
collect
: Added agap(Range)
method toRange
that computes theRange
that lies between them. (a9dd709)net
: AddedHttpHeaders.EARLY_DATA
. (e074cf1)net
: AddedMediaType.WASM_APPLICATION
. (0b3eb0f)concurrent
:AbstractFuture
doesn't exposeFluentFuture
APIs anymore. (0f8d360)concurrent
: AddeddoCancelStart
protected method toAbstractService
(27bfe41)
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)
23.6.1
Maven
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>23.6.1-jre</version>
<!-- or, for Android: -->
<version>23.6.1-android</version>
</dependency>
Javadoc
JDiff
Changelog
- Fixed Denial of Service vulnerability for servers that use Guava and deserialize attacker data: CVE-2018-10237. (a81698a)
25.1
Maven
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>25.1-jre</version>
<!-- or, for Android: -->
<version>25.1-android</version>
</dependency>
Javadoc
JDiff
- 25.1-jre vs. 25.0-jre (shows a lot of junk, probably due to switch to
@Nullable
type annotations) - 25.1-android vs. 25.0-android
- 25.1-android vs. 25.1-jre
Changelog
- Switched to the type annotation version of
@Nullable
in the JRE/Java 8 flavor. (0a2258e) base
: AddedStrings.lenientFormat()
, copied fromPreconditions.format()
. (7fe1702)net
: Added Token Binding HTTP headers toHttpHeaders
. (d9113d5)reflect
: Added overrides for methods on JDK types returningAnnotatedType
in the JRE/Java 8 flavor. (d94eb93)testing
: Added support for type annotations inNullPointerTester
in the JRE/Java 8 flavor. (d94eb93)util.concurrent
: Added@DoNotCall
toFutures
methods that do not accept anExecutor
in preparation for removal. (49a1df6)
24.1.1
Note that we've also released Guava 25.0, which contains the change in 24.1.1 and some additional changes.
Maven
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>24.1.1-jre</version>
<!-- or, for Android: -->
<version>24.1.1-android</version>
</dependency>
Javadoc
JDiff
(There are no API diffs from 24.1. Our release tooling generated the following diffs against the newer 25.0, which doesn't really make sense. We'll try to get that fixed for future patch releases.)
Changelog
- Fixed Denial of Service vulnerability for servers that use Guava and deserialize attacker data: CVE-2018-10237. (7ec8718)