aboutsummaryrefslogtreecommitdiff
path: root/doc/changelog.markdown
AgeCommit message (Collapse)Author
2019-09-11post-release version bumpReinier Zwitserloot
2019-09-10pre-release version bumpReinier Zwitserloot
2019-09-10[trivial] With PR 2138 reverted, lets not name it in the changelogs.Reinier Zwitserloot
2019-08-27[trivial] typoReinier Zwitserloot
2019-08-27[With] updated documentation for Wither/WithReinier Zwitserloot
2019-08-26Fixes #2156: also clone the annotations on the setter.Roel Spilker
2019-08-22Merge branch 'master' into clone-typeReinier Zwitserloot
2019-08-22[checkerframework]Reinier Zwitserloot
A bit of a shadow feature because the checker framework folks need to do some work on their side. this update makes lombok generate a few checker framework annotations (if configured to do so) which let the checker framework add warnings and errors for example if you misuse builders, or ignore the return values of withers, etc.
2019-08-08[Fixes #2189] Clone type to correctly set annotated type on constructor, ↵Jacob Middag
getter and setter.
2019-07-24Fixes #2184: NPE on package-info.java without package declaration.Roel Spilker
2019-07-16Fixes #1197, add Objects.requireNonNull and Preconditions.checkkNotNull to ↵Roel Spilker
supported null-check styles
2019-07-16[Fixes #2115] builder fields tracking a property that has a default set is ↵Reinier Zwitserloot
now called `$value` in order to convey that you shouldnt manually mess with it.
2019-07-15[fixes #2169] Eclipse 2019-06 + JDK12 + `@Singular` caused a cavalcade of ↵Reinier Zwitserloot
error popups
2019-07-09Merge branch 'customlog'Reinier Zwitserloot
2019-07-09[changelog] adding to the changelog note about improved eclipse non-null ↵Reinier Zwitserloot
support (see previous commit)
2019-07-09[changelog] adding to the changelog note about improved val/var support (see ↵Reinier Zwitserloot
previous commit)
2019-07-09[builder] added a feature: you can now configure builder class name via the ↵Reinier Zwitserloot
config system
2019-07-08Fixes #2165: Generated equals fails on annotated array typeRoel Spilker
2019-06-18[fixes #2140] when pretty-printing (delombok) varargs, only turn array ↵Reinier Zwitserloot
brackets into varargs for the actual top-level type, not for arrays inside the type, such as an array as generics component.
2019-05-22Fixes for CustomLog, AUTHORS entry, extended changlogAdam Juraszek
2019-05-21Merge branch 'bulgakovalexander-feature/typeInferenceImprovements'Reinier Zwitserloot
2019-05-21Code review + mention in changelog for the improvement to val handling vs. ↵Reinier Zwitserloot
lambdas and conditional (ternary) expressions.
2019-05-21Code review for `@CustomLog`, and added documentation and a changelog entry.Reinier Zwitserloot
2019-05-21Update changelog. Fixes #2100Roel Spilker
2019-05-09post-release version bump (to be clear, the static constructor feature 2 ↵Reinier Zwitserloot
commits before this is NOT in the 1.18.8 release; this post-release bump is slightly late).
2019-05-09[trivial] updating changelog retroactively to list an improbable breaking ↵Reinier Zwitserloot
change about the generated parameter is null exception
2019-05-07pre-release version bumpReinier Zwitserloot
2019-05-07[fixes #1981][fixes #1961] Hardcoded some knowledge about how to copy ↵Reinier Zwitserloot
jackson’s `@JsonProperty`.
2019-05-06[fixes #2120] ecj was not generating explicit nullchecks for builder-setters.Reinier Zwitserloot
2019-05-01[fixes #2104] superbuilder + non-list-singulars wouldn’t work due to ↵Reinier Zwitserloot
hardcoded call to emptyList.
2019-05-01[issue #2092] Add an uppercase option to FieldNameConstantsReinier Zwitserloot
2019-05-01[fixes #2083] adds feature ‘access level’ to `@Builder`Reinier Zwitserloot
2019-04-24[changelog] Adding JDK12 updates to changelogReinier Zwitserloot
2019-03-26[fixes #2050] [fixes #2061] javac would fail to skip generating build() ↵Reinier Zwitserloot
method if it is already there
2019-03-26[fixes #2049] Delombok now figures out usages of ‘var’ and delomboks ↵Reinier Zwitserloot
them as just ‘var’ instead of their actual type.
2019-03-26changelog updateRoel Spilker
2019-03-26[i2078] Add possibility to generate assert on `@NonNull`Roel Spilker
2019-03-25[fixes #2046] you can now suppress the builder() method, useful if you only ↵Reinier Zwitserloot
want toBuilder(). Also suppresses the warnings about any missing Builder.Default annotations.
2019-03-25[docs] we had 2 references to v2.0.0; in the end that turned out to simply ↵Reinier Zwitserloot
be v1.16.20.
2019-02-19var/val in Eclipse can now handle intersection types, fixes #1986Roel Spilker
2019-02-12post-release version bumpReinier Zwitserloot
2019-02-12prerelease version bumpReinier Zwitserloot
2019-01-29update changelogRoel Spilker
2019-01-29[fixes #2024] FieldNameConstants was causing lots of problems in eclipse, ↵Reinier Zwitserloot
especially with save actions.
2019-01-15update changelog regarding #2008Roel Spilker
2019-01-08[#1033] steps on the way to issue 1033: You can add cleanup tasks which are ↵Reinier Zwitserloot
deferred (during the javac run) until the end. This already fixes the exotic-to-the-point-of-nonexistent bug where setter and wither compete to steal the `@param` off of the field’s javadoc. Next are to fix builder and setter/wither competing whilst bringing javadocs to `@Builder`. Then for various other conflicts, we should defer removal of lombok imports and annotations until the end too.
2019-01-08@Delegate @NonNull would error on jdk8, fixes #1935Roel Spilker
2018-11-06[fixes #1888] [jdk12] lombok can deal with the changes to case/break nodes ↵Reinier Zwitserloot
in JDK12-preview javac.
2018-11-06Improve toString generation for enums. Fixes #1916Roel Spilker
2018-11-05[fixes #1918] toString now supports a configkey to tell it how to deal with ↵Reinier Zwitserloot
super.