1. c013fac *** Reason for rollback *** by Sam Berlin · 10 years ago
  2. d1d7ef3 Fix MapBinder's duplicate key error message so that more than one binding with the same source gets listed twice. This was causing a problem with the tests that turned stack traces off, because the two different bindings line numbers were both changed to "Unknown Source", so it collapsed them into a single item. by Christian Edward Gruber · 10 years ago
  3. bab9b60 Enhance WeakKeySet to auto evict keys and avoid calling toString on Keys. by Christian Edward Gruber · 10 years ago
  4. cc8870b Add OptionalBinderTest into multibindings AllTests. by Christian Edward Gruber · 10 years ago
  5. af24f63 Adds a new OptionalBinder. OptionalBinder allows frameworks to setup bindings for items that user code may or may not bind. It also allows frameworks to set default values that users can override. by Christian Edward Gruber · 10 years ago
  6. cade897 Preparations for OptionalBinder. This fixes MapBinder's SPI so elements from different MapBinders are distinct, and also fixes ProviderLookup's Provider so it exposes its dependency, which allows MapBinder to properly find its dependencies. by Christian Edward Gruber · 10 years ago
  7. 4ab2a90 Memoize Key#toString() to reduce allocations. by Christian Edward Gruber · 10 years ago
  8. af07a48 Unbreak MOE by adding a .gitignore to extensions (suppressing build/ folders under it) and narrowing the exclusion of bduild folders in the root to just at the root. This lets /lib/build exist and be used, including by MOE. by Christian Edward Gruber · 10 years ago
  9. a78c488 Fix up API diffs upload script. by Christian Edward Gruber · 10 years ago
  10. 509e354 Added updated 4.0 api diffs. by Christian Edward Gruber · 10 years ago
  11. 47e16bf Revert "Added updated 4.0 api diffs." by Christian Edward Gruber · 10 years ago
  12. 016d079 Fix uploadJavadocs.sh script to work with git. by Christian Edward Gruber · 10 years ago
  13. 154c0bd Added updated Javadocs. by Christian Edward Gruber · 10 years ago
  14. 8240b43 Added updated 4.0 api diffs. by Christian Edward Gruber · 10 years ago
  15. 80ed818 Fix .gitignore to account for extensions. by Christian Edward Gruber · 10 years ago
  16. b6c35cd Update the opensource jars to asm 5.0, fix up the POMs & ant scripts. by Sam Berlin · 10 years ago
  17. 8859456 Update MapBinder so it fails on duplicate bindings with a more descriptive error message, including all the keys that had duplicates and where the duplicate bindings were bound. Example error message that has 'a' bound twice and 'b' bound twice: by Sam Berlin · 10 years ago
  18. 29ce12b Add an SPI for @Provides methods (using the extensions SPI) so that users can by Sam Berlin · 10 years ago
  19. 10f305d This change removes final from fields annotated with @Inject. In addition to being discouraged due to weak semantics [1], it is incompatible with the standard javax.inject.Inject annotation [2]. by Sam Berlin · 10 years ago
  20. c33e73c Improve OutOfScopeException so that it tells you which key it was trying to by Sam Berlin · 10 years ago
  21. 8ad60eb Change LinkedBindingBuilder.toProvider(Provider) to accept a jsr330 provider, by Sam Berlin · 10 years ago
  22. 883fe03 Make ServletScopes#scopeRequest slightly more efficient for larger seed maps. by Sam Berlin · 10 years ago
  23. 41c1c29 Add ignores for ant build spam. by Christian Edward Gruber · 10 years ago
  24. 3236b10 Replace guava 11 with 16 and extract Guava as a separate dependency. by Christian Edward Gruber · 10 years ago
  25. bb63dc1 Revert parts of the .gitignore fix related to ant. by Christian Edward Gruber · 10 years ago
  26. a2aab02 update gitignore to properly avoid maven target folders. by Christian Edward Gruber · 10 years ago
  27. e91540e Fixes issue 652. Allow method interceptors to capture the method & call it later from a by Sam Berlin · 10 years ago
  28. 0e896db A Message should have only one source but as it is used in Errors, currently it can have multiple sources. The Message objects is returned from two public methods(Elements#getElements() and Errors#getMessages()) that make any changes in its method declarations difficult. As the first step, I am going to remove all calls to the Message constructor that receives multiple sources from []. So, the only calls will be from Errors that I will deal with separately. by Sam Berlin · 10 years ago
  29. 31d8fbf Fix issue 723 -- minor optimizations to TypeConverterBindingProcessor. by Sam Berlin · 10 years ago
  30. 95295fd Add latest api diffs & latest javadoc again. by Sam Berlin · 10 years ago
  31. 7533957 delete latest-javadoc & latest-api-diffs one more time to try this again... by Sam Berlin · 10 years ago
  32. 1c2a6ad fix jdiff to point to correct javadoc location, and fix javadoc to have --since for 3.0. by Sam Berlin · 10 years ago
  33. 638f614 add javadoc to api-diffs by Sam Berlin · 10 years ago
  34. 05ca0df updated latest api diffs by Sam Berlin · 10 years ago
  35. adf1c61 remove latest-api-diffs. by Sam Berlin · 10 years ago
  36. 0593b00 add new latest javadocs. by Sam Berlin · 10 years ago
  37. b1a1ef7 remove old latest-javadocs by Sam Berlin · 10 years ago
  38. 1047e98 Fix no_aop build (make it easier to replace the cglib tokens in the ant build files). by Sam Berlin · 10 years ago
  39. e812003 Update to asm 4.2, cglib 3.1. Fix .gitignore to only ignore /build, not every dir named 'build'. by Sam Berlin · 10 years ago
  40. ebe9f05 Re-committed the rolled back CL, after fixing internal projects. by Sam Berlin · 10 years ago
  41. 35023b8 Fix issue 779 -- deduplicate listeners & interceptors. Using a slightly modified patch from Tavian Barnes, thanks Tavian! by Sam Berlin · 10 years ago
  42. 3338a48 Fix issue 734 -- MapBinder doesn't allow injection of Map<K, javax.inject.Provider<V>>. by Sam Berlin · 10 years ago
  43. 32a8f24 Fix issue 720 -- minor build fixes, from the issue: by Sam Berlin · 10 years ago
  44. a4c16e8 Rolled back commit -- broke some internal projects. by Sam Berlin · 10 years ago
  45. be1bbda Fix issue 748 -- add a protected method in PrivateModule for binding provision by Sam Berlin · 10 years ago
  46. c5848c0 Optimize RecordingBinder.withSource so it doesn't always create a new binder. by Sam Berlin · 10 years ago
  47. 7246088 Fix typo, alertnative -> alternative. (Issue 777.) by Sam Berlin · 10 years ago
  48. 9b268e4 Pass the correct stage to Modules.override, so currentStage() works. by Sam Berlin · 10 years ago
  49. 5e5e2f5 Don't unnecessarily invoke Key#toString() when running in non-HTTP based RequestScope. Key#toString() is not memoized (unlike hashCode) and these allocations end up being consistently visible in our garbage sampling. by Sam Berlin · 10 years ago
  50. 3382133 Make guice build with javac 8. by Christian Edward Gruber · 11 years ago
  51. e1197a9 Update Guice's maven build system to run the unit tests in three configurations, representing the three different values for stack-trace inclusion in error messages. Additionally, modify the open-source InternalFlags to log a warning if a value is passed to the flag that does not correspond to the Enum. by Christian Edward Gruber · 11 years ago
  52. a922826 Make named classes for anonymous Modules so they appear prettier (and useful) in error messages. by Christian Edward Gruber · 11 years ago
  53. ba5acdf Allow turning off stack trace collection in Guice. by Christian Edward Gruber · 11 years ago
  54. 2e39ef7 Print out the modules that led to a binding during error reporting, but by Christian Edward Gruber · 11 years ago
  55. 401a6a4 Added updated 4.0 api diffs. by Christian Edward Gruber · 11 years ago
  56. 54565b2 Update script for api diffs. by Christian Edward Gruber · 11 years ago
  57. 8743a0b Convert from MapMaker to CacheBuilder. Change mostly from Stewart McCulloch mcculls@gmail.com modulo internal build issues, a few tweaks and dealing with some test flakage in a functional test. by Christian Edward Gruber · 11 years ago
  58. c01ba1d Convert an anonymous subclass of ThreadLocal in the implementation of InjectorImpl to a nested class, thus eliminating its implicit parent reference. This implicit parent reference creates some additional work during debugging and is unnecessary. by Christian Edward Gruber · 11 years ago
  59. 33736ec Because error-prone treats more than one scope annotation on a class as a compile-time error, existing builds that upgrade to error prone will fail. To support that, given that these are tests of the run-time version of the failure, add a supporession to the usages. by Christian Edward Gruber · 11 years ago
  60. b0aeeda Remove loophole for making non-canonical Keys. This makes the behaviour of Key.get(new TypeLiteral<T>() {}) and new Key<T>() {} the same. by Christian Edward Gruber · 11 years ago
  61. 2d45468 Fix Inject documentation, as method injection happens after field injection. by Christian Edward Gruber · 11 years ago
  62. 2bb4771 Exposes ElementSource at getSource() methods. by Christian Edward Gruber · 11 years ago
  63. 96e81ba An alternative way to support ShareableModule, Modules.override and Multibinder: use annotations that compare equal iff the binding strategy matches, so Guice will dedupe for us. by Christian Edward Gruber · 11 years ago
  64. 6c69bcf An alternative way to support ShareableModule, Modules.override and Multibinder: use annotations that compare equal iff the binding strategy matches, so Guice will dedupe for us. by Christian Edward Gruber · 11 years ago
  65. 0130391 Doing a cleanup before we can make having @javax.inject.Inject on an abstract method a compile error. I am suppressing the error for the test case that intentionally tests this error. by Christian Edward Gruber · 11 years ago
  66. 4352fa0 Added suppression to @javax.inject.Inject on a final field test case so we can make it a compiler error by Christian Edward Gruber · 11 years ago
  67. 7839f29 Fix typo in comment for Provides annotation. by Christian Edward Gruber · 11 years ago
  68. 3d3a9fa Give more information when duplicate elements are found in a multibound set. by Christian Edward Gruber · 11 years ago
  69. 4d58049 Fix random bitwise | to be a real ||. by Christian Edward Gruber · 11 years ago
  70. 51829aa Automated g4 rollback of changelist 50265868. by Christian Edward Gruber · 11 years ago
  71. 28c75b2 Give more information when duplicate elements are found in a multibound set. by Christian Edward Gruber · 11 years ago
  72. 605bd08 Updates the internals of an Element's source to keep track of the Modules that installed it, as well as the complete stack trace leading to the binding. The data is not yet exposed in Element.getSource(), but will be exposed in a future CL. by Christian Edward Gruber · 11 years ago
  73. a0e7344 Restore versions to 4.0-SNAPSHOT by Christian Edward Gruber · 11 years ago
  74. 359c5c3 Fix up poms to properly sign on deploy, provide source and javadoc jars per sonatype's requirements, and bump the API version to 1.4 for OSGI components. by Christian Edward Gruber · 11 years ago
  75. ce48fa8 Bump version numbers to release 4.0-beta. by Christian Edward Gruber · 11 years ago
  76. 97825f9 Add ignores file. by Christian Edward Gruber · 11 years ago
  77. 9e2d95b Clean up some formatting (includes some format artifacts from internal changes), and remove executable bit from several files which do not need them. by Christian Edward Gruber · 11 years ago
  78. cadabc1 Switch InternalContext to store dependency/source pairs more compactly. by Christian Edward Gruber · 11 years ago
  79. d9e0545 Reduce the memory consumption of SourceProvider instances by keeping a reference to the parent object instead of copying all class names to a new object. by Christian Edward Gruber · 11 years ago
  80. 3f42514 Fix to pom.xml to address ASM4/CGLIB3 upgrade (from Stuart McCulloch) by Christian Edward Gruber · 11 years ago
  81. 8f19635 Add logging for when AssistedInject falls into non-optimized mode, so people can take action and fix it. by Christian Edward Gruber · 11 years ago
  82. 9f8b438 Use a single UniqueAnnotation instead of creating a new one each time. by Christian Edward Gruber · 11 years ago
  83. e391585 Change Key so that it upgrades Annotation classes where all methods have default values into an instance of the Annotation with the defaults as values, so that: by Christian Edward Gruber · 11 years ago
  84. 2cc8ce9 Clear context during provision. Fixes http://code.google.com/p/google-guice/issues/detail?id=743 by Christian Edward Gruber · 11 years ago
  85. ad6584a Fix issue 663: Grapher is producing corrupt graphs by Christian Edward Gruber · 11 years ago
  86. 978ed86 Fix a == vs .equals() bug in MoreTypes. by Christian Edward Gruber · 11 years ago
  87. 45d86df Fix http://code.google.com/p/google-guice/issues/detail?id=742 by having assistedinject fail if the target implementation class has a scop by Christian Edward Gruber · 11 years ago
  88. 94c2d2c Suppress a warning in advance that will be a run-time error in Guice in a subsequent commit, and which will be added to error-prone and caught at compile-time for those who use it. by Christian Edward Gruber · 11 years ago
  89. 882330d HttpServletRequest#getCookies() can return null; checks that in ContinuingHttpServletRequest. by Christian Edward Gruber · 11 years ago
  90. bf2b16c Add support for ProvisionListeners to notify on toInstance & constant bindings. by Christian Edward Gruber · 11 years ago
  91. a1867f8 update cglib dependency in poms. by Christian Edward Gruber · 11 years ago
  92. 2303007 Upgrade to cglib 3.0 adn ASM 4.0. by Christian Edward Gruber · 11 years ago
  93. e5ed5b4 Add an @Inject constructor to DefaultFilterPipeline so services which depend upon it can be used with Modules.requireAtInjectOnConstructorsModule() by Christian Edward Gruber · 11 years ago
  94. 9111f48 Add a ISE exception subclass for scoping exceptions by Christian Edward Gruber · 11 years ago
  95. 7d72771 Actually pom versions should really be 3.1.0 to reflect the addition of a couple of new features (ProvisionListener SPI) by Stuart McCulloch · 12 years ago
  96. 7f6a136 Bump pom versions towards next maintenance release by Stuart McCulloch · 12 years ago
  97. 2804e19 Add explicit @Inject. by Sam Berlin · 12 years ago
  98. c756777 Add Binder.requireAtInjectOnConstructors, to force Guice to require @Inject annotations on constructors. by Sam Berlin · 12 years ago
  99. 389cb71 Fixed exception in contextpath string manipulation. by Sam Berlin · 12 years ago
  100. 1db3e79 Follow-up cleanup CL, removing an unnecessary parameter and strengthening typing. by Sam Berlin · 12 years ago