1. 0558b32 Update references in code & configuration to point to github instead of by Sam Berlin · 10 years ago
  2. d08bba9 More flake fixing: Refactor WeakKeySetUtils into one spot, make everything use by Sam Berlin · 10 years ago
  3. 08125e9 Fix equal comparison against generated/system annotations. This should never by Sam Berlin · 10 years ago
  4. 94d0a15 More flake fixing: don't assume methods come in a certain order. Super strange by Sam Berlin · 10 years ago
  5. 842f351 Add support for OptionalBinder to link to normal bindings of that type if by Sam Berlin · 10 years ago
  6. 6ae9ff6 Wrap GcFinalization usage around wrappers that also await a ReferenceQueue. I by Sam Berlin · 10 years ago
  7. c66f08e Automated g4 rollback of changelist 70738452. by Sam Berlin · 10 years ago
  8. 8f89a23 Automated g4 rollback of changelist 70734332. by Sam Berlin · 10 years ago
  9. 9040306 Simplify OptionalBinder implementation to not delegate to a MapBinder. by Sam Berlin · 10 years ago
  10. c00df28 Automated code cleanups by internal tool. by Sam Berlin · 10 years ago
  11. 332041c Various style cleanups to BoundFieldModule & test. by Sam Berlin · 10 years ago
  12. 8d88344 Test for issue #571 by Dhanji R. Prasanna · 10 years ago
  13. 0c69c36 Fix for build break from servlets patch by Dhanji R. Prasanna · 10 years ago
  14. f39b8fd Review comments by Dhanji R. Prasanna · 10 years ago
  15. 3b02622 Snapshot cookies in continuing request to prevent mutation side effects by Dhanji R. Prasanna · 10 years ago
  16. 4a4d825 Block when transferring request scope instead of checking owners & throwing exceptions. This lets users delete hacky spin loops. by Sam Berlin · 10 years ago
  17. f9a3d2d Skip synthetic/bridge methods when validating CheckedProvider interfaces, otherwise java8 breaks validation by adding a synthetic bridge default method. by Sam Berlin · 10 years ago
  18. a23bc0e Implement hashCode and equals in FactoryProvider/FactoryProvider2, with the aim of allowing Guice to dedupe bindings. Reroll of earlier change with a bug fixed. by Sam Berlin · 10 years ago
  19. 20dd9af Automated rollback. by Sam Berlin · 10 years ago
  20. 615f61f Implement hashCode and equals in FactoryProvider/FactoryProvider2, with the aim of allowing Guice to dedupe bindings. by Sam Berlin · 10 years ago
  21. 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
  22. 269f2f6 Fix issue 379 -- strip the query off the URI when checking to see if the by Sam Berlin · 10 years ago
  23. f1abba3 On second thought, according to the javadocs @ http://docs.oracle.com/javaee/5/api/javax/servlet/http/HttpServletRequest.html#getPathInfo() .. this is probably more correct, and still better than what it was before. by Sam Berlin · 10 years ago
  24. 647b24f Fix external issue 755. Grapher config was wrong. by Sam Berlin · 10 years ago
  25. c35ebc2 Fix external issue 372 -- only scrub the pathInfo if the servletPath actually by Sam Berlin · 10 years ago
  26. c7ae433 Add BoundFieldModule to automatically bind @Bind annotated fields to their by Sam Berlin · 10 years ago
  27. 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
  28. 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
  29. c013fac *** Reason for rollback *** by Sam Berlin · 10 years ago
  30. d1d7ef3 Fix MapBinder's duplicate key error message so that more than one binding with the same source gets listed twice. This was causing a problem with the tests that turned stack traces off, because the two different bindings line numbers were both changed to "Unknown Source", so it collapsed them into a single item. by Christian Edward Gruber · 10 years ago
  31. bab9b60 Enhance WeakKeySet to auto evict keys and avoid calling toString on Keys. by Christian Edward Gruber · 10 years ago
  32. cc8870b Add OptionalBinderTest into multibindings AllTests. by Christian Edward Gruber · 10 years ago
  33. af24f63 Adds a new OptionalBinder. OptionalBinder allows frameworks to setup bindings for items that user code may or may not bind. It also allows frameworks to set default values that users can override. by Christian Edward Gruber · 10 years ago
  34. 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
  35. af07a48 Unbreak MOE by adding a .gitignore to extensions (suppressing build/ folders under it) and narrowing the exclusion of bduild folders in the root to just at the root. This lets /lib/build exist and be used, including by MOE. by Christian Edward Gruber · 10 years ago
  36. b6c35cd Update the opensource jars to asm 5.0, fix up the POMs & ant scripts. by Sam Berlin · 11 years ago
  37. 8859456 Update MapBinder so it fails on duplicate bindings with a more descriptive error message, including all the keys that had duplicates and where the duplicate bindings were bound. Example error message that has 'a' bound twice and 'b' bound twice: by Sam Berlin · 11 years ago
  38. 10f305d This change removes final from fields annotated with @Inject. In addition to being discouraged due to weak semantics [1], it is incompatible with the standard javax.inject.Inject annotation [2]. by Sam Berlin · 11 years ago
  39. c33e73c Improve OutOfScopeException so that it tells you which key it was trying to by Sam Berlin · 11 years ago
  40. 8ad60eb Change LinkedBindingBuilder.toProvider(Provider) to accept a jsr330 provider, by Sam Berlin · 11 years ago
  41. 883fe03 Make ServletScopes#scopeRequest slightly more efficient for larger seed maps. by Sam Berlin · 11 years ago
  42. 41c1c29 Add ignores for ant build spam. by Christian Edward Gruber · 11 years ago
  43. 3236b10 Replace guava 11 with 16 and extract Guava as a separate dependency. by Christian Edward Gruber · 11 years ago
  44. 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 · 11 years ago
  45. 3338a48 Fix issue 734 -- MapBinder doesn't allow injection of Map<K, javax.inject.Provider<V>>. by Sam Berlin · 11 years ago
  46. 7246088 Fix typo, alertnative -> alternative. (Issue 777.) by Sam Berlin · 11 years ago
  47. 5e5e2f5 Don't unnecessarily invoke Key#toString() when running in non-HTTP based RequestScope. Key#toString() is not memoized (unlike hashCode) and these allocations end up being consistently visible in our garbage sampling. by Sam Berlin · 11 years ago
  48. 2bb4771 Exposes ElementSource at getSource() methods. by Christian Edward Gruber · 11 years ago
  49. 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
  50. 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
  51. 3d3a9fa Give more information when duplicate elements are found in a multibound set. by Christian Edward Gruber · 11 years ago
  52. 51829aa Automated g4 rollback of changelist 50265868. by Christian Edward Gruber · 11 years ago
  53. 28c75b2 Give more information when duplicate elements are found in a multibound set. by Christian Edward Gruber · 11 years ago
  54. a0e7344 Restore versions to 4.0-SNAPSHOT by Christian Edward Gruber · 11 years ago
  55. 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
  56. ce48fa8 Bump version numbers to release 4.0-beta. by Christian Edward Gruber · 11 years ago
  57. 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
  58. 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
  59. 9f8b438 Use a single UniqueAnnotation instead of creating a new one each time. by Christian Edward Gruber · 11 years ago
  60. 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
  61. ad6584a Fix issue 663: Grapher is producing corrupt graphs by Christian Edward Gruber · 11 years ago
  62. 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
  63. 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
  64. 882330d HttpServletRequest#getCookies() can return null; checks that in ContinuingHttpServletRequest. by Christian Edward Gruber · 11 years ago
  65. bf2b16c Add support for ProvisionListeners to notify on toInstance & constant bindings. by Christian Edward Gruber · 11 years ago
  66. 2303007 Upgrade to cglib 3.0 adn ASM 4.0. by Christian Edward Gruber · 11 years ago
  67. 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
  68. 9111f48 Add a ISE exception subclass for scoping exceptions by Christian Edward Gruber · 11 years ago
  69. 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
  70. 7f6a136 Bump pom versions towards next maintenance release by Stuart McCulloch · 12 years ago
  71. 2804e19 Add explicit @Inject. by Sam Berlin · 12 years ago
  72. 389cb71 Fixed exception in contextpath string manipulation. by Sam Berlin · 12 years ago
  73. 1db3e79 Follow-up cleanup CL, removing an unnecessary parameter and strengthening typing. by Sam Berlin · 12 years ago
  74. 997ae12 Reduce stack size and simplify control flow in FilterChainInvocation. by Sam Berlin · 12 years ago
  75. 8b7aaec Update ThrowingProviderBinder to have a better exception in case of ProvisionExceptions from more than one dependency. by Sam Berlin · 12 years ago
  76. 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
  77. e6abeff Change the new ThrowingProviderBinder.providing to look for @ThrowingInject instead of @Inject. by Sam Berlin · 12 years ago
  78. 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
  79. cd12655 Don't assume methods will be in order when asserting error messages. by Sam Berlin · 12 years ago
  80. 8557c77 Add a new method to ThrowingProviderBinder: providing(Class) or providing(TypeLiteral). by Sam Berlin · 13 years ago
  81. 88ee52d Fix issue 670, keep values from MapBinder & Multibinder distinct. by Sam Berlin · 13 years ago
  82. 21a1967 Fix issue 670, keep values from MapBinder & Multibinder distinct. by Sam Berlin · 13 years ago
  83. 04cdfd9 Remove duplicate code & instead delegate to Scopes.isScoped method. by Sam Berlin · 13 years ago
  84. 45ef017 Cleanup a few things: by Sam Berlin · 13 years ago
  85. b2f5582 Add ServletScopes.isRequestScoped. by Sam Berlin · 13 years ago
  86. 8a539da Remove @MediumTest annotation since it is not available on the build classpath by Stuart McCulloch · 13 years ago
  87. c2bee81 Fix issue 667, cleanup javadoc for Multibinder by Sam Berlin · 13 years ago
  88. fee2d23 Ensure servlets & filters are processed in the correct order in all scenarios. Fix so that code like: by Sam Berlin · 13 years ago
  89. 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
  90. f74ee67 Better errors when using binder(), etc. outside of configure(). by Sam Berlin · 13 years ago
  91. c0b196b by guice.mirrorbot@gmail.com · 13 years ago
  92. fbbb52d by guice.mirrorbot@gmail.com · 13 years ago
  93. 8c92236 by guice.mirrorbot@gmail.com · 13 years ago
  94. b405e04 by guice.mirrorbot@gmail.com · 13 years ago
  95. d77a85a fix issue 623, move log4j.properties for persist extension out of src and into test. by sberlin · 13 years ago
  96. fb66c42 fix issue 636, GuiceFilter should keep a strong ref to its logger. by sberlin · 13 years ago
  97. 05bf8e5 by guice.mirrorbot@gmail.com · 13 years ago
  98. e09d8bf by guice.mirrorbot@gmail.com · 13 years ago
  99. e390a0f by guice.mirrorbot@gmail.com · 13 years ago
  100. ab8f0c6 by guice.mirrorbot@gmail.com · 13 years ago