1. d7aa953 Making Singleton's creation lock less coarse. by timofeyb · 10 years ago
  2. 6247159 Results of 'mvn license:format -N' plus some minor tweaking by Stuart McCulloch · 10 years ago
  3. 1433eff Delete unused code from WeakKeySet. by dweis · 10 years ago
  4. 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
  5. d1e965c De-duplicate equivalent scope bindings. by Tavian Barnes · 10 years ago
  6. 2fb23e3 Miscellaneous build improvements: by Stuart McCulloch · 10 years ago
  7. 4ea2c2a Merge pull request #835 from also/patch-1 by Sam Berlin · 10 years ago
  8. 0583644 fix typo in javadoc by Ryan Berdeen · 10 years ago
  9. 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
  10. c34e018 Implement binding deduplication for multibinder & mapbinder in a different way. by Sam Berlin · 10 years ago
  11. 22de684 Fix typo in JavaDoc for c.g.inject.internal.MoreTypes#getGenericSupertype by Sam Berlin · 10 years ago
  12. 1285790 Guice: Fix for issue 295 (@ProvidedBy doesn't work with enums) by Sam Berlin · 10 years ago
  13. 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
  14. 6b3086d Cleanup javadocs. This makes the following changes: by Sam Berlin · 10 years ago
  15. 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
  16. 0558b32 Update references in code & configuration to point to github instead of by Sam Berlin · 10 years ago
  17. d08bba9 More flake fixing: Refactor WeakKeySetUtils into one spot, make everything use by Sam Berlin · 10 years ago
  18. 6ae9ff6 Wrap GcFinalization usage around wrappers that also await a ReferenceQueue. I by Sam Berlin · 10 years ago
  19. 76be88e Detect overrides of @Provides method and add an error for each one. by Sam Berlin · 10 years ago
  20. 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
  21. c00df28 Automated code cleanups by internal tool. by Sam Berlin · 10 years ago
  22. 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
  23. 53a5936 Ignore synthetic bridge methods during provider method lookup. by Sam Berlin · 10 years ago
  24. 409e0f5 Try to use cglibs FastClass to invoke @Provides methods, it's faster! by Sam Berlin · 10 years ago
  25. 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
  26. 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
  27. 628ec00 Make WeakKeySet less susceptible to programming errors by making the backingMap key a concrete type. 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. f5349cd Use the correct key to check for blacklisting of multibound elements. by Sam Berlin · 10 years ago
  31. a5b2b1f Suppress compiler errors reported by an error-prone checker ([]) for tests. by Sam Berlin · 10 years ago
  32. 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
  33. 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
  34. c013fac *** Reason for rollback *** by Sam Berlin · 10 years ago
  35. bab9b60 Enhance WeakKeySet to auto evict keys and avoid calling toString on Keys. by Christian Edward Gruber · 10 years ago
  36. 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
  37. 4ab2a90 Memoize Key#toString() to reduce allocations. by Christian Edward Gruber · 10 years ago
  38. b6c35cd Update the opensource jars to asm 5.0, fix up the POMs & ant scripts. by Sam Berlin · 10 years ago
  39. 29ce12b Add an SPI for @Provides methods (using the extensions SPI) so that users can by Sam Berlin · 10 years ago
  40. 8ad60eb Change LinkedBindingBuilder.toProvider(Provider) to accept a jsr330 provider, by Sam Berlin · 10 years ago
  41. 3236b10 Replace guava 11 with 16 and extract Guava as a separate dependency. by Christian Edward Gruber · 10 years ago
  42. e91540e Fixes issue 652. Allow method interceptors to capture the method & call it later from a by Sam Berlin · 10 years ago
  43. 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
  44. 31d8fbf Fix issue 723 -- minor optimizations to TypeConverterBindingProcessor. by Sam Berlin · 10 years ago
  45. ebe9f05 Re-committed the rolled back CL, after fixing internal projects. by Sam Berlin · 10 years ago
  46. 35023b8 Fix issue 779 -- deduplicate listeners & interceptors. Using a slightly modified patch from Tavian Barnes, thanks Tavian! by Sam Berlin · 10 years ago
  47. 32a8f24 Fix issue 720 -- minor build fixes, from the issue: by Sam Berlin · 10 years ago
  48. a4c16e8 Rolled back commit -- broke some internal projects. by Sam Berlin · 10 years ago
  49. be1bbda Fix issue 748 -- add a protected method in PrivateModule for binding provision by Sam Berlin · 10 years ago
  50. c5848c0 Optimize RecordingBinder.withSource so it doesn't always create a new binder. by Sam Berlin · 10 years ago
  51. 9b268e4 Pass the correct stage to Modules.override, so currentStage() works. by Sam Berlin · 10 years ago
  52. 3382133 Make guice build with javac 8. by Christian Edward Gruber · 11 years ago
  53. 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
  54. a922826 Make named classes for anonymous Modules so they appear prettier (and useful) in error messages. by Christian Edward Gruber · 11 years ago
  55. ba5acdf Allow turning off stack trace collection in Guice. by Christian Edward Gruber · 11 years ago
  56. 2e39ef7 Print out the modules that led to a binding during error reporting, but 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. 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
  65. 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
  66. 7839f29 Fix typo in comment for Provides annotation. by Christian Edward Gruber · 11 years ago
  67. 4d58049 Fix random bitwise | to be a real ||. by Christian Edward Gruber · 11 years ago
  68. 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
  69. a0e7344 Restore versions to 4.0-SNAPSHOT by Christian Edward Gruber · 11 years ago
  70. 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
  71. ce48fa8 Bump version numbers to release 4.0-beta. by Christian Edward Gruber · 11 years ago
  72. 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
  73. cadabc1 Switch InternalContext to store dependency/source pairs more compactly. by Christian Edward Gruber · 11 years ago
  74. 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
  75. 3f42514 Fix to pom.xml to address ASM4/CGLIB3 upgrade (from Stuart McCulloch) by Christian Edward Gruber · 11 years ago
  76. 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
  77. 2cc8ce9 Clear context during provision. Fixes http://code.google.com/p/google-guice/issues/detail?id=743 by Christian Edward Gruber · 11 years ago
  78. 978ed86 Fix a == vs .equals() bug in MoreTypes. by Christian Edward Gruber · 11 years ago
  79. bf2b16c Add support for ProvisionListeners to notify on toInstance & constant bindings. by Christian Edward Gruber · 11 years ago
  80. a1867f8 update cglib dependency in poms. by Christian Edward Gruber · 11 years ago
  81. 2303007 Upgrade to cglib 3.0 adn ASM 4.0. by Christian Edward Gruber · 11 years ago
  82. 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
  83. 7f6a136 Bump pom versions towards next maintenance release by Stuart McCulloch · 12 years ago
  84. c756777 Add Binder.requireAtInjectOnConstructors, to force Guice to require @Inject annotations on constructors. by Sam Berlin · 12 years ago
  85. 2823a38 Fix issue 643 using a slightly modified version of the patch provided by Stuart. by Sam Berlin · 12 years ago
  86. 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
  87. 88ee52d Fix issue 670, keep values from MapBinder & Multibinder distinct. by Sam Berlin · 12 years ago
  88. 1c9b92a Fix issue 643 using a slightly modified version of the patch provided by Stuart. by Sam Berlin · 12 years ago
  89. 88b6d13 Issue 494 - add Eclipse-ExtensibleAPI:true to core guice.jar by Sam Berlin · 12 years ago
  90. 45ef017 Cleanup a few things: by Sam Berlin · 12 years ago
  91. d9b62c2 Do not create a new visitor instance for every call to isSingleton. by Sam Berlin · 12 years ago
  92. 66094fb Add isEagerSingleton. by Sam Berlin · 12 years ago
  93. b2f5582 Add ServletScopes.isRequestScoped. by Sam Berlin · 12 years ago
  94. abfe40d Issue 494 - add Eclipse-ExtensibleAPI:true to core guice.jar by Stuart McCulloch · 12 years ago
  95. 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
  96. 9ee53e9 Defer building of error messages for by Sam Berlin · 13 years ago
  97. f74ee67 Better errors when using binder(), etc. outside of configure(). by Sam Berlin · 13 years ago
  98. 91a844c by guice.mirrorbot@gmail.com · 13 years ago
  99. be10b4c by guice.mirrorbot@gmail.com · 13 years ago
  100. 6b7e718 by guice.mirrorbot@gmail.com · 13 years ago