Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-12-21 | [fixes #2682] Fix NPE, always add Javadoc return statement | Rawi01 | |
2020-12-20 | [tests] Support javadoc in ecj tests | Rawi01 | |
2020-12-15 | fix #2679 | murphy-li | |
2020-12-04 | [build] The 'utils' source files had a dep on main which is not okay; I need ↵ | Reinier Zwitserloot | |
to address the build so that this causes errors. | |||
2020-11-13 | [refactor] reflection code streamlined by sending it through the Permit class | Reinier Zwitserloot | |
2020-10-03 | [javac] Added/improved support for the 'receiver parameter' feature | Reinier Zwitserloot | |
2020-06-25 | Merge branch 'newbuild' | Reinier Zwitserloot | |
2020-06-25 | [bugfix] building would fail | Reinier Zwitserloot | |
due to an invalid reference from src/utils to src/core. | |||
2020-06-25 | Avoid class.getSimpleName except in static initializers or error messages | Roel Spilker | |
2020-06-23 | [build] rewriting the build system | Reinier Zwitserloot | |
2020-06-19 | #1543: First primitives, then primitive wrappers, then other references | Roel Spilker | |
2020-05-28 | Update Fake.class to support OpenJ9 Field Layout | Jack Lu | |
Currently lombok crashes when building with OpenJ9 JDK as described in #2414 It is due to the `override` field offset from Fake.class doesn't match actual offset value for AccessibleObject.class in OpenJ9 This change is to support the OpenJ9 Field layout algorithm. | |||
2020-01-08 | [fixes #788] lombok generated equals method plus a non-null-by-default ↵ | Reinier Zwitserloot | |
annotation no longer clash. | |||
2019-09-25 | [jdk13] Added support for printing text blocks (triple quoted strings) in ↵ | Reinier Zwitserloot | |
text block form | |||
2019-07-15 | [fixes #2169] Eclipse 2019-06 + JDK12 + `@Singular` caused a cavalcade of ↵ | Reinier Zwitserloot | |
error popups | |||
2019-05-06 | [trivial] replacing all calls to Class.newInstance() with ↵ | Reinier Zwitserloot | |
Class.getConstructor().newInstance to avoid warnings which are default in many JDK11+ environments, and it shouldn’t change anything (we handle the change from sneaky throwing to InvocationTargetException appropriately). | |||
2019-04-24 | [trivial] adding a comment to give context to the fix for delombok being ↵ | Reinier Zwitserloot | |
overly liberal with applying "var" to things. | |||
2019-04-24 | [jdk11] delombok was printing most variable declarations that are generated ↵ | Reinier Zwitserloot | |
by lombok with ‘var’. | |||
2019-04-24 | [fixes #2085] JDK12 compatibility. Also acknowledging @nqzero for the ↵ | Reinier Zwitserloot | |
permit-reflect library which is inspiring our shenanigans :) | |||
2019-01-22 | [fixes #2019] Lombok now properly deals with `@NonNull` specifically on the ↵ | Reinier Zwitserloot | |
‘type use’ of a parameter (and, in case of arrays, on the outermost dimension which is actually the first one listed. Weird corner case of the JLS). | |||
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. | |||
2018-11-06 | [fixes #1888] [jdk12] lombok can deal with the changes to case/break nodes ↵ | Reinier Zwitserloot | |
in JDK12-preview javac. | |||
2018-10-29 | eliminate ‘you are using private API’ warnings by streamlining all ↵ | Reinier Zwitserloot | |
reflective access via a class that uses sun.misc.Unsafe to arrange access. From the nqzero permit-reflect library. | |||
2018-09-11 | code review and fixes for the ‘copyable annotations’ setting concept. | Reinier Zwitserloot | |
2018-09-11 | Add configuration key, handle whereever NULLABLE is handled, support Eclipse. | Werner Dietl | |
2018-09-04 | [wip] Random fixes to various tests that are failing, especially against Java7. | Reinier Zwitserloot | |
2018-08-20 | optimized the to/fromQualifiedName method | Roland Praml | |
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-04-20 | move 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-02-07 | [trivial] copyright header year bump to 2018 | Reinier Zwitserloot | |
2018-02-07 | Fix version parsing for jdk10. | Roel Spilker | |
2017-12-05 | [JDK9] fixing delombok’s comment integration in JDK9. | Reinier Zwitserloot | |
2017-11-29 | bugfix for delomboking source that does not compile; it should just emit ↵ | Reinier Zwitserloot | |
compiler errors, not stack traces. | |||
2017-11-28 | JDK9 support for delombok (and thus, for running the tests under JDK9). | Reinier Zwitserloot | |
2017-03-22 | update references to issue numbers | Roel Spilker | |
2017-01-19 | refactor of how creating void types works, also cleaned up some syntax. | Reinier Zwitserloot | |
2015-10-06 | New feature: FieldDefaults can now be configured to apply to _every_ file, ↵ | Reinier Zwitserloot | |
regardless of annotations. | |||
2015-02-04 | @UtilityClass handlers now more intelligent about inner types of implicitly ↵ | Reinier Zwitserloot | |
static contexts (enums, interfaces, and annotation declarations). Also added tests to test for these. | |||
2015-02-01 | Fixed issues with val in inner classes, and re-enabled a test that caught it ↵ | Reinier Zwitserloot | |
that we ignored earlier. | |||
2015-01-31 | updated some copyright headers and reverted a change to use a TreeMap to ↵ | Reinier Zwitserloot | |
force a more deterministic order to file processing in order to aid debugging. Also updated changelog. | |||
2015-01-31 | [i694] When we resolve anything with inner classes, supertype references in ↵ | Reinier Zwitserloot | |
those inner classes that also have val will break, depending on compile order. This should fix it. | |||
2015-01-11 | Set @Singularize code for javac improved, Map @Singularize added. | Reinier Zwitserloot | |
2015-01-05 | @Singleton for j.u.Sets works in javac. | Reinier Zwitserloot | |
2014-12-08 | moved builder to core package (deprecated old one, created new one, added ↵ | Reinier Zwitserloot | |
alias). | |||
2014-06-05 | Finished refactor of FieldAugment; there's no longer a separate variant for ↵ | Roel Spilker | |
boolean and references, and the code no longer blows up with a bunch of NPEs if you try to use the reference variant (which is now the only variant) with a primitive type. Should have zero effect on features or bugs, 100% refactor. | |||
2014-06-05 | [#688] Bugfix for eclipse: syntax highlighting would break amongst many ↵ | Reinier Zwitserloot | |
other features if using @Setter and most other features. | |||
2014-03-17 | [#590][refactor] Fix for deadlock in WeakHashMap. Refactored all code that ↵ | Roel Spilker | |
used a WeakHashMap to fake a field. | |||
2014-02-04 | #471: @SneakyThrows should work in NetBeans | Jan Lahoda | |
2013-10-10 | Whoops, Classload errors running lombok on javac with backing JVM 7 or ↵ | Reinier Zwitserloot | |
below; fixed. |