1. af6a1df Move detailed javadoc description down to implementation class by Stuart McCulloch · 9 years ago
  2. 1f9c76b Improve performance of internal DependencyStack collection by Stuart McCulloch · 9 years ago
  3. 54da0e3 Rework the public API into scanning for additional @Provides-like annotations. by sameb · 9 years ago
  4. 0910c1e Create a dagger/guice interoperability library, which permits (with limitations) the use of Dagger modules in Guice. by cgruber · 9 years ago
  5. 7445e44 Fix ElementSource attribution for ModuleAnnotatedMethodScanner bindings. by sameb · 9 years ago
  6. 9be698d Minor optimizations to InternalContext by lukes · 9 years ago
  7. 74519f5 Only warn one per dependency, otherwise log spam can destroy disks. This time w/o using Sets.newConcurrentHashSet., by sameb · 9 years ago
  8. e18906a Add some SPI methods to allow users to annotate Module methods with arbitrary by sameb · 9 years ago
  9. 9867f9c Implement my old patch for issue #366, with some tweaks. This does the by sameb · 9 years ago
  10. 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
  11. 60826c0 Optimization: move ParameterizedTypeImpl checks out of line. by bulach · 9 years ago
  12. ac3cf7c Remove usages of '_' as a one-character identifier by cushon · 9 years ago
  13. fdbdc63 Fix linked binding behavior with requireExplicitBindings() in the parent. by Tavian Barnes · 9 years ago
  14. a59c18d Better error message checks in JitBindingsTest. by Tavian Barnes · 9 years ago
  15. 6c9726f Clarify some documentation about linked bindings and child injectors. by Tavian Barnes · 9 years ago
  16. 1dd0a91 Fix https://github.com/google/guice/issues/888. by Tavian Barnes · 9 years ago
  17. ba0cff0 Fix for https://github.com/google/guice/issues/884 -- don't let by sameb · 9 years ago
  18. 3c0a500 rm unchecked suppression. by Sam Berlin · 10 years ago
  19. 0c3a880 Robustness: wrap any calls to System.getProperty in case security is enabled. by Stuart McCulloch · 10 years ago
  20. d7aa953 Making Singleton's creation lock less coarse. by timofeyb · 10 years ago
  21. 6247159 Results of 'mvn license:format -N' plus some minor tweaking by Stuart McCulloch · 10 years ago
  22. 1433eff Delete unused code from WeakKeySet. by dweis · 10 years ago
  23. 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
  24. d1e965c De-duplicate equivalent scope bindings. by Tavian Barnes · 10 years ago
  25. 2fb23e3 Miscellaneous build improvements: by Stuart McCulloch · 10 years ago
  26. 4ea2c2a Merge pull request #835 from also/patch-1 by Sam Berlin · 10 years ago
  27. 0583644 fix typo in javadoc by Ryan Berdeen · 10 years ago
  28. 22d4cca Fix the compareBuilds script (compares mvn vs ant generated jars) & add it to travis (before publishing snapshots). Comment out comparing the noaop builds since they're different right now, and update to asm 5.0.3 (which was a source of a difference). by Sam Berlin · 10 years ago
  29. c34e018 Implement binding deduplication for multibinder & mapbinder in a different way. by Sam Berlin · 10 years ago
  30. 22de684 Fix typo in JavaDoc for c.g.inject.internal.MoreTypes#getGenericSupertype by Sam Berlin · 10 years ago
  31. 1285790 Guice: Fix for issue 295 (@ProvidedBy doesn't work with enums) by Sam Berlin · 10 years ago
  32. 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
  33. 6b3086d Cleanup javadocs. This makes the following changes: by Sam Berlin · 10 years ago
  34. 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
  35. 0558b32 Update references in code & configuration to point to github instead of by Sam Berlin · 10 years ago
  36. d08bba9 More flake fixing: Refactor WeakKeySetUtils into one spot, make everything use by Sam Berlin · 10 years ago
  37. 6ae9ff6 Wrap GcFinalization usage around wrappers that also await a ReferenceQueue. I by Sam Berlin · 10 years ago
  38. 76be88e Detect overrides of @Provides method and add an error for each one. by Sam Berlin · 10 years ago
  39. 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
  40. c00df28 Automated code cleanups by internal tool. by Sam Berlin · 10 years ago
  41. 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
  42. 53a5936 Ignore synthetic bridge methods during provider method lookup. by Sam Berlin · 10 years ago
  43. 409e0f5 Try to use cglibs FastClass to invoke @Provides methods, it's faster! by Sam Berlin · 10 years ago
  44. 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
  45. 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
  46. 628ec00 Make WeakKeySet less susceptible to programming errors by making the backingMap key a concrete type. by Sam Berlin · 10 years ago
  47. 4754a22 Add equals/hashCode to Providers.guicify(...) results. by Sam Berlin · 10 years ago
  48. 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
  49. f5349cd Use the correct key to check for blacklisting of multibound elements. by Sam Berlin · 10 years ago
  50. a5b2b1f Suppress compiler errors reported by an error-prone checker ([]) for tests. by Sam Berlin · 10 years ago
  51. 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
  52. 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
  53. c013fac *** Reason for rollback *** by Sam Berlin · 10 years ago
  54. bab9b60 Enhance WeakKeySet to auto evict keys and avoid calling toString on Keys. by Christian Edward Gruber · 10 years ago
  55. 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
  56. 4ab2a90 Memoize Key#toString() to reduce allocations. by Christian Edward Gruber · 10 years ago
  57. b6c35cd Update the opensource jars to asm 5.0, fix up the POMs & ant scripts. by Sam Berlin · 10 years ago
  58. 29ce12b Add an SPI for @Provides methods (using the extensions SPI) so that users can by Sam Berlin · 10 years ago
  59. 8ad60eb Change LinkedBindingBuilder.toProvider(Provider) to accept a jsr330 provider, by Sam Berlin · 10 years ago
  60. 3236b10 Replace guava 11 with 16 and extract Guava as a separate dependency. by Christian Edward Gruber · 10 years ago
  61. e91540e Fixes issue 652. Allow method interceptors to capture the method & call it later from a by Sam Berlin · 10 years ago
  62. 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
  63. 31d8fbf Fix issue 723 -- minor optimizations to TypeConverterBindingProcessor. by Sam Berlin · 10 years ago
  64. ebe9f05 Re-committed the rolled back CL, after fixing internal projects. by Sam Berlin · 10 years ago
  65. 35023b8 Fix issue 779 -- deduplicate listeners & interceptors. Using a slightly modified patch from Tavian Barnes, thanks Tavian! by Sam Berlin · 10 years ago
  66. 32a8f24 Fix issue 720 -- minor build fixes, from the issue: by Sam Berlin · 10 years ago
  67. a4c16e8 Rolled back commit -- broke some internal projects. by Sam Berlin · 10 years ago
  68. be1bbda Fix issue 748 -- add a protected method in PrivateModule for binding provision by Sam Berlin · 10 years ago
  69. c5848c0 Optimize RecordingBinder.withSource so it doesn't always create a new binder. by Sam Berlin · 10 years ago
  70. 9b268e4 Pass the correct stage to Modules.override, so currentStage() works. by Sam Berlin · 10 years ago
  71. 3382133 Make guice build with javac 8. by Christian Edward Gruber · 11 years ago
  72. 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
  73. a922826 Make named classes for anonymous Modules so they appear prettier (and useful) in error messages. by Christian Edward Gruber · 11 years ago
  74. ba5acdf Allow turning off stack trace collection in Guice. by Christian Edward Gruber · 11 years ago
  75. 2e39ef7 Print out the modules that led to a binding during error reporting, but by Christian Edward Gruber · 11 years ago
  76. 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
  77. 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
  78. 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
  79. 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
  80. 2d45468 Fix Inject documentation, as method injection happens after field injection. by Christian Edward Gruber · 11 years ago
  81. 2bb4771 Exposes ElementSource at getSource() methods. by Christian Edward Gruber · 11 years ago
  82. 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
  83. 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
  84. 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
  85. 7839f29 Fix typo in comment for Provides annotation. by Christian Edward Gruber · 11 years ago
  86. 4d58049 Fix random bitwise | to be a real ||. by Christian Edward Gruber · 11 years ago
  87. 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
  88. a0e7344 Restore versions to 4.0-SNAPSHOT by Christian Edward Gruber · 11 years ago
  89. 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
  90. ce48fa8 Bump version numbers to release 4.0-beta. by Christian Edward Gruber · 11 years ago
  91. 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
  92. cadabc1 Switch InternalContext to store dependency/source pairs more compactly. by Christian Edward Gruber · 11 years ago
  93. 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
  94. 3f42514 Fix to pom.xml to address ASM4/CGLIB3 upgrade (from Stuart McCulloch) by Christian Edward Gruber · 11 years ago
  95. 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
  96. 2cc8ce9 Clear context during provision. Fixes http://code.google.com/p/google-guice/issues/detail?id=743 by Christian Edward Gruber · 11 years ago
  97. 978ed86 Fix a == vs .equals() bug in MoreTypes. by Christian Edward Gruber · 11 years ago
  98. bf2b16c Add support for ProvisionListeners to notify on toInstance & constant bindings. by Christian Edward Gruber · 11 years ago
  99. a1867f8 update cglib dependency in poms. by Christian Edward Gruber · 11 years ago
  100. 2303007 Upgrade to cglib 3.0 adn ASM 4.0. by Christian Edward Gruber · 11 years ago