1. 646e174 Add more missing @since 4.0 and remove references to *-3.0.jar in extensions' package-info.java files. by cgdecker · 9 years ago
  2. 1a30c07 Also fix usages of a couple of @Beta APIs. by cgdecker · 9 years ago
  3. bac730f Add missing @since tags for 4.0 by Ben McCann · 9 years ago
  4. 5e6c933 Implement more granular locks for a Singleton scope in Guice. by timofeyb · 9 years ago
  5. 06669e7 Merge pull request #911 from mcculls/dependency-stack-performance by Sam Berlin · 9 years ago
  6. 6b79ff8 Change initial DependencyStack size from 10 to 16 by Stuart McCulloch · 9 years ago
  7. 825f8c1 Some work on issue 910 -- ensure that anonymous keys & typeliterals don't by sameb · 9 years ago
  8. 02c489e Fix ModuleAnnotatedMethodScanners so that they scan modules installed in by sameb · 9 years ago
  9. af6a1df Move detailed javadoc description down to implementation class by Stuart McCulloch · 9 years ago
  10. 1f9c76b Improve performance of internal DependencyStack collection by Stuart McCulloch · 9 years ago
  11. 54da0e3 Rework the public API into scanning for additional @Provides-like annotations. by sameb · 9 years ago
  12. 0910c1e Create a dagger/guice interoperability library, which permits (with limitations) the use of Dagger modules in Guice. by cgruber · 9 years ago
  13. 7445e44 Fix ElementSource attribution for ModuleAnnotatedMethodScanner bindings. by sameb · 9 years ago
  14. 9be698d Minor optimizations to InternalContext by lukes · 9 years ago
  15. 74519f5 Only warn one per dependency, otherwise log spam can destroy disks. This time w/o using Sets.newConcurrentHashSet., by sameb · 9 years ago
  16. e18906a Add some SPI methods to allow users to annotate Module methods with arbitrary by sameb · 9 years ago
  17. 9867f9c Implement my old patch for issue #366, with some tweaks. This does the by sameb · 9 years ago
  18. 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 · 9 years ago
  19. 60826c0 Optimization: move ParameterizedTypeImpl checks out of line. by bulach · 9 years ago
  20. fdbdc63 Fix linked binding behavior with requireExplicitBindings() in the parent. by Tavian Barnes · 9 years ago
  21. 6c9726f Clarify some documentation about linked bindings and child injectors. by Tavian Barnes · 9 years ago
  22. 1dd0a91 Fix https://github.com/google/guice/issues/888. by Tavian Barnes · 9 years ago
  23. ba0cff0 Fix for https://github.com/google/guice/issues/884 -- don't let by sameb · 9 years ago
  24. 3c0a500 rm unchecked suppression. by Sam Berlin · 10 years ago
  25. 0c3a880 Robustness: wrap any calls to System.getProperty in case security is enabled. by Stuart McCulloch · 10 years ago
  26. d7aa953 Making Singleton's creation lock less coarse. by timofeyb · 10 years ago
  27. 6247159 Results of 'mvn license:format -N' plus some minor tweaking by Stuart McCulloch · 10 years ago
  28. 1433eff Delete unused code from WeakKeySet. by dweis · 10 years ago
  29. 117b2a6 When checking for Logger keys in providermethodsmodule don't create a new Key<Logger> for every parameter. Instead use a constant. by lukes · 10 years ago
  30. d1e965c De-duplicate equivalent scope bindings. by Tavian Barnes · 10 years ago
  31. 0583644 fix typo in javadoc by Ryan Berdeen · 10 years ago
  32. c34e018 Implement binding deduplication for multibinder & mapbinder in a different way. by Sam Berlin · 10 years ago
  33. 22de684 Fix typo in JavaDoc for c.g.inject.internal.MoreTypes#getGenericSupertype by Sam Berlin · 10 years ago
  34. 1285790 Guice: Fix for issue 295 (@ProvidedBy doesn't work with enums) by Sam Berlin · 10 years ago
  35. 58d6074 Set a bit in ProviderMethodsModule to see if we are generating provider methods for gin. If we are, skip fast class generation. by Sam Berlin · 10 years ago
  36. 6b3086d Cleanup javadocs. This makes the following changes: by Sam Berlin · 10 years ago
  37. 76be88e Detect overrides of @Provides method and add an error for each one. by Sam Berlin · 10 years ago
  38. c00df28 Automated code cleanups by internal tool. by Sam Berlin · 10 years ago
  39. ca81e59 Submitting Stuart McCulloch's patch from https://github.com/sonatype/sisu-guice/blob/master/PATCHES/GUICE_288_decouple_thread_local.patch. by Sam Berlin · 10 years ago
  40. 53a5936 Ignore synthetic bridge methods during provider method lookup. by Sam Berlin · 10 years ago
  41. 409e0f5 Try to use cglibs FastClass to invoke @Provides methods, it's faster! by Sam Berlin · 10 years ago
  42. 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
  43. f83bda3 Update provision & creation exception messages. The previous messages caused misdiagnosis, as users think "There was a Guice error" when there is an error in user code. by Sam Berlin · 10 years ago
  44. 628ec00 Make WeakKeySet less susceptible to programming errors by making the backingMap key a concrete type. by Sam Berlin · 10 years ago
  45. 4754a22 Add equals/hashCode to Providers.guicify(...) results. by Sam Berlin · 10 years ago
  46. 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
  47. f5349cd Use the correct key to check for blacklisting of multibound elements. by Sam Berlin · 10 years ago
  48. 57aad21 Change Opcodes.ASM4 to Opcodes.ASM5, to work with java8 lambdas. Also update opensource build to ASM 5.0.1. by Sam Berlin · 10 years ago
  49. 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
  50. c013fac *** Reason for rollback *** by Sam Berlin · 10 years ago
  51. bab9b60 Enhance WeakKeySet to auto evict keys and avoid calling toString on Keys. by Christian Edward Gruber · 10 years ago
  52. 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
  53. 4ab2a90 Memoize Key#toString() to reduce allocations. by Christian Edward Gruber · 10 years ago
  54. 29ce12b Add an SPI for @Provides methods (using the extensions SPI) so that users can by Sam Berlin · 10 years ago
  55. 8ad60eb Change LinkedBindingBuilder.toProvider(Provider) to accept a jsr330 provider, by Sam Berlin · 10 years ago
  56. e91540e Fixes issue 652. Allow method interceptors to capture the method & call it later from a by Sam Berlin · 10 years ago
  57. 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
  58. 31d8fbf Fix issue 723 -- minor optimizations to TypeConverterBindingProcessor. by Sam Berlin · 10 years ago
  59. ebe9f05 Re-committed the rolled back CL, after fixing internal projects. by Sam Berlin · 10 years ago
  60. 35023b8 Fix issue 779 -- deduplicate listeners & interceptors. Using a slightly modified patch from Tavian Barnes, thanks Tavian! by Sam Berlin · 10 years ago
  61. a4c16e8 Rolled back commit -- broke some internal projects. by Sam Berlin · 10 years ago
  62. be1bbda Fix issue 748 -- add a protected method in PrivateModule for binding provision by Sam Berlin · 10 years ago
  63. c5848c0 Optimize RecordingBinder.withSource so it doesn't always create a new binder. by Sam Berlin · 10 years ago
  64. 9b268e4 Pass the correct stage to Modules.override, so currentStage() works. by Sam Berlin · 10 years ago
  65. 3382133 Make guice build with javac 8. by Christian Edward Gruber · 11 years ago
  66. 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
  67. a922826 Make named classes for anonymous Modules so they appear prettier (and useful) in error messages. by Christian Edward Gruber · 11 years ago
  68. ba5acdf Allow turning off stack trace collection in Guice. by Christian Edward Gruber · 11 years ago
  69. 2e39ef7 Print out the modules that led to a binding during error reporting, but by Christian Edward Gruber · 11 years ago
  70. 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
  71. 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
  72. 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
  73. 2d45468 Fix Inject documentation, as method injection happens after field injection. by Christian Edward Gruber · 11 years ago
  74. 2bb4771 Exposes ElementSource at getSource() methods. by Christian Edward Gruber · 11 years ago
  75. 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
  76. 7839f29 Fix typo in comment for Provides annotation. by Christian Edward Gruber · 11 years ago
  77. 4d58049 Fix random bitwise | to be a real ||. by Christian Edward Gruber · 11 years ago
  78. 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
  79. 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
  80. cadabc1 Switch InternalContext to store dependency/source pairs more compactly. by Christian Edward Gruber · 11 years ago
  81. 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
  82. 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
  83. 2cc8ce9 Clear context during provision. Fixes http://code.google.com/p/google-guice/issues/detail?id=743 by Christian Edward Gruber · 11 years ago
  84. 978ed86 Fix a == vs .equals() bug in MoreTypes. by Christian Edward Gruber · 11 years ago
  85. bf2b16c Add support for ProvisionListeners to notify on toInstance & constant bindings. by Christian Edward Gruber · 11 years ago
  86. 2303007 Upgrade to cglib 3.0 adn ASM 4.0. by Christian Edward Gruber · 11 years ago
  87. c756777 Add Binder.requireAtInjectOnConstructors, to force Guice to require @Inject annotations on constructors. by Sam Berlin · 12 years ago
  88. 2823a38 Fix issue 643 using a slightly modified version of the patch provided by Stuart. by Sam Berlin · 12 years ago
  89. 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 · 12 years ago
  90. 88ee52d Fix issue 670, keep values from MapBinder & Multibinder distinct. by Sam Berlin · 12 years ago
  91. 1c9b92a Fix issue 643 using a slightly modified version of the patch provided by Stuart. by Sam Berlin · 12 years ago
  92. 45ef017 Cleanup a few things: by Sam Berlin · 12 years ago
  93. d9b62c2 Do not create a new visitor instance for every call to isSingleton. by Sam Berlin · 12 years ago
  94. 66094fb Add isEagerSingleton. by Sam Berlin · 12 years ago
  95. 9ee53e9 Defer building of error messages for by Sam Berlin · 13 years ago
  96. f74ee67 Better errors when using binder(), etc. outside of configure(). by Sam Berlin · 13 years ago
  97. 91a844c by guice.mirrorbot@gmail.com · 13 years ago
  98. be10b4c by guice.mirrorbot@gmail.com · 13 years ago
  99. 6b7e718 by guice.mirrorbot@gmail.com · 13 years ago
  100. b405e04 by guice.mirrorbot@gmail.com · 13 years ago