v23.4
版本发布时间: 2017-11-10 02:29:33
google/guava最新发布版本:v33.3.1(2024-09-24 04:55:13)
Maven
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>23.4-jre</version>
<!-- or, for Android: -->
<version>23.4-android</version>
</dependency>
Javadoc
JDiff
Changelog
-
collect
: Added support for emptyArrayTable
. -
net
: AddedReferrer-Policy
toHttpHeaders
, along with possible values for that header inReferrerPolicyValues
. (19b4d977a) -
util.concurrent
: Adjusted the interruption behavior ofMoreExecutors.sequentialExecutor()
to run tasks without aThread
interrupt marked (previously, interrupts leaked between tasks). If theThread
was interrupted when theExecutor
received it or during execution of its tasks, the thread will be re-interrupted before being yielded. Expanded the documentation ofMoreExecutors.sequentialExecutor()
to cover interruption and rejected execution behavior in detail. (40564c741) - Upgraded the version of GWT we test with to 2.8.2. We haven't yet intentionally depended on this new version, but now that we're testing with it, we may come to depend on it accidentally.