aboutsummaryrefslogtreecommitdiff
path: root/src/core
AgeCommit message (Collapse)Author
2018-06-04Do 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-04Fixex #1697: google’s FluentLogger (Flogger) now available as one of ↵Reinier Zwitserloot
lombok’s log annotations.
2018-06-04fixes #1709 – boolean properties in lombok annotations, such as ↵Reinier Zwitserloot
onlyExplicitlyIncluded, didn’t work.
2018-05-29[release] post-release version bumpReinier Zwitserloot
2018-05-29[release] pre-release version bumpReinier Zwitserloot
2018-05-28Generate default no-args constructorRoel Spilker
2018-05-15[new-style include/exclude] added new-style include/exclude support to ↵Reinier Zwitserloot
EqualsAndHashCode.
2018-05-14Merge pull request #1680 from pbi-qfs/gradleIncrementalReinier 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-03Allow gradle incremental compiling with lombok in annotation processor pathPascal Bihler
Fixes issue #1580
2018-04-23Allow onMethod and onParam in @Getter and @Setter if it is put on a typeRoel Spilker
2018-04-23[bugfix] generics on inner classes whose outer type has generics, when the ↵Reinier Zwitserloot
outer type is an interface, caused bugs in ecj.
2018-04-23[bugfix] onMethod_ in javac was broken; javac would throw an ↵Reinier Zwitserloot
IllegalArgumentException.
2018-04-20move ClassLiteral and FieldSelect from ↵Dmitry Kurelchuk
core/lombok/core/AnnotationValues.java to utils/lombok/core/
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-17fix #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-10Merge pull request #886 from balta3/annotationarraysReinier Zwitserloot
implemented support for annotation arrays as annotation attributes in javac
2018-04-05Merge branch 'cheelio-FieldNameConstants'Reinier Zwitserloot
2018-04-05[fieldNameConstants] code review, docs, tests, fixup.Reinier Zwitserloot
2018-04-04Merge branch 'FieldNameConstants' of https://github.com/cheelio/lombok into ↵Reinier Zwitserloot
cheelio-FieldNameConstants
2018-04-04Merge pull request #1626 from victorwss/masterReinier Zwitserloot
Fix for #1617.
2018-03-31fix #1632: JavacAST: use new Log method for jdk11Takuya Murakami
Some methods of AbstractLog are removed in jdk11. Fix JavacAST.Jdk9Plus to use new log methods added from jdk9.
2018-03-27fix javadoc warningsRoel Spilker
2018-03-27[trivial] some memoryload improvements by not making a new instance but ↵Reinier Zwitserloot
using a cached one instead. Fixes issue #1579
2018-03-27Merge pull request #1583 from jramosf/masterReinier Zwitserloot
#1579: recycle handlers to avoid excessive garbage collection
2018-03-24improve compiler detection for jdk9 later.Takuya Murakami
2018-03-24Fix for #1617.Victor Williams Stafusa da Silva
Signed-off-by: Victor Williams Stafusa da Silva <victorwssilva@gmail.com>
2018-03-21[fix] Fix intellij build with jdk10 (#1572)Takuya Murakami
Add a JavaFileManager class name to KNOWN_JAVA9_FILE_MANAGERS.
2018-03-20[issue #1615] fixes a bug where equals and hashcode would mess up if both ↵Reinier Zwitserloot
the outer and the inner class have generics, the inner is non-static, and you generate equals/hashcode on the inner. Note that in general this is just broken; do not put non-static inner classes in generics-carrying classes in the first place!
2018-03-19Fresh builds wouldn’t work anymore due to a weird addition in ecj9.Reinier Zwitserloot
2018-02-16#1579: recycle handlers to avoid excessive garbage collectionJavier Ramos
2018-02-07Parsing for source level broken under JDK9 due to change in 1.X->X ↵Reinier Zwitserloot
versioning by oracle.
2018-02-07[bugfix] builder.default with the old lombok.experimental.Builder annotation ↵Reinier Zwitserloot
only worked in javac, not eclipse.
2018-02-07[trivial] copyright header year bump to 2018Reinier Zwitserloot
2018-02-07As we’re preparing to release v2, we want to delete the experimental ↵Reinier Zwitserloot
editions of the Builder and Value annotations… but in case you install lombok v2 into eclipse but use an older lombok as dep in your project, we still do want to process the old annotations. Had to stringly-type a few things to make that happen, but, works now.
2018-02-07[var] various upgrades to var:Reinier Zwitserloot
* var is promoted to the main package. * It is no longer an opt-in thing. * bug: var (unlike val) is allowed in old-style for loops, but if you multi-init: for (var i = 0, j="Foo";;), you now get an error that you can't do that. * tests both for the multi-for situation and the new main package variant.
2018-02-07[jdk9] forcing new rounds when compiling multiple modules didn’t work. ↵Reinier Zwitserloot
(FilerException on creating the new round).
2018-02-06[jdk9] added a best-effort attempt to claim away lombok annotations when ↵Reinier Zwitserloot
lombok is deployed in JDK9-module mode. Due to a bug or oversight in jigsaw it is no longer possible to supply 2 providers for the Processor service, which was the common and as far as I know only way to deal with the situation that you want to claim a subset of annotations but look at all of them (which is what lombok wants to do).
2018-02-06[jdk9] add support for using lombok with JDK9 code when compiling using the ↵Reinier Zwitserloot
new module syntax, and having module-info.java files in your source.
2018-01-09use T instead of RuntimeExceptionRoel Spilker
2018-01-09Merge branch 'npe-warning' of https://github.com/2is10/lombok into ↵Roel Spilker
2is10-npe-warning
2018-01-09Wrong documentation variables fix.Ruslan Popenko
I've fixed documentation for Cleanup annotation. Doc provided before wrong variable information (you closed String instead of Closeable).
2018-01-09Potential fix for #1555Roel Spilker
2018-01-09post-release version bumpReinier Zwitserloot
2018-01-09pre-release version bumpReinier Zwitserloot
2018-01-09Updated copyright notices to 2018.Reinier Zwitserloot
2018-01-09[fixes #1554] javac9 now caches type lookups based on ‘position’ which ↵Reinier Zwitserloot
is slapped together by a tuple based on the position (as gleaned from the JCTree object) and the source file (as gleaned from.. Log. *facepalm*). We didn’t update log when resolving for i.e. ‘val’, so the caches get all jumbled up. Fixed by setting the Log’s ‘useSource’ method.
2018-01-09[fixes #1553] attriber of JDK9 checks the enclosing class’s type, which we ↵Reinier Zwitserloot
intentionally haven’t set yet. To avoid NPEs, let’s set it.
2018-01-08jdk9 Builder.Default works again. Fixes #1547Roel Spilker
2018-01-06Whitelist a JavacFileManager implementationLiam Miller-Cushon
See bazelbuild/bazel#4393