1. c756777 Add Binder.requireAtInjectOnConstructors, to force Guice to require @Inject annotations on constructors. by Sam Berlin · 12 years ago
  2. 2823a38 Fix issue 643 using a slightly modified version of the patch provided by Stuart. by Sam Berlin · 13 years ago
  3. 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
  4. 88ee52d Fix issue 670, keep values from MapBinder & Multibinder distinct. by Sam Berlin · 13 years ago
  5. 1c9b92a Fix issue 643 using a slightly modified version of the patch provided by Stuart. by Sam Berlin · 13 years ago
  6. 88b6d13 Issue 494 - add Eclipse-ExtensibleAPI:true to core guice.jar by Sam Berlin · 13 years ago
  7. 45ef017 Cleanup a few things: by Sam Berlin · 13 years ago
  8. d9b62c2 Do not create a new visitor instance for every call to isSingleton. by Sam Berlin · 13 years ago
  9. 66094fb Add isEagerSingleton. by Sam Berlin · 13 years ago
  10. b2f5582 Add ServletScopes.isRequestScoped. by Sam Berlin · 13 years ago
  11. abfe40d Issue 494 - add Eclipse-ExtensibleAPI:true to core guice.jar by Stuart McCulloch · 13 years ago
  12. 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
  13. 9ee53e9 Defer building of error messages for by Sam Berlin · 13 years ago
  14. f74ee67 Better errors when using binder(), etc. outside of configure(). by Sam Berlin · 13 years ago
  15. 91a844c by guice.mirrorbot@gmail.com · 13 years ago
  16. be10b4c by guice.mirrorbot@gmail.com · 13 years ago
  17. 6b7e718 by guice.mirrorbot@gmail.com · 13 years ago
  18. b405e04 by guice.mirrorbot@gmail.com · 13 years ago
  19. 7e5464e fix issue 616, thanks for the patch! by sberlin · 13 years ago
  20. 56a879c fix issue 624. by sberlin · 13 years ago
  21. 05bf8e5 by guice.mirrorbot@gmail.com · 13 years ago
  22. efa4e9f by guice.mirrorbot@gmail.com · 13 years ago
  23. 404ffc3 by guice.mirrorbot@gmail.com · 13 years ago
  24. de4cc32 by guice.mirrorbot@gmail.com · 13 years ago
  25. ee443bc by guice.mirrorbot@gmail.com · 13 years ago
  26. 5221c15 by sberlin · 13 years ago
  27. b7a02b0 by sberlin · 13 years ago
  28. ec76179 by sberlin · 13 years ago
  29. a23937e by sberlin · 13 years ago
  30. 4e11457 fixup whitespace by sberlin · 13 years ago
  31. 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
  32. 8614255 refactor removeSuppressedTests out of AllTests, to remove the circular dependency between it & StrictContainerTestSuite. by sberlin · 13 years ago
  33. 3391af3 remove stray <T> by sberlin · 13 years ago
  34. ba75f35 issue 631 -- expose dependency hierarchy in ProvisionListener. by sberlin · 13 years ago
  35. 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
  36. e7511fd Official cglib 2.2.2 artifact now available on Maven central by mcculls · 13 years ago
  37. c18cbce remove "involving constructors" since we support proxies for circular dependencies involving providers too now. by sberlin · 13 years ago
  38. d5737a6 fix @ProvidedBy circular dependencies. by sberlin · 13 years ago
  39. 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
  40. 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
  41. e6ce188 fix issue 626 -- properly handle circular proxies between providers (either failing or proxying), prevents StackOverflowErrors. by sberlin · 13 years ago
  42. 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
  43. ca183a6 Fix maven build (TODO: replace dependency with official cglib-2.2.2 when it's on Maven Central) by mcculls · 13 years ago
  44. 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
  45. 07170cc remove phases from BindingProcessor, refactor so that two different classes do the two different bits, with an abstract superclass managing the shared pieces. by sberlin · 14 years ago
  46. 9207317 fix issue 614 -- admittedly not the prettiest solution, but it works. by sberlin · 14 years ago
  47. 9cdfe3a issue 610 - let requireExplicitBindings still allow TypeConverters to create ConvertedConstantBindings. by sberlin · 14 years ago
  48. 1e5fc1d fix typo, make test not loop forever. by sberlin · 14 years ago
  49. 6e4e497 update stack trace pruning (for AOP-internal methods & generated methods) to include causes. by sberlin · 14 years ago
  50. 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
  51. bd7a14b make sure tests can run in on dist code, and no_aop can still build. by sberlin · 14 years ago
  52. b281953 test for issue 608. by sberlin · 14 years ago
  53. 0d8b52f issue 608 - child can rebind a parent binding if it was just-in-time. by sberlin · 14 years ago
  54. 95b3f8a issue 282 - mention quirks with optional dependencies, JIT bindings & child injectors in the javadoc. by sberlin · 14 years ago
  55. 336d222 add some logging for interceptors that may trigger issue 252. by sberlin · 14 years ago
  56. b7a4174 rm printStackTrace. by sberlin · 14 years ago
  57. 159cd86 validate that issue 432 is not a problem anymore. by sberlin · 14 years ago
  58. 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
  59. c17c5a9 issue 574 - don't freak out on generated classes when trying to get line numbers. by sberlin · 14 years ago
  60. 405828b issues 592 & 591, documentation updates. by sberlin · 14 years ago
  61. 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
  62. e0f5412 Remove AOP boilerplate from user visible stack traces. by limpbizkit@gmail.com · 14 years ago
  63. 33018c3 Add standard Apache LICENSE and NOTICE files to the Maven build by mcculls · 14 years ago
  64. 92f3eab Use correct timestamped CGLIB release in Maven build by mcculls · 14 years ago
  65. b0548c3 Update Maven build to use same level of CGLIB as Ant build by mcculls · 14 years ago
  66. 672d074 implement hashcode when implementing equals. by sberlin · 14 years ago
  67. 7691f9e require ProviderMethod instance to be equal also, per jessewilson review. by sberlin · 14 years ago
  68. 1068a4a allow duplicate @Provides methods to be deduplicated also. by sberlin · 14 years ago
  69. c9d97cf Cache annotation lookups. by crazyboblee · 14 years ago
  70. fc46e1a Fix warnings in core. by limpbizkit@gmail.com · 14 years ago
  71. ea27c01 review comments from jesse. by sberlin · 14 years ago
  72. 8b64d45 Remove InjectorBuilder in favor of methods in Binder. by sberlin · 14 years ago
  73. 692ca95 Align Maven no_aop classifier to match the Ant target by mcculls · 14 years ago
  74. 16f8b0f fix issue 578, Providers.guicify loses injection points from the delegate. by sberlin · 14 years ago
  75. d00bb05 add missing @since tag. by sberlin · 14 years ago
  76. 3bdf721 fix for NO_AOP build. by sberlin · 14 years ago
  77. a523ea5 rm jsr330, move the one method into Providers. by sberlin · 14 years ago
  78. 5d5941f rm documentation that a TypeLiteral with wildcard character (such as List<? extends CharSequence>) doesn't work, add a test that asserts it does work. by sberlin · 14 years ago
  79. 4d4e160 Clarify that the Maven build requires Maven3 and cleanup temporary CGLIB dependency by mcculls · 14 years ago
  80. 30b582e Minor javadoc fix by mcculls · 14 years ago
  81. 6716a71 a few more @sinces. by sberlin · 14 years ago
  82. 9c28d5b revert State & InheritingState back to using Iterable & Set. by sberlin · 14 years ago
  83. b2f1760 issue 436 -- add Injector.getTypeConverters, and expand ConvertedConstantBinding to expose the TypeConverter for it. patch graciously provided by Stuart, thanks! by sberlin · 14 years ago
  84. dfdf3e3 Fix strict container tests (avoid duplicate CGLIB classes) by mcculls · 14 years ago
  85. 1c6ff88 fix issue 508 -- consider method return type when deciding whether to bridge. patch contributed by stuart. by sberlin · 14 years ago
  86. a102c17 make sure $$EnhancerByGuice$$ & $$FastClassByGuice$$ stay named that way and don't become $$$EnhancerByGuice$$ & $$$FastClassByGuice$$ after jarjar renames the cglib classes. by sberlin · 14 years ago
  87. aacb484 Add some comments to the Maven POMs by mcculls · 14 years ago
  88. c63f9bb These tests are still intermittent on Maven, so keep them disabled for now by mcculls · 14 years ago
  89. 4757520 Run maven tests with TestNG (better handling of tests) by mcculls · 14 years ago
  90. 3140104 Temporarily disable intermittent tests on the Maven grid by mcculls · 14 years ago
  91. 8846db3 Update Maven poms to use new jarjar processing rules, allow jarjar and munge profiles to be turned off, and synchronize bundle headers in Ant and Maven builds by mcculls · 14 years ago
  92. fdd9500 made new classes final. by sberlin · 14 years ago
  93. 6d8ab0b never call hashcode on the underlying binding instances. continue to call equals as lazily as possible. by sberlin · 14 years ago
  94. 6f8b395 (and remove unused import) by sberlin@gmail.com · 14 years ago
  95. 22b3c09 build a list, not a set -- so that we don't call hashCode or equals on any bindings. by sberlin@gmail.com · 14 years ago
  96. c13b545 adding more missing @since 3.0 tags. by sberlin · 14 years ago
  97. dfee9fd issue 531 -- don't let c.g.i.internal.util reference outside its package. by sberlin · 14 years ago
  98. f712ffd make sure MembersInjector dependencies don't blow up on requireExplicitBindings. by sberlin · 14 years ago
  99. 7f6067d Update test to make sure custom @Nullable annotations work, in addition to c.g.i.i.util.Nullable. by sberlin · 14 years ago
  100. 94a6855 Jesse's suggestion for fixing Nullability -- check the String just for name=="Nullable", but add class==Nullable.class to catch the jarjar'd c.g.i.i.util.Nullable. by sberlin · 14 years ago