1. 1555f11 Undeprecating createInjector(Stage, ...). by limpbizkit@gmail.com · 14 years ago
  2. c1c02a6 Removing the ScopeChecker proof-of-concept. by limpbizkit@gmail.com · 14 years ago
  3. 7bcec88 fixes issue 263 -- introduces ability to "deduplicate" bindings. all BindingImpl subclasses now implement equals/hashcode properly and duplicates can be erased by throwing them into a set (preferably a LinkedHashSet to preserve the order of the elements). no new API methods. by sberlin@gmail.com · 14 years ago
  4. e2a8afd Actual correct implementation for what r1176 tried to do. Better tests too. by sberlin@gmail.com · 14 years ago
  5. f51c690 Change behavior of method overriding if any methods in the call stack had @com.google.inject.Inject. The new behavior is.. by sberlin@gmail.com · 14 years ago
  6. 6cc8094 fixes issue with requireExplicitBindings and linked bindings where the implicit binding is scoped. by sberlin · 14 years ago
  7. 3e1d177 Fix for requireExplicitBindings bug with ManagedFilterPipeline. Added a testcase too. by dhanji · 14 years ago
  8. 680c8b5 fixes issue 490 -- sets using marker annotations don't work properly all the time. by sberlin · 14 years ago
  9. 0391e96 Initial checkin, Guice-Persist (Supports JPA only). All tests passing. by dhanji · 14 years ago
  10. 7df9cf3 fixes issue 319 -- cleanup invalid leftover bindings that were added optimistically to support circular references. by sberlin · 14 years ago
  11. 535c84c assert that the turkeybacon problem as described in issue 231 can be solved using toConstructor. by sberlin · 14 years ago
  12. 3748e4a issue 329 - cleanup error message for under-specified assistedinject factory. by sberlin · 14 years ago
  13. 82cbc6d fixes issue 482 - anonymous loggers created every time a provider method is used (if logger is a parameter) by sberlin · 14 years ago
  14. 9ad3437 fixed issue 479, thanks to mcculls for pointing out the problem and providing a patch. by sberlin · 14 years ago
  15. 8ad6468 warn when a subclass overrides a method marked with @Inject but does not itself add @Inject (or invalidates the injectability), thus causing guice to stop injecting the method. by sberlin · 14 years ago
  16. af9a4df fixes issue 478. by sberlin · 14 years ago
  17. f7ac6ea Patches to let Guice be more OSGi (and classloader) friendly. Solves issue 439, issue 337, issue 443, and issue 343. All provided by Stuart McCulloch. Many thanks, Stuart! by sberlin · 14 years ago
  18. 34d2f00 add two more failing tests for Map/Multibinder -- permitDuplicates should be allowable through Module.overrides calls. by sberlin · 14 years ago
  19. e27b63d Updated common api version to 2.1. Next snapshots will have this, more correct, version. by dhanji · 14 years ago
  20. 2e8f7f9 committed aragos' patch (+small fix for TypesTest & AllTests) for issue 474 (and issue 293) -- fix ParametrizedTypeImpl.toString. by sberlin · 14 years ago
  21. 8bc8387 issue 297 -- allow Multibinder's dependencies to be retrieved in Stage.TOOL. also added a failing test for MapBinder & Modules.override (analog to existing failing test in MultibinderTest). by sberlin · 14 years ago
  22. cba3a51 expose LinkedBindingImpl's dependency via HasDependencies -- it was one of only two binding impls to not implement HasDependencies (UntargettedBindingImpl was the other). by sberlin · 14 years ago
  23. 9239bdf fixes issue 425 - coalesce javax.inject.Named & com.google.inject.name.Named, patch from cgdecker. by sberlin · 14 years ago
  24. b997821 introduces InjectorBuilder.disableCircularProxies, to forcibly prevent guice from creating a proxy to resolve circular dependencies. by sberlin · 14 years ago
  25. 6fdc146 Fixed GuiceFilter so that it no longer depends on a static pipeline. If GuiceFilter is created by the injector, it will prefer an injected pipeline over the static one, preventing horridness in tests and other production environments with multiple GuiceFilters. by dhanji · 14 years ago
  26. b5ec94a patch AssistedInject extension to support multi-constructor injection with FactoryModuleBuilder. reuses @AssistedInject annotation to mark valid constructors. undeprecates @AssistedInject. deprecates FactoryProvider in favor of FactoryModuleBuilder now that all functionality is matched and performance problems are fixed. you can still get the "old" behavior (ordered matching of parameters, non-guiced objects, etc..) by using @AssistedInject+FactoryProvider, but using @Inject or @AssistedInject with FactoryModuleBuilder will give you the new behavior. by sberlin · 14 years ago
  27. 141f800 optimize assistedinject - touches on issue 435 - it is now about ~4x faster than the old style assisted inject (instead of being ~15x slower than it). the optimization only applies if the assisted objects do not inject an Injector or a Provider of an assisted key. by sberlin · 14 years ago
  28. 6760625 Injector.getExistingBinding + tests, ultimately necessary to create a proper solution for issue 430 (and useful in its own right for SPI usage). by sberlin · 14 years ago
  29. b59f1e4 fixed typos in documentation (one pointed out by issue 408) by sberlin · 14 years ago
  30. 6add9f6 fixed InjectorBuilder method visibility, as pointed out by cgdecker in issue 395. by sberlin · 14 years ago
  31. c2a6625 cleanup related to issue 395. rather than using Guice.createInjectorBuilder, use "new InjectorBuilder()". deprecated methods in Guice that took the Stage parameter. (didn't deprecate other methods because it's still a good easy-to-use way to start getting into Guice.) added more tests to JitBindingsTest for @Provides, child injectors & private modules (private modules was broken!). rolled passing around Injector options (stage, jitDisabled) into a new InjectorOptions class to prevent those things from breaking again in the future. renamed InjectorBuilderImpl to InternalInjectorCreator because it has to be public for InjectorBuilder to use it, and didn't want to confuse auto-complete IDEs into offering InjectorBuilderImpl as an option. by sberlin · 14 years ago
  32. 888a264 fixes issue 342 - ability to disable JIT bindings (require explicit bindings). this revision creates a new public facing API of: by sberlin · 14 years ago
  33. 97c2271 issue 454 - add an annotation to mark @Injectable methods as wanting injection during Stage.TOOL. by sberlin · 14 years ago
  34. 87aea1b Fix for assisted inject bug introduced in r1120. by isaac.q.shum · 14 years ago
  35. 0254c2a Fix for issue 455: Request dispatcher was not setting at attribute which failed to properly forward to JSPs. Thanks to Eric Burke for this fix. by dhanji · 14 years ago
  36. 7f916bb Javadoc for toConstructor() binding statement. by dhanji · 14 years ago
  37. 6a8523c Fix for issue #455 where path info was a memoized provided incorrectly to request-dispatcher produced requests. by dhanji · 15 years ago
  38. 48f3a91 Fixing typo in ProviderBindingImpl's toString() pointed out by Frank. by limpbizkit · 15 years ago
  39. e477c78 with(instance) api for servlet module. Thanks to isaac.shum by dhanji · 15 years ago
  40. 2cd3f72 fix for locking problem in old assisted inject. by dhanji · 15 years ago
  41. 9309a9e Apply sberlin's patch for issue 434 by limpbizkit · 15 years ago
  42. 19d6dde Some speedups in the filter and servlet pipelines. by dhanji · 15 years ago
  43. 0bd3bd6 Apply mcculls' patch for issue 437 by limpbizkit · 15 years ago
  44. 0e23eb0 tidy up multibindings doc to specify ordering unsuppress a passing test by limpbizkit · 15 years ago
  45. d73430a Use a marker interface rather than the Proxy APIs to discover if returned singletons are circular-dependency proxies by limpbizkit · 15 years ago
  46. f03bdb8 Explode when circularly dependent singletons cannot be fixed by our constructor proxies. As it stands, sometimes a singleton can result in two instances being created. by limpbizkit · 15 years ago
  47. 661b786 Updated TCK. by crazyboblee · 15 years ago
  48. 0054263 Updated TCK. by crazyboblee · 15 years ago
  49. 9b59852 Updated TCK by limpbizkit · 15 years ago
  50. ed61f2c Added comments. by crazyboblee · 15 years ago
  51. 6383ccd Added comments. by crazyboblee · 15 years ago
  52. 6ee3634 Removed redundant optimization. by crazyboblee · 15 years ago
  53. 8fbdc4e Fixed typo. Added comment. by crazyboblee · 15 years ago
  54. 570c181 Added comment. by crazyboblee · 15 years ago
  55. c8786de Removed TODO. by crazyboblee · 15 years ago
  56. fa09fef Updated AllTests. by crazyboblee · 15 years ago
  57. dadc506 Updated TCK. by crazyboblee · 15 years ago
  58. 90ac459 Used provider method for @Named binding. by crazyboblee · 15 years ago
  59. 70d777c Added TCK to AllTests. by crazyboblee · 15 years ago
  60. e7a727c Optimized InjectionPoint. by crazyboblee · 15 years ago
  61. 4465327 Update JSR 330 support to the latest TCK by limpbizkit · 15 years ago
  62. 3c84c57 We pass the TCK! by crazyboblee · 15 years ago
  63. 7b54f28 Added TODO. by crazyboblee · 15 years ago
  64. eedf816 We now handle overridden methods properly. by crazyboblee · 15 years ago
  65. eb8a871 Updated Guice to use latest TCK. by crazyboblee · 15 years ago
  66. a3c45b3 Updated Guice to use latest TCK. by crazyboblee · 15 years ago
  67. 82b8993 Updated Guice to use JUnit-enabled TCK. by crazyboblee · 15 years ago
  68. 8d449c3 Added JSR-330 TCK. by crazyboblee · 15 years ago
  69. 2acabce Update JSR 330 support. by limpbizkit · 15 years ago
  70. b1eb06a Jsr330.guicify() gives you a Guice-friendly Provider by limpbizkit · 15 years ago
  71. f2f7225 Possibly the riskiest change in order to improve JSR 330 integration: Now it's possible to directly bind a javax.inject.Provider type literal using our DSL. by limpbizkit · 15 years ago
  72. b47d75a JSR 330 strict constraints checking: by limpbizkit · 15 years ago
  73. b4fdfbe JSR 330 scopes support by limpbizkit · 15 years ago
  74. 365f834 First effort at support for JSR 330. by limpbizkit · 15 years ago
  75. ada2f98 Make MapBinder buildable in Java 5. A prior commit accidentally pulled in some Java6isms by limpbizkit · 15 years ago
  76. 1925d9f Lifecycle now supports parallel execution. Need to add support for parallel startup and autostart next. by dhanji · 15 years ago
  77. d184d64 Preliminary lifecycle and broadcasting extension experiment. Some servlet test cleanups bundled. by dhanji · 15 years ago
  78. 02d505c Fixed typo in documentation. by netdpb · 15 years ago
  79. 6840fcb Jesse's tweaks to aragos' patch r1063. His patch was quite well implemented and these changes are mostly pedantic. by limpbizkit · 15 years ago
  80. c1e65da aragos' four-month old patch for issue 346, wherein he adds FactoryModuleBuilder. by limpbizkit · 15 years ago
  81. e93f260 Isaac's patch to fix scoping for null values. by limpbizkit · 15 years ago
  82. 0cb8b86 Including sources in providers wrapped for scoping. This fixes a problem reported by Isaac on bug 271. by limpbizkit · 15 years ago
  83. d8750fd some test fixes for ScopeChecker and Multibinder by limpbizkit · 15 years ago
  84. 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
  85. 1920322 New scope checker feature. by limpbizkit · 15 years ago
  86. 1f1fca7 a test for what happens when creating a singleton fails by limpbizkit · 15 years ago
  87. 91425c3 Fix for bug 403, wherein explicit bindings were kept in the JIT bindings map. by limpbizkit · 15 years ago
  88. 84b82ec New failing test: circularly dependent providers aren't properly singletons! And they aren't detected either. by limpbizkit · 15 years ago
  89. 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
  90. 0efcc6c Added mutlimap support to MapBinder. by netdpb · 15 years ago
  91. 37387e2 Injector.getAllBindings(), feature for issue 389. by limpbizkit · 15 years ago
  92. ad8ed23 Fixing a TODO for modules.override() plus private modules by limpbizkit · 15 years ago
  93. 28e3001 Rewrote struts2 plugin and added some bugfixes to the servlet regex dispatcher. by dhanji · 15 years ago
  94. 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
  95. 136dd75 Fixin' a doc typo by limpbizkit · 15 years ago
  96. 398017a New API: Multibinder.permitDuplicates() and MapBinder.permitDuplicates() by limpbizkit · 15 years ago
  97. 52aad3b New API: Scopes.isSingleton(Binding) by limpbizkit · 15 years ago
  98. 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
  99. f374014 Fixin' typos in implementation detail, as pointed out by Dhanji. by limpbizkit · 15 years ago
  100. 39e9886 New API: toConstructor(Constructor, TypeLiteral). by limpbizkit · 15 years ago