1. 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 · 13 years ago
  2. c17c5a9 issue 574 - don't freak out on generated classes when trying to get line numbers. by sberlin · 13 years ago
  3. 405828b issues 592 & 591, documentation updates. by sberlin · 13 years ago
  4. 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 · 13 years ago
  5. e0f5412 Remove AOP boilerplate from user visible stack traces. by limpbizkit@gmail.com · 13 years ago
  6. 33018c3 Add standard Apache LICENSE and NOTICE files to the Maven build by mcculls · 13 years ago
  7. 92f3eab Use correct timestamped CGLIB release in Maven build by mcculls · 13 years ago
  8. b0548c3 Update Maven build to use same level of CGLIB as Ant build by mcculls · 13 years ago
  9. 672d074 implement hashcode when implementing equals. by sberlin · 14 years ago
  10. 7691f9e require ProviderMethod instance to be equal also, per jessewilson review. by sberlin · 14 years ago
  11. 1068a4a allow duplicate @Provides methods to be deduplicated also. by sberlin · 14 years ago
  12. c9d97cf Cache annotation lookups. by crazyboblee · 14 years ago
  13. fc46e1a Fix warnings in core. by limpbizkit@gmail.com · 14 years ago
  14. ea27c01 review comments from jesse. by sberlin · 14 years ago
  15. 8b64d45 Remove InjectorBuilder in favor of methods in Binder. by sberlin · 14 years ago
  16. 692ca95 Align Maven no_aop classifier to match the Ant target by mcculls · 14 years ago
  17. 16f8b0f fix issue 578, Providers.guicify loses injection points from the delegate. by sberlin · 14 years ago
  18. d00bb05 add missing @since tag. by sberlin · 14 years ago
  19. 3bdf721 fix for NO_AOP build. by sberlin · 14 years ago
  20. a523ea5 rm jsr330, move the one method into Providers. by sberlin · 14 years ago
  21. 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
  22. 4d4e160 Clarify that the Maven build requires Maven3 and cleanup temporary CGLIB dependency by mcculls · 14 years ago
  23. 30b582e Minor javadoc fix by mcculls · 14 years ago
  24. 6716a71 a few more @sinces. by sberlin · 14 years ago
  25. 9c28d5b revert State & InheritingState back to using Iterable & Set. by sberlin · 14 years ago
  26. 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
  27. dfdf3e3 Fix strict container tests (avoid duplicate CGLIB classes) by mcculls · 14 years ago
  28. 1c6ff88 fix issue 508 -- consider method return type when deciding whether to bridge. patch contributed by stuart. by sberlin · 14 years ago
  29. 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
  30. aacb484 Add some comments to the Maven POMs by mcculls · 14 years ago
  31. c63f9bb These tests are still intermittent on Maven, so keep them disabled for now by mcculls · 14 years ago
  32. 4757520 Run maven tests with TestNG (better handling of tests) by mcculls · 14 years ago
  33. 3140104 Temporarily disable intermittent tests on the Maven grid by mcculls · 14 years ago
  34. 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
  35. fdd9500 made new classes final. by sberlin · 14 years ago
  36. 6d8ab0b never call hashcode on the underlying binding instances. continue to call equals as lazily as possible. by sberlin · 14 years ago
  37. 6f8b395 (and remove unused import) by sberlin@gmail.com · 14 years ago
  38. 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
  39. c13b545 adding more missing @since 3.0 tags. by sberlin · 14 years ago
  40. dfee9fd issue 531 -- don't let c.g.i.internal.util reference outside its package. by sberlin · 14 years ago
  41. f712ffd make sure MembersInjector dependencies don't blow up on requireExplicitBindings. by sberlin · 14 years ago
  42. 7f6067d Update test to make sure custom @Nullable annotations work, in addition to c.g.i.i.util.Nullable. by sberlin · 14 years ago
  43. 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
  44. 982f83e fix Nullability to check for "$Nullable" (the jarjar renamed "Nullable"), and fix jarjar to build using asm-3.3 (it was using 3.1, and using 3.3 fixes http://code.google.com/p/jarjar/issues/detail?id=21, where annotations on methods that are remapped are loss) by sberlin · 14 years ago
  45. 6f0aee6 move @nullable to internal.util by sberlin · 14 years ago
  46. 6e37096 issue 16. hide internal things (that can be hidden). need to followup to limit visibility on internal things that need to stay pseudo-open and really close the rest. by sberlin · 14 years ago
  47. b02627d issue 407 -- better error messaging for failed interception. previously exploded with a ComputationException, now uses a ConfigurationException with a good msg. by sberlin · 14 years ago
  48. ede7731 issue 496 -- ConstantBindingBuilder was missing to(byte), forgot to commit test. by sberlin · 14 years ago
  49. ebaa152 issue 496 -- ConstantBindingBuilder was missing to(byte). by sberlin · 14 years ago
  50. 09ab5f9 issue 477 - fix Scopes.isSingleton to navigate through exposed private elements. by sberlin · 14 years ago
  51. 1d0f816 issue 446 -- InternalContext.setDependency was returning the current, not previous, dependency. by sberlin · 14 years ago
  52. bc7e150 Issue 552: add buildable maven poms by mcculls · 14 years ago
  53. ac4cdbe Issue 561: fix no_aop build by munging away all aop-related references by mcculls · 14 years ago
  54. 74d714c Issue 552: (step 1) move core code to its own subdirectory by mcculls · 14 years ago