1. e93f260 Isaac's patch to fix scoping for null values. by limpbizkit · 15 years ago
  2. 0cb8b86 Including sources in providers wrapped for scoping. This fixes a problem reported by Isaac on bug 271. by limpbizkit · 15 years ago
  3. d8750fd some test fixes for ScopeChecker and Multibinder by limpbizkit · 15 years ago
  4. 3ea8095 Some small optimizations. Getting sources still takes the most time of all (~40%), followed by reflective access on the methods and fields of classes. There's not much we can do here, aside from the often-suggested compile-time code-gen DI. by limpbizkit · 15 years ago
  5. 1920322 New scope checker feature. by limpbizkit · 15 years ago
  6. 1f1fca7 a test for what happens when creating a singleton fails by limpbizkit · 15 years ago
  7. 91425c3 Fix for bug 403, wherein explicit bindings were kept in the JIT bindings map. by limpbizkit · 15 years ago
  8. 84b82ec New failing test: circularly dependent providers aren't properly singletons! And they aren't detected either. by limpbizkit · 15 years ago
  9. fb3a896 Cleaned up MapBinder code, including using ImmutableSet and ImmutableMap where appropriate. Moved multimap binding into a nested module class. by netdpb · 15 years ago
  10. 0efcc6c Added mutlimap support to MapBinder. by netdpb · 15 years ago
  11. 37387e2 Injector.getAllBindings(), feature for issue 389. by limpbizkit · 15 years ago
  12. ad8ed23 Fixing a TODO for modules.override() plus private modules by limpbizkit · 15 years ago
  13. 28e3001 Rewrote struts2 plugin and added some bugfixes to the servlet regex dispatcher. by dhanji · 15 years ago
  14. 30384a5 Fixing servlet tests. Guice servlet is tested with EasyMock, and so that means when you change the implementation details you must also change the tests! by limpbizkit · 15 years ago
  15. 136dd75 Fixin' a doc typo by limpbizkit · 15 years ago
  16. 398017a New API: Multibinder.permitDuplicates() and MapBinder.permitDuplicates() by limpbizkit · 15 years ago
  17. 52aad3b New API: Scopes.isSingleton(Binding) by limpbizkit · 15 years ago
  18. 0afda9a Fixing a old bug wherein calling "Provider.get()" inside of an existing scope would kill the internal context and leave the injector in an inconsistent state. by limpbizkit · 15 years ago
  19. f374014 Fixin' typos in implementation detail, as pointed out by Dhanji. by limpbizkit · 15 years ago
  20. 39e9886 New API: toConstructor(Constructor, TypeLiteral). by limpbizkit · 15 years ago
  21. 179a4cd New tests for toConstructor(). by limpbizkit · 15 years ago
  22. 62600d2 More tests, redefining InjectionPoint equality to consider the generic type of the injected type by limpbizkit · 15 years ago
  23. 4447564 toConstructor() core implementation. This still requires test coverage, and maybe a review of the API. by limpbizkit · 15 years ago
  24. 97a3e6f Andrew McLaughlin's patch for making forward() pass the original request URI. Fixes a bug with JSP servlet etc., not being able to know the target of the original request. by dhanji · 15 years ago
  25. 72fb152 Failing test for issue 319. by limpbizkit · 15 years ago
  26. 39634cf Adding the METHOD target to the @ScopeAnnotation meta-annotation by limpbizkit · 15 years ago
  27. 7eb1d45 change Scoping of InstanceBindings by drew.mclaughlin · 15 years ago
  28. 9b8bdc7 toConstructor SPI support. We can now create the module models for toConstructor bindings. I haven't yet added the code that takes these bindings and uses them when creating an Injector. by limpbizkit · 15 years ago
  29. 439e87e I did some cleanup after the previous refactoring round, driven by a run of coverage. by limpbizkit · 15 years ago
  30. 5366bad by limpbizkit · 15 years ago
  31. 5ae41eb Post release refactor. I moved almost everything that was package-private in com.google.inject to the internal package. The motivation is to simplify things - the previous setup was extremely awkward because c.g.i could call into internal, but not the reverse. Similarly for the SPI package. by limpbizkit · 15 years ago
  32. 26c2aad Fix for issue 381, contributed by robsonbraga. Plus a test. by limpbizkit · 15 years ago
  33. e37805a Band-aid for issue 373. I'm not particularly thrilled about needing to explicitly check for linked bindings, but it's the least invasive code I could come up with. by limpbizkit · 15 years ago
  34. 48d8d82 Changes from Isaac Shum that change the bindings for ServletRequest and ServletResponse to be chained to their HTTP counterparts rather than to be both bound directly to the same provider. by limpbizkit · 15 years ago
  35. b92f540 Fix for an embarassing bug reported by Dmitry Skavish. by limpbizkit · 15 years ago
  36. 1ae5c1e Test for an issue reported by Dmitry Skavish regarding which injector creates a scoped class: by limpbizkit · 15 years ago
  37. 273fa54 latest Javadoc update by limpbizkit · 15 years ago
  38. c1a22ec Guice 2.0 Javadoc by limpbizkit · 15 years ago
  39. cbaeab4 Last clear of Javadoc for 2.0 by limpbizkit · 15 years ago
  40. ad520b6 Differences between Guice 1.0 and Guice 2.0 by limpbizkit · 15 years ago
  41. 11740e0 Removing latest API diffs to make room for an updated version by limpbizkit · 15 years ago
  42. 19d7f36 Fixing the package overview page on the main javadoc page to be core-only by limpbizkit · 15 years ago
  43. 484f75f Adding notes to package-info pointing at the required .jar files. by limpbizkit · 15 years ago
  44. c016b86 Integrated core and all Javadoc by limpbizkit · 15 years ago
  45. 3698815 Integrating core and all Javadocs by limpbizkit · 15 years ago
  46. 3a6d3b7 Fixing core Javadocs, so they are integrated with the complete Javadocs by limpbizkit · 15 years ago
  47. c7e904c New Javadocs by limpbizkit · 15 years ago
  48. 8a4d3ca Removed old Javadocs. by limpbizkit · 15 years ago
  49. 5f7c6bc Removed old Javadocs. by limpbizkit · 15 years ago
  50. b68388b Killing 'bad.bad.bad' for release. by limpbizkit · 15 years ago
  51. 9f17f4f Suppressing failing tests for release. by limpbizkit · 15 years ago
  52. 545cee1 Core javadoc build target. by limpbizkit · 15 years ago
  53. c1c9530 Fixing tests for InjectionPoint and Dependency serialization by limpbizkit · 15 years ago
  54. e05f254 Moving JNDI and JMX out to extensions/ by limpbizkit · 15 years ago
  55. 6caa8dc Stripping serializability from Key, InjectionPoint and Dependency for the release. by limpbizkit · 15 years ago
  56. 558521e The new Guice 2.0 Javadoc. by limpbizkit · 15 years ago
  57. bd3f704 Updating the Javadoc to v2. by limpbizkit · 15 years ago
  58. 61584c4 Fixing {@link} warning by limpbizkit · 15 years ago
  59. 050d1f8 Missing @since tags by limpbizkit · 15 years ago
  60. 9b584e3 Added a note on Nullable to assistedinject by limpbizkit · 15 years ago
  61. aa07ab0 Killing ModuleWriter in favour of Element.applyTo() by limpbizkit · 15 years ago
  62. 1c22955 Applying the servlet fixes from r840 (on the snapshot) to trunk. by limpbizkit · 15 years ago
  63. a2b241d additional doc for TypeLiteral, helping to make it easier to find wildcard types. by limpbizkit · 15 years ago
  64. 833265f patch from mcculls: by limpbizkit · 15 years ago
  65. e89c49e Some low-hanging fruit optimizations. by limpbizkit · 15 years ago
  66. cd54a60 Removing a broken test. I was prototyping this and it didn't go anywhere. by limpbizkit · 15 years ago
  67. 8166e4c Updating MapMaker to 1.0RC1. Also changing StrictContainerTestSuite to match Google App Engine/Java's constraints on starting threads. by limpbizkit · 15 years ago
  68. 759662b Tests and fix for issue 340. by limpbizkit · 15 years ago
  69. f4822fb User reported testcase for bug 349. by limpbizkit · 15 years ago
  70. 50581d1 Greg Kick's fix to use UniqueAnnotations in the servlets module by limpbizkit · 15 years ago
  71. eb40513 Overdue update to fix the no-AOP build of Guice to compile. by limpbizkit · 15 years ago
  72. 391eaec Integrated David You's patch for reading pathInfo better from regex mapped servlets. Tests passing. by dhanji · 15 years ago
  73. 111291f Added updated Javadocs. by limpbizkit · 15 years ago
  74. 4faaeb5 Removed old Javadocs. by limpbizkit · 15 years ago
  75. ee79246 More listener changes: by limpbizkit · 15 years ago
  76. a843a95 Simplifying listeners: by limpbizkit · 15 years ago
  77. 59a6042 Fix for bug 352: WildcardTypeImpl constructor argument check fails by limpbizkit · 15 years ago
  78. ccb15e4 Fixing a bug reported by James Strachan. The Encounter isn't being invalidated, which is leading to problems since its methods don't work after the hear() method returns. by limpbizkit · 15 years ago
  79. 59d178e A couple of test changes: by limpbizkit · 15 years ago
  80. 8d62075 Support deferred lookups of providers and members injectors from the Encounter. by limpbizkit · 15 years ago
  81. d31578a Adding test coverage for calling 'initialize' on ProviderLookups and MembersInjectorLookups, and fixing the bugs the tests show in their applyTo() methods. by limpbizkit · 15 years ago
  82. 028815a A new test to verify that our new Element.applyTo() API is repeatable. This currently includes one failing test for private modules... by limpbizkit · 15 years ago
  83. 70685b9 InjectableTypeListenerBinding elements now participate in module rewriting. This is necessary to use 'em in Modules.override(). by limpbizkit · 15 years ago
  84. 63a9605 Test cases that prove we have reliable iteration order for Multibinder and MapBinder by limpbizkit · 15 years ago
  85. e8fdeb8 Added updated Javadocs. by limpbizkit · 15 years ago
  86. ca4363d Removed old Javadocs. by limpbizkit · 15 years ago
  87. 7cef5b0 We now fire InjectionListeners on member injectors. by limpbizkit · 15 years ago
  88. 0ca7f91 It is now possible to inject a MembersInjector<T> anywhere, just like how we already support injecting a Provider<T> and a TypeLiteral<T> anywhere. by limpbizkit · 15 years ago
  89. 97eac0f Injector.getMembersInjector() and Binder.getMembersInjector() APIs both implemented and tested. by limpbizkit · 15 years ago
  90. 315ee3f Make ServletContext available even a bit earlier than it already was. by dhanji · 15 years ago
  91. 516e2ab Error handling. Now if InjectionListeners or InjectableTypeListeners fail, we include those errors in our pretty error report. by limpbizkit · 15 years ago
  92. efd4852 Added support for early access to the Servlet conteext. See issue 348 by dhanji · 15 years ago
  93. 5973b1b Added updated Javadocs. by limpbizkit · 15 years ago
  94. 50faaea Removed old Javadocs. by limpbizkit · 15 years ago
  95. 03b81a6 Early draft of InjectionListeners. by limpbizkit · 15 years ago
  96. 3697a67 Changing BytecodeGen to be sensitive to restrictions on calls to ClassLoader.getSystemClassLoader(). This is necessary for some constrained JVMs. by limpbizkit · 15 years ago
  97. 5b25734 Misc small changes. Fix for bug 341, and tweaking assisted inject Javadoc. by limpbizkit · 15 years ago
  98. 9d6b656 Applying ilya.firman's patch for issue 218. I tweaked the patch to use TypeLiteral's new type resolution methods like TypeLiteral.getReturnType(Method) etc., which makes it so we always just do-the-right-thing for matching type variables. by limpbizkit · 15 years ago
  99. b1ebb1b Installing a null module currently gives a lame error message; this one's better by limpbizkit · 15 years ago
  100. 8bda412 Fixed some doc pointing at an old version by limpbizkit · 15 years ago