1. 5e6c933 Implement more granular locks for a Singleton scope in Guice. by timofeyb · 9 years ago
  2. 825f8c1 Some work on issue 910 -- ensure that anonymous keys & typeliterals don't by sameb · 10 years ago
  3. 02c489e Fix ModuleAnnotatedMethodScanners so that they scan modules installed in by sameb · 10 years ago
  4. 54da0e3 Rework the public API into scanning for additional @Provides-like annotations. by sameb · 10 years ago
  5. 7445e44 Fix ElementSource attribution for ModuleAnnotatedMethodScanner bindings. by sameb · 10 years ago
  6. e18906a Add some SPI methods to allow users to annotate Module methods with arbitrary by sameb · 10 years ago
  7. 9867f9c Implement my old patch for issue #366, with some tweaks. This does the by sameb · 10 years ago
  8. f11bf2d Make Guice ignore validation of scope annotations on abstract types for types annotated with @Component. This allows one to provide Dagger Components with Guice Injectors. by dweis · 10 years ago
  9. ac3cf7c Remove usages of '_' as a one-character identifier by cushon · 10 years ago
  10. fdbdc63 Fix linked binding behavior with requireExplicitBindings() in the parent. by Tavian Barnes · 10 years ago
  11. a59c18d Better error message checks in JitBindingsTest. by Tavian Barnes · 10 years ago
  12. 1dd0a91 Fix https://github.com/google/guice/issues/888. by Tavian Barnes · 10 years ago
  13. ba0cff0 Fix for https://github.com/google/guice/issues/884 -- don't let by sameb · 10 years ago
  14. d7aa953 Making Singleton's creation lock less coarse. by timofeyb · 10 years ago
  15. d1e965c De-duplicate equivalent scope bindings. by Tavian Barnes · 10 years ago
  16. c34e018 Implement binding deduplication for multibinder & mapbinder in a different way. by Sam Berlin · 10 years ago
  17. 1285790 Guice: Fix for issue 295 (@ProvidedBy doesn't work with enums) by Sam Berlin · 10 years ago
  18. 7715581 Fix last flaky test (that I know of). The problem was we were asserting that something existed in a child injector (through inference, by checking it was in the parent blacklist), but if GC ran it could have been ejected from the parent blacklist (since the child injector isn't strongly referenced anywhere). by Sam Berlin · 10 years ago
  19. 0558b32 Update references in code & configuration to point to github instead of by Sam Berlin · 10 years ago
  20. d08bba9 More flake fixing: Refactor WeakKeySetUtils into one spot, make everything use by Sam Berlin · 10 years ago
  21. 6ae9ff6 Wrap GcFinalization usage around wrappers that also await a ReferenceQueue. I by Sam Berlin · 10 years ago
  22. 76be88e Detect overrides of @Provides method and add an error for each one. by Sam Berlin · 10 years ago
  23. 26d0006 Change the line number test to generate a class with javax.inject.Inject rather than c.g.inject.Inject. by Sam Berlin · 10 years ago
  24. c00df28 Automated code cleanups by internal tool. by Sam Berlin · 10 years ago
  25. 53a5936 Ignore synthetic bridge methods during provider method lookup. by Sam Berlin · 10 years ago
  26. 409e0f5 Try to use cglibs FastClass to invoke @Provides methods, it's faster! by Sam Berlin · 10 years ago
  27. 4daa205 Ignore synthetic/bridge methods when determining if a method should be injected. This broke injections for different reasons before & after java8, but the fix is the same for both. by Sam Berlin · 10 years ago
  28. 4754a22 Add equals/hashCode to Providers.guicify(...) results. by Sam Berlin · 10 years ago
  29. 14e2703 Implement hashCode and equals on type returned by Providers.of(...). There doesn't seem to be any reason *not* to provide these methods, and it means downstream code that does by Sam Berlin · 10 years ago
  30. a5b2b1f Suppress compiler errors reported by an error-prone checker ([]) for tests. by Sam Berlin · 10 years ago
  31. d57f8ec The bug in the test that became flaky has been fixed. Note that this is not a strict rollback of the rollback - I've added protection against the NPE that would happen if there's a GC between the isBlacklisted call and the getSources call. by Sam Berlin · 10 years ago
  32. c013fac *** Reason for rollback *** by Sam Berlin · 10 years ago
  33. bab9b60 Enhance WeakKeySet to auto evict keys and avoid calling toString on Keys. by Christian Edward Gruber · 10 years ago
  34. 4ab2a90 Memoize Key#toString() to reduce allocations. by Christian Edward Gruber · 10 years ago
  35. 29ce12b Add an SPI for @Provides methods (using the extensions SPI) so that users can by Sam Berlin · 11 years ago
  36. 8ad60eb Change LinkedBindingBuilder.toProvider(Provider) to accept a jsr330 provider, by Sam Berlin · 11 years ago
  37. 3236b10 Replace guava 11 with 16 and extract Guava as a separate dependency. by Christian Edward Gruber · 11 years ago
  38. e91540e Fixes issue 652. Allow method interceptors to capture the method & call it later from a by Sam Berlin · 11 years ago
  39. 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 · 11 years ago
  40. ebe9f05 Re-committed the rolled back CL, after fixing internal projects. by Sam Berlin · 11 years ago
  41. 35023b8 Fix issue 779 -- deduplicate listeners & interceptors. Using a slightly modified patch from Tavian Barnes, thanks Tavian! by Sam Berlin · 11 years ago
  42. a4c16e8 Rolled back commit -- broke some internal projects. by Sam Berlin · 11 years ago
  43. be1bbda Fix issue 748 -- add a protected method in PrivateModule for binding provision by Sam Berlin · 11 years ago
  44. 9b268e4 Pass the correct stage to Modules.override, so currentStage() works. by Sam Berlin · 11 years ago
  45. a922826 Make named classes for anonymous Modules so they appear prettier (and useful) in error messages. by Christian Edward Gruber · 11 years ago
  46. ba5acdf Allow turning off stack trace collection in Guice. by Christian Edward Gruber · 11 years ago
  47. 2e39ef7 Print out the modules that led to a binding during error reporting, but by Christian Edward Gruber · 11 years ago
  48. 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
  49. 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
  50. 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
  51. 2bb4771 Exposes ElementSource at getSource() methods. by Christian Edward Gruber · 11 years ago
  52. 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
  53. 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
  54. 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
  55. 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
  56. 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
  57. 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
  58. 2cc8ce9 Clear context during provision. Fixes http://code.google.com/p/google-guice/issues/detail?id=743 by Christian Edward Gruber · 11 years ago
  59. 978ed86 Fix a == vs .equals() bug in MoreTypes. by Christian Edward Gruber · 11 years ago
  60. bf2b16c Add support for ProvisionListeners to notify on toInstance & constant bindings. by Christian Edward Gruber · 11 years ago
  61. c756777 Add Binder.requireAtInjectOnConstructors, to force Guice to require @Inject annotations on constructors. by Sam Berlin · 12 years ago
  62. 2823a38 Fix issue 643 using a slightly modified version of the patch provided by Stuart. by Sam Berlin · 13 years ago
  63. d51292d Change ProvisionListener to expose Binding instead of Key, and change bindListener to use a Matcher for Binding instead of Key. This is a backwards incompatible change, but we haven't released yet, so it's worth doing. by Sam Berlin · 13 years ago
  64. 88ee52d Fix issue 670, keep values from MapBinder & Multibinder distinct. by Sam Berlin · 13 years ago
  65. 1c9b92a Fix issue 643 using a slightly modified version of the patch provided by Stuart. by Sam Berlin · 13 years ago
  66. 66094fb Add isEagerSingleton. by Sam Berlin · 13 years ago
  67. ee9a8f3 Fix TypesTest to use an actual parameterized array. Necessary because JDK7 got a little smarter in its getActualTypeArguments method where it returns a Class if the array type isn't generic, and GenericArrayType only if it was actually generic. by Sam Berlin · 13 years ago
  68. 6b7e718 by guice.mirrorbot@gmail.com · 13 years ago
  69. 05bf8e5 by guice.mirrorbot@gmail.com · 13 years ago
  70. efa4e9f by guice.mirrorbot@gmail.com · 13 years ago
  71. 404ffc3 by guice.mirrorbot@gmail.com · 13 years ago
  72. de4cc32 by guice.mirrorbot@gmail.com · 13 years ago
  73. ee443bc by guice.mirrorbot@gmail.com · 13 years ago
  74. b7a02b0 by sberlin · 13 years ago
  75. ec76179 by sberlin · 13 years ago
  76. a23937e by sberlin · 13 years ago
  77. 4e11457 fixup whitespace by sberlin · 13 years ago
  78. d9c913a switch Guice from manually repackaging Guava to depending on Guava. it's still jarjar'd right now, which is causing a ~400k increase in guice-snapshot.jar. next step is to switch to ProGuard to remove the unnecessary code and cut it back down (even further?!). this will let people build from Guice source and depend directly on Guava code without having to worry about hiding internal/util. by sberlin · 13 years ago
  79. 8614255 refactor removeSuppressedTests out of AllTests, to remove the circular dependency between it & StrictContainerTestSuite. by sberlin · 13 years ago
  80. ba75f35 issue 631 -- expose dependency hierarchy in ProvisionListener. by sberlin · 13 years ago
  81. 132a5db issue 78 - provision interception. this only lets you listen to provisions (both before & after provisioning occurs), it does not let you change the return value of the provision. by sberlin · 13 years ago
  82. d5737a6 fix @ProvidedBy circular dependencies. by sberlin · 13 years ago
  83. c94f450 assert that ProviderInternalFactory doesn't think circular dependencies exist when the providers are in different PrivateModules, temporarily remove check for @ProvidedBy due to other things that need fixing first. by sberlin · 13 years ago
  84. 425d099 fix provider circular dependency detection to use the Key it is creating, not the Key it is fulfulling, to catch errors sooner. by sberlin · 13 years ago
  85. e6ce188 fix issue 626 -- properly handle circular proxies between providers (either failing or proxying), prevents StackOverflowErrors. by sberlin · 13 years ago
  86. be2505a specify that interceptors are called in the order they are listed in bindInterceptor(Matcher, Matcher, Interceptor...). add a test that guarantees it. by sberlin · 13 years ago
  87. d4ec8b0 update to asm-3.3.1, update to new cglib that fixes a bug with bridge methods, add test that verifies the fix works. (previously it worked within Eclipse but not javac because eclipse's compiler wrote out bridge methods differently.) by sberlin · 13 years ago
  88. 9207317 fix issue 614 -- admittedly not the prettiest solution, but it works. by sberlin · 14 years ago
  89. 9cdfe3a issue 610 - let requireExplicitBindings still allow TypeConverters to create ConvertedConstantBindings. by sberlin · 14 years ago
  90. 1e5fc1d fix typo, make test not loop forever. by sberlin · 14 years ago
  91. 6e4e497 update stack trace pruning (for AOP-internal methods & generated methods) to include causes. by sberlin · 14 years ago
  92. cc17f14 significantly improve error reporting for binding a key already bound in a child injector or private module. include all sources in the error msg (since it can be in many sibling private modules or child injectors), including whether or not it as a JIT binding. by sberlin · 14 years ago
  93. bd7a14b make sure tests can run in on dist code, and no_aop can still build. by sberlin · 14 years ago
  94. b281953 test for issue 608. by sberlin · 14 years ago
  95. b7a4174 rm printStackTrace. by sberlin · 14 years ago
  96. 159cd86 validate that issue 432 is not a problem anymore. by sberlin · 14 years ago
  97. 45ca7f6 issue 345 - better error message for private modules. show the source of a child binding instead of just saying its in a child injector. also give a hint that you may have wanted to expose the binding. by sberlin · 14 years ago
  98. c17c5a9 issue 574 - don't freak out on generated classes when trying to get line numbers. by sberlin · 14 years ago
  99. 82d0fdb rework method interception so that methods that aren't intercepted don't go through cglib, reducing the number of stack frames in most method calls. this has a slight side effect that additional proxy classes are generated for a single class if (and only if) the intercepted methods change. if the intercepted methods remain the same, then the proxy classes will continue to be shared (so things like assistedinject will not blow up the heap). by sberlin · 14 years ago
  100. e0f5412 Remove AOP boilerplate from user visible stack traces. by limpbizkit@gmail.com · 14 years ago