1. ba5acdf Allow turning off stack trace collection in Guice. by Christian Edward Gruber · 11 years ago
  2. 2e39ef7 Print out the modules that led to a binding during error reporting, but by Christian Edward Gruber · 11 years ago
  3. 401a6a4 Added updated 4.0 api diffs. by Christian Edward Gruber · 11 years ago
  4. 54565b2 Update script for api diffs. by Christian Edward Gruber · 11 years ago
  5. 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
  6. 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
  7. 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
  8. 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
  9. 2d45468 Fix Inject documentation, as method injection happens after field injection. by Christian Edward Gruber · 11 years ago
  10. 2bb4771 Exposes ElementSource at getSource() methods. by Christian Edward Gruber · 11 years ago
  11. 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
  12. 6c69bcf 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
  13. 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
  14. 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
  15. 7839f29 Fix typo in comment for Provides annotation. by Christian Edward Gruber · 11 years ago
  16. 3d3a9fa Give more information when duplicate elements are found in a multibound set. by Christian Edward Gruber · 11 years ago
  17. 4d58049 Fix random bitwise | to be a real ||. by Christian Edward Gruber · 11 years ago
  18. 51829aa Automated g4 rollback of changelist 50265868. by Christian Edward Gruber · 11 years ago
  19. 28c75b2 Give more information when duplicate elements are found in a multibound set. by Christian Edward Gruber · 11 years ago
  20. 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
  21. a0e7344 Restore versions to 4.0-SNAPSHOT by Christian Edward Gruber · 11 years ago
  22. 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
  23. ce48fa8 Bump version numbers to release 4.0-beta. by Christian Edward Gruber · 11 years ago
  24. 97825f9 Add ignores file. by Christian Edward Gruber · 11 years ago
  25. 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
  26. cadabc1 Switch InternalContext to store dependency/source pairs more compactly. by Christian Edward Gruber · 11 years ago
  27. 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
  28. 3f42514 Fix to pom.xml to address ASM4/CGLIB3 upgrade (from Stuart McCulloch) by Christian Edward Gruber · 11 years ago
  29. 8f19635 Add logging for when AssistedInject falls into non-optimized mode, so people can take action and fix it. by Christian Edward Gruber · 11 years ago
  30. 9f8b438 Use a single UniqueAnnotation instead of creating a new one each time. by Christian Edward Gruber · 11 years ago
  31. 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
  32. 2cc8ce9 Clear context during provision. Fixes http://code.google.com/p/google-guice/issues/detail?id=743 by Christian Edward Gruber · 11 years ago
  33. ad6584a Fix issue 663: Grapher is producing corrupt graphs by Christian Edward Gruber · 11 years ago
  34. 978ed86 Fix a == vs .equals() bug in MoreTypes. by Christian Edward Gruber · 11 years ago
  35. 45d86df Fix http://code.google.com/p/google-guice/issues/detail?id=742 by having assistedinject fail if the target implementation class has a scop by Christian Edward Gruber · 11 years ago
  36. 94c2d2c Suppress a warning in advance that will be a run-time error in Guice in a subsequent commit, and which will be added to error-prone and caught at compile-time for those who use it. by Christian Edward Gruber · 11 years ago
  37. 882330d HttpServletRequest#getCookies() can return null; checks that in ContinuingHttpServletRequest. by Christian Edward Gruber · 11 years ago
  38. bf2b16c Add support for ProvisionListeners to notify on toInstance & constant bindings. by Christian Edward Gruber · 11 years ago
  39. a1867f8 update cglib dependency in poms. by Christian Edward Gruber · 11 years ago
  40. 2303007 Upgrade to cglib 3.0 adn ASM 4.0. by Christian Edward Gruber · 11 years ago
  41. e5ed5b4 Add an @Inject constructor to DefaultFilterPipeline so services which depend upon it can be used with Modules.requireAtInjectOnConstructorsModule() by Christian Edward Gruber · 11 years ago
  42. 9111f48 Add a ISE exception subclass for scoping exceptions by Christian Edward Gruber · 11 years ago
  43. 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
  44. 7f6a136 Bump pom versions towards next maintenance release by Stuart McCulloch · 12 years ago
  45. 2804e19 Add explicit @Inject. by Sam Berlin · 12 years ago
  46. c756777 Add Binder.requireAtInjectOnConstructors, to force Guice to require @Inject annotations on constructors. by Sam Berlin · 12 years ago
  47. 389cb71 Fixed exception in contextpath string manipulation. by Sam Berlin · 12 years ago
  48. 1db3e79 Follow-up cleanup CL, removing an unnecessary parameter and strengthening typing. by Sam Berlin · 12 years ago
  49. 997ae12 Reduce stack size and simplify control flow in FilterChainInvocation. by Sam Berlin · 12 years ago
  50. 8b7aaec Update ThrowingProviderBinder to have a better exception in case of ProvisionExceptions from more than one dependency. by Sam Berlin · 12 years ago
  51. 15dbe78 Change AssertionError to use the whole ProvisionException as a cause, so we can see exactly what goes wrong when nothing should go wrong. by Sam Berlin · 12 years ago
  52. e6abeff Change the new ThrowingProviderBinder.providing to look for @ThrowingInject instead of @Inject. by Sam Berlin · 12 years ago
  53. 7dc62e5 Add a new transferRequest method to ServletScopes which propagates all existing scoped objects. Allows servlet engines to detach & reattach threads (while waiting for a request to receive results from RPCs). by Sam Berlin · 12 years ago
  54. cd12655 Don't assume methods will be in order when asserting error messages. by Sam Berlin · 12 years ago
  55. 8557c77 Add a new method to ThrowingProviderBinder: providing(Class) or providing(TypeLiteral). by Sam Berlin · 12 years ago
  56. 2823a38 Fix issue 643 using a slightly modified version of the patch provided by Stuart. by Sam Berlin · 12 years ago
  57. 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
  58. 88ee52d Fix issue 670, keep values from MapBinder & Multibinder distinct. by Sam Berlin · 12 years ago
  59. 1c9b92a Fix issue 643 using a slightly modified version of the patch provided by Stuart. by Sam Berlin · 12 years ago
  60. 21a1967 Fix issue 670, keep values from MapBinder & Multibinder distinct. by Sam Berlin · 12 years ago
  61. 04cdfd9 Remove duplicate code & instead delegate to Scopes.isScoped method. by Sam Berlin · 12 years ago
  62. 88b6d13 Issue 494 - add Eclipse-ExtensibleAPI:true to core guice.jar by Sam Berlin · 12 years ago
  63. 45ef017 Cleanup a few things: by Sam Berlin · 12 years ago
  64. d9b62c2 Do not create a new visitor instance for every call to isSingleton. by Sam Berlin · 12 years ago
  65. 66094fb Add isEagerSingleton. by Sam Berlin · 12 years ago
  66. b2f5582 Add ServletScopes.isRequestScoped. by Sam Berlin · 12 years ago
  67. 8a539da Remove @MediumTest annotation since it is not available on the build classpath by Stuart McCulloch · 12 years ago
  68. abfe40d Issue 494 - add Eclipse-ExtensibleAPI:true to core guice.jar by Stuart McCulloch · 12 years ago
  69. c2bee81 Fix issue 667, cleanup javadoc for Multibinder by Sam Berlin · 13 years ago
  70. 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
  71. fee2d23 Ensure servlets & filters are processed in the correct order in all scenarios. Fix so that code like: by Sam Berlin · 13 years ago
  72. 9ee53e9 Defer building of error messages for by Sam Berlin · 13 years ago
  73. 9afcdd8 Prune all the billions of c.g.i.servlet.Filter{ChainInvocation,Definition}.doFilter elements from the stack traces. by Sam Berlin · 13 years ago
  74. f74ee67 Better errors when using binder(), etc. outside of configure(). by Sam Berlin · 13 years ago
  75. 91a844c by guice.mirrorbot@gmail.com · 13 years ago
  76. c0b196b by guice.mirrorbot@gmail.com · 13 years ago
  77. be10b4c by guice.mirrorbot@gmail.com · 13 years ago
  78. fbbb52d by guice.mirrorbot@gmail.com · 13 years ago
  79. 6b7e718 by guice.mirrorbot@gmail.com · 13 years ago
  80. 8c92236 by guice.mirrorbot@gmail.com · 13 years ago
  81. b405e04 by guice.mirrorbot@gmail.com · 13 years ago
  82. 7e5464e fix issue 616, thanks for the patch! by sberlin · 13 years ago
  83. d77a85a fix issue 623, move log4j.properties for persist extension out of src and into test. by sberlin · 13 years ago
  84. 56a879c fix issue 624. by sberlin · 13 years ago
  85. fb66c42 fix issue 636, GuiceFilter should keep a strong ref to its logger. by sberlin · 13 years ago
  86. 05bf8e5 by guice.mirrorbot@gmail.com · 13 years ago
  87. e09d8bf by guice.mirrorbot@gmail.com · 13 years ago
  88. efa4e9f by guice.mirrorbot@gmail.com · 13 years ago
  89. e390a0f by guice.mirrorbot@gmail.com · 13 years ago
  90. ab8f0c6 by guice.mirrorbot@gmail.com · 13 years ago
  91. 0b26f78 by guice.mirrorbot@gmail.com · 13 years ago
  92. 404ffc3 by guice.mirrorbot@gmail.com · 13 years ago
  93. de4cc32 by guice.mirrorbot@gmail.com · 13 years ago
  94. ee443bc by guice.mirrorbot@gmail.com · 13 years ago
  95. 6585c73 Failing test for a multibinder bug reported here: by limpbizkit · 13 years ago
  96. b719556 by sberlin · 13 years ago
  97. 5221c15 by sberlin · 13 years ago
  98. b7a02b0 by sberlin · 13 years ago
  99. 0aecc68 by sberlin · 13 years ago
  100. 5a886aa by sberlin · 13 years ago