| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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 | |
| 2018-04-05 | wildcards for the constructor parameter | Jan Rieke | |
| 2018-04-05 | wildcards for the builder() method | Jan Rieke | |
| 2018-04-05 | more generics; return getInstance() instead of this | Jan Rieke | |
| 2018-04-05 | generics for the Builder class; generate abstract methods | Jan Rieke | |
| 2018-04-05 | add javac handler | Jan Rieke | |
| Conflicts: src/core/lombok/experimental/SuperBuilder.java | |||
| 2018-04-05 | Merge branch 'cheelio-FieldNameConstants' | Reinier Zwitserloot | |
| 2018-04-05 | [fieldNameConstants] code review, docs, tests, fixup. | Reinier Zwitserloot | |
| 2018-04-04 | Merge branch 'FieldNameConstants' of https://github.com/cheelio/lombok into ↵ | Reinier Zwitserloot | |
| cheelio-FieldNameConstants | |||
| 2018-04-04 | Merge pull request #1626 from victorwss/master | Reinier Zwitserloot | |
| Fix for #1617. | |||
| 2018-03-31 | fix #1632: JavacAST: use new Log method for jdk11 | Takuya Murakami | |
| Some methods of AbstractLog are removed in jdk11. Fix JavacAST.Jdk9Plus to use new log methods added from jdk9. | |||
| 2018-03-28 | [builderParentClass] Code to handle builder on enums removed; that doesn’t ↵ | Reinier Zwitserloot | |
| make a heck of a lot of sense and enums aren’t extensible in the first place. Also fixed up a wrong access level; now all existing builder tests pass. | |||
