1. 3794eb8 Change version number in pom files from 24.0 to HEAD(-jre/android-SNAPSHOT). by cgdecker · 7 years ago
  2. 6a297bd Fixed a typo in the Predicates class documentation. by xale · 7 years ago
  3. b458e6f Slightly bump the fpp to prevent OOM under JDK9. by kak · 7 years ago
  4. 3fb7f1b Fix Guava version number re. BloomFilter thread safety. by kak · 7 years ago
  5. e2a4a28 Make common.collect spliterators backed by an int-indexed function correctly splittable. by lowasser · 7 years ago
  6. c95fc10 Throwables#lazyStackTrace unsupported on IBM JDK 6 by fdesu · 7 years ago
  7. 76c3823 common.graph: fix formatting error in Graph/ValueGraph/Network Javadoc. by jrtom · 7 years ago
  8. 8b4267b Implement Traverser.forGraph().breadhFirst(). by jnyman · 7 years ago
  9. 36d362a Traverser.java: tweak the forGraph() and forTree() documentation to make memory use a bit more clear. by jrtom · 7 years ago
  10. ac57380 Revert parts of CL 33393713 that changed Splitter.on(",") tests to redundant Splitter.on(',') tests. by lesiak · 7 years ago
  11. 946151d Fix space complexity in forTree() documentation. by jnyman · 7 years ago
  12. 631696b Add the same overloads that Preconditions has in Verify. by lowasser · 7 years ago
  13. 27b0d38 Make propagateCancellation helpers @GoogleInternal. by cpovirk · 7 years ago
  14. fe71fdc Add sortDescending methods in common.primitives. by lowasser · 7 years ago
  15. 52047f9 Add @GoogleInternal propagateCancellation to Futures. by chrisn · 7 years ago
  16. bf61419 Fix documentation for checkArgument and checkState by guyben · 7 years ago
  17. 1202bb2 Merge pull request #2942 from google/sync-master-2017/09/18 by Ron Shapiro · 7 years ago
  18. 1ed3937 Propagate close for to the inputs of Streams.zip and Streams.mapWithIndex by pkolloch · 7 years ago
  19. 3e89ed8 Add sorting methods for the unsigned primitives in common.primitives. by lowasser · 7 years ago
  20. 6cdb8e5 Add reverse methods to all primitive arrays in common.primitives. by lowasser · 7 years ago
  21. 3a053c2 Clarify some docs on Ordering+Comparators by ronshapiro · 7 years ago
  22. 5486897 Add Traverser API without implementation. by jnyman · 7 years ago
  23. db2e7fe Fix tests that assume Class.getClassLoader() returns a URLClassLoader so that they can call getURLs() to instead parse the "java.class.path" system property. by dpb · 7 years ago
  24. 63898e2 Make ClassPath search the contents of the "java.class.path" system property for the system class loader in Java 9. by dpb · 7 years ago
  25. a49e1d0 Add note about nodes being valid Map keys to PredecessorsFunction and SuccessorsFunction. by jnyman · 7 years ago
  26. bfcb668 The documentation of PredecessorsFunction and SuccessorsFunction now makes it clear that null nodes are forbidden. by jnyman · 7 years ago
  27. 68db9c6 Fix edge case in EnumMultiset.remove by lowasser · 7 years ago
  28. 6f630e9 Add @CanIgnoreReturnValue to EnumMultiset#add by cushon · 7 years ago
  29. b89a658 Rewrite EnumMultiset to be directly backed by an E[] and an int[], avoiding allocation of boxing objects. by lowasser · 7 years ago
  30. 6afde5c Fix parameter comments that don't match the formal parameter name by cushon · 7 years ago
  31. 221b465 Migrate Executor-less Futures callback methods to the ones with an Executor, while applying MoreExecutors.directExecutor() for identical behavior. by sunxin · 7 years ago
  32. 0725dbc MOE strip the "public" from SortedLists' member enums. by lowasser · 7 years ago
  33. 0b9f32a Remove @CanIgnoreReturnValue from Listening*ExecutorService. by cpovirk · 7 years ago
  34. 61d2a6f Set version numbers to 24.0-jre-SNAPSHOT. by cpovirk · 7 years ago
  35. ffc3e67 Remove redundant calls to NullPointerTester#setDefault by cushon · 7 years ago
  36. 82092f9 [guava concurrent] Renamed SerializingExecutor to SequentialExecutor. Turned SerializingExecutor into a proxy to SequentialExecutor so two Components classes that directly use it have a chance to catch up. by yorick · 7 years ago
  37. adf10c6 Streams.concat: Propagate close to sources streams by pkolloch · 7 years ago
  38. da36449 fix typo by Moriadry · 7 years ago
  39. d1dbf60 Add java.util.Optional and its derivatives (OptionalInt, OptionalLong, OptionalDouble) to ArbitraryInstances and FreshValueGenerator. by sblessing · 7 years ago
  40. 6247a70 Update Guava's dependency on Truth to 0.35. by cpovirk · 7 years ago
  41. 3a1a7b2 Javadoc update when delegate throws exception. by Kannan Ekanath · 7 years ago
  42. c2c98c5 Update Public Suffix list. by components-release · 7 years ago
  43. 9bf4286 ImmediateFuture.toString() implementation to provide the returned value or exception. by ptab · 7 years ago
  44. c2db40a Specifically instruct people who are calling dereference(transform(...)) to call transformAsync(...). by cpovirk · 7 years ago
  45. 89fb065 [guava concurrent] Added MoreExecutors.sequentialExecutor(), and its documentation. by yorick · 7 years ago
  46. f438db6 Use diamond for collect tests. by jijiang · 7 years ago
  47. 16f262f Use diamond operator for all test targets except 'collect' by jijiang · 7 years ago
  48. d8bf23b Remove a dangling closing bracket from Javadoc by Sebastian Kürten · 7 years ago
  49. c428cbb catch (SomeException e) { // Expected } by cpovirk · 7 years ago
  50. 0f664c6 Store the CancellationException.class (as we do in other tests), not the cause of the CancellationException. by cpovirk · 7 years ago
  51. 97f1b63 Multicatch! by cpovirk · 7 years ago
  52. 82ae659 Use given throwable as the cause for the IAE that's thrown during loop by kak · 7 years ago
  53. 2eed29b On second thought, back out a few diamond operators in the mainline when they don't also work with Java 7 type inference. by cpovirk · 7 years ago
  54. 8cdd8c7 Use diamond operator for rest. by jijiang · 7 years ago
  55. 2da8a91 Use diamond operator in base+cache+concurrent. by jijiang · 7 years ago
  56. 0c81386 Use diamond operator in collect by jijiang · 7 years ago
  57. d46ffd3 Update Guava's JUnit dependencies to 4.11 (the version in []) by ronshapiro · 7 years ago
  58. d21e3b9 Fix @since tags for collectors that didn't make 23.0. by cpovirk · 7 years ago
  59. d7501ab Add ImmutableSet.builderForExpectedSize. Currently, the implementation is that if and only if a size is specified up front, the builder starts generating the hash table online and deduping elements. by lowasser · 7 years ago
  60. a3da732 Fixes #2905 by cpovirk · 7 years ago
  61. 7e4b387 Polishing by Jonathan Bluett-Duncan · 7 years ago
  62. c412a2a Fix javadoc link by including package name. by Josh Hawkins · 7 years ago
  63. 8158909 Add Immutable{Map,BiMap}.builderWithExpectedSize API. by lowasser · 7 years ago
  64. 44eb16b Test that a failed/cancelled input doesn't cause us to cancel other inputs. by cpovirk · 7 years ago
  65. 7928bbe Add ImmutableList.builderWithExpectedSize API. by lowasser · 7 years ago
  66. 9e964b3 common.graph: remove j2cl annotations, as no one's using it from j2cl, it has no immediate prospective users, and it doesn't support Network-related capabilities anyway. by jrtom · 7 years ago
  67. fd6b6e1 In ImmutableCollection.ArrayBasedBuilder, keep a forceCopy flag to allow builder types to force a copy even if the entire array has not been used. by lowasser · 7 years ago
  68. 6290373 Fix typo in AbstractService log message. by Josh Hawkins · 7 years ago
  69. ec242d7 Ignore the lazyStackTraceIsLazy test on Java 9, for now. by dpb · 7 years ago
  70. ecdcdf0 Fix broken Javadoc link in UnsignedLongs.toString(long) by Josh Hawkins · 7 years ago
  71. 6388c64 Suppress tests broken by CL 164180554's emulator upgrade to API level 15. by cpovirk · 7 years ago
  72. d37fe31 Update Guava README for 23.0 and update snapshot versions. by cgdecker · 7 years ago
  73. a8373f1 Catch NoClassDefFoundError and generic Error, the types thrown by JVM8 and by modern versions of Android. by cpovirk · 7 years ago
  74. 4740f24 Avoid dependency on CharMatcher in BaseEncoding. by lowasser · 7 years ago
  75. 106e7ee Update removal data for dereference(). by cpovirk · 7 years ago
  76. 14c0d5f Minor fix in comment. by rajivprab · 7 years ago
  77. a4c537a Change CacheBuilder constructor modifier to private, and by Igor Kryvenko · 7 years ago
  78. 59dbb45 Shuffling from internal-only change. by ptucker · 7 years ago
  79. 74f5cca Make ListenableScheduledFuture GwtCompatible. by mjiang · 7 years ago
  80. 8f203c4 Avoid importing ImmutableList from Ordering. by lowasser · 7 years ago
  81. 719f2c5 Add collectors for ImmutableRangeSet and ImmutableRangeMap. by diamondm · 7 years ago
  82. 2c8e335 Add notes about Java8 to UnsignedBytes, UnsignedInts, and UnsignedLongs. by kak · 7 years ago
  83. 2d4c517 Remove Maven version badge from README. by cgdecker · 7 years ago
  84. 40e4be4 Mention 23.0-rc1 in Guava README. by cgdecker · 7 years ago
  85. 934e384 Use diamond operator. by cpovirk · 7 years ago
  86. f885eec Take advantage of suppressed exceptions in ServiceManager now that Guava is on Java 8. by diamondm · 7 years ago
  87. 0eebe15 Remove some methods that are scheduled for removal in 23.0, along with one that was apparently scheduled for removal in 21.0. by cgdecker · 7 years ago
  88. 04d8a7e Fix an interruption bug from CL 162649353, but do so in a way that doesn't reintroduce yet another bug that that CL fixed. by cpovirk · 7 years ago
  89. 2ed2c6f Warn a little more about weakKeys resulting in == key comparisons, even in the asMap view. by kevinb · 7 years ago
  90. 73e1731 Fix a bug in AbstractFuture.setFuture by lukes · 7 years ago
  91. 6d76473 Super-minor cleanup to AggregateFuture by lukes · 7 years ago
  92. 384deaf Plug ImmutableIntArray in Ints, etc. by kevinb · 7 years ago
  93. a732620 Forgot to specify equals(). by kevinb · 7 years ago
  94. f89c003 Add @ForOverride to AbstractFuture.afterDone now that https://github.com/google/error-prone/issues/342 is fixed. by cpovirk · 7 years ago
  95. cf14780 Fix interruption leak in submitAsync and whenAllComplete().callAsync(). by clm · 7 years ago
  96. 71703b4 Use specialized spliterators for Primitives.asList utilities. Addresses https://github.com/google/guava/issues/2874 . by lowasser · 7 years ago
  97. f6af859 Rollforward [] which was rolled back in [] because it by lukes · 7 years ago
  98. 5513439 Automated g4 rollback of changelist 162220754. by lukes · 7 years ago
  99. 73a1a49 Add deprecation notice to Futures.dereference by clm · 7 years ago
  100. ee12894 Implement ByteSource.asCharSource(charset).read() using the decoding string constructor instead of streaming the contents into a StringBuilder. by lukes · 7 years ago