Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-08-21 | [#1808] Probable fix: Using module names with dots in them was causing ↵ | Reinier Zwitserloot | |
issues, as we only use the simple name. Actually getting the full module name is a little tricky, but this should do the job. | |||
2018-08-21 | [fixes #1812] `@Singular` marked collections which nevertheless somehow ↵ | Reinier Zwitserloot | |
ended up null would cause an NPE during `toBuilder()` invocations. | |||
2018-08-21 | bugfix for the new ‘find the next priority’ system committed earlier; it ↵ | Reinier Zwitserloot | |
should also find next priority for the astvisitors (only the annotation visitors were being considered). | |||
2018-08-20 | use delared ast Type instead of generic one saves a lot of "checkcasts" in ↵ | Roland Praml | |
the byte code | |||
2018-07-29 | Printing missing gradle integration would print for any non-javac, ↵ | Reinier Zwitserloot | |
non-gradle compiler. Fixed that. | |||
2018-07-29 | A few upgrades for the printers used with @lombok.core.PrintAST. | Reinier Zwitserloot | |
2018-07-29 | code impl of FieldNameConstants rewrite + test updates for it | Reinier Zwitserloot | |
2018-07-25 | Added key ‘dangerousconfig.lombok.disable’. | Reinier Zwitserloot | |
2018-07-25 | [fixes issue #1759] We removed the ‘flag usage’ check on builder instead ↵ | Reinier Zwitserloot | |
of replacing it with the non-experimental check about 3 years ago when builder moved out of experimental. The check has now been restored. | |||
2018-07-03 | [issue #1347] When lombok generates constructors, it should call the ↵ | Reinier Zwitserloot | |
`@Builder.Default` static method instead of initializing to null/0/false. This does that, for ecj. | |||
2018-07-03 | [issue #1347] When lombok generates constructors, it should call the ↵ | Reinier Zwitserloot | |
`@Builder.Default` static method instead of initializing to null/0/false. This does that, for javac. | |||
2018-06-13 | Merge branch 'janrieke-superBuilder' | Reinier Zwitserloot | |
2018-06-13 | [SuperBuilder] code review, style update, making it JDK1.6 compatible, ↵ | Reinier Zwitserloot | |
documentation review, bugfix for setter auto-presuming chaining even when you didn’t configure it to chain. | |||
2018-06-07 | Also generify AnnotationProcessor logic | mszabo-wikia | |
2018-06-07 | Generify logic to obtain JavacFiler and JavacProcessingEnvironment | mszabo-wikia | |
2018-06-06 | Fix #1716: Update for Gradle incremental compilation API change in Gradle ↵ | mszabo-wikia | |
4.8 and above | |||
2018-06-04 | Make `extraPrivate` opt-in instead of opt-out. Fixes #1708 | Roel Spilker | |
2018-06-04 | FieldNameConstants now defaults to having a prefix ‘FIELD_’, which can ↵ | Reinier Zwitserloot | |
be configured both on the annotation itself and via a config key. This totally breaks compatibility with the previous lombok release, but, hey, it’s in experimental and it’s been one week. This is better. | |||
2018-06-04 | Do not generate a private no-args constructor if: | Roel Spilker | |
- The class has a parent class - There is an explicit XxxArgsConstructor annotation that would generate a no-args constructor Fixes #1703, fixes #1704, fixes #1712 | |||
2018-06-04 | Fixex #1697: google’s FluentLogger (Flogger) now available as one of ↵ | Reinier Zwitserloot | |
lombok’s log annotations. | |||
2018-06-04 | SuperBuilder support for abstract classes | Jan Rieke | |
2018-06-01 | reverted unnecessary import reordering | Jan Rieke | |
2018-06-01 | support @Builder.Default | Jan Rieke | |
2018-06-01 | handle experimental flag usage | Jan Rieke | |
2018-05-31 | javac: delete @SuperBuilder when processing it | Jan Rieke | |
2018-05-30 | no custom builders allowed, so there cannot be a toString() method | Jan Rieke | |
2018-05-30 | code formatting, reordering, rename etc. | Jan Rieke | |
2018-05-28 | Generate default no-args constructor | Roel Spilker | |
2018-05-15 | [new-style include/exclude] added new-style include/exclude support to ↵ | Reinier Zwitserloot | |
EqualsAndHashCode. | |||
2018-05-14 | Merge pull request #1680 from pbi-qfs/gradleIncremental | Reinier Zwitserloot | |
Allow gradle incremental compiling with lombok | |||
2018-05-14 | [annotation based ToString] hey.. we have annotation based ToString now, ↵ | Reinier Zwitserloot | |
where you can include/exclude fields by annotating the fields. | |||
2018-05-11 | ecj: setter methods now return self() | Jan Rieke | |
2018-05-03 | Allow gradle incremental compiling with lombok in annotation processor path | Pascal Bihler | |
Fixes issue #1580 | |||
2018-04-27 | fixed generation problem caused by reusing expressions | Jan Rieke | |
2018-04-23 | Allow onMethod and onParam in @Getter and @Setter if it is put on a type | Roel Spilker | |
2018-04-23 | [bugfix] onMethod_ in javac was broken; javac would throw an ↵ | Reinier Zwitserloot | |
IllegalArgumentException. | |||
2018-04-17 | [Fixes #1656] Lombok would silently do the wrong thing when using references ↵ | Reinier Zwitserloot | |
to `public static final String` fields, instead of actual string literals, there where you can specify strings in lombok annotation parameters, such as `@ToString(of = MyClass.CONSTANT_FIELD)`. We can’t really fix it, but at least now lombok will error when you do that and describe in detail what’s going wrong. | |||
2018-04-16 | let @SuperBuilder's toString() call super.toString() | Jan Rieke | |
2018-04-16 | avoid name clashes with generics on the annotated class | Jan Rieke | |
2018-04-17 | fix #1657: EmptyLombokFileObject: file:// URI must not contain authority part. | Takuya Murakami | |
fix degrade of #1617, the file URI must starts with 'file:///', not 'file://'. | |||
2018-04-15 | use superclass generics for abstract builder class' extends clause | Jan Rieke | |
2018-04-15 | consider generics on the annotated class and potential superclass | Jan Rieke | |
2018-04-14 | revert changes to HandleBuilder (everything is in HandleSuperBuilder) | Jan Rieke | |
2018-04-14 | adjusted expected result of test case | Jan Rieke | |
2018-04-14 | include superclass when referring to parent builder | Jan Rieke | |
example: "ChildBuilder extends Parent.ParentBuilder" | |||
2018-04-10 | correct return type and statement for @Singular | Jan Rieke | |
2018-04-10 | @Override for overridden methods | Jan Rieke | |
2018-04-10 | apply generics on builder extends clause; fixed builder name generation | Jan Rieke | |
2018-04-10 | Merge pull request #886 from balta3/annotationarrays | Reinier Zwitserloot | |
implemented support for annotation arrays as annotation attributes in javac | |||
2018-04-05 | build class names not configurable any more; removed toBuilder | Jan Rieke | |