Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-06-16 | First steps Builder support | Reinier Zwitserloot | |
2013-06-16 | Added injectType methods to Eclipse/JavacHandlerUtil, which we'll need to ↵ | Reinier Zwitserloot | |
inject the created $Builder type. Inspired by Philipp Eichhorn's work in lombok-pg. | |||
2013-06-16 | Removed a SuppressWarnings which old eclipse doesn't care about for some ↵ | Reinier Zwitserloot | |
reason... now I'm just confused. Do we need it or not? | |||
2013-06-16 | issue 536: annotationprocessor now always returns false. | Reinier Zwitserloot | |
2013-06-13 | Added some very limited reporting when OutOfMemorErrors occur during | Reinier Zwitserloot | |
parse tree builder under javac. Let's hope our users reporting these issues can use this to figure out which files are triggering the issue. | |||
2013-05-31 | Added @NonNull on parameters feature (issue 514), | Reinier Zwitserloot | |
including docs and changelog. | |||
2013-05-30 | Fixes for issue 470: VerifyErrors when using @SneakyThrows. | Reinier Zwitserloot | |
2013-05-24 | added test case and delombok result for issue 520 (val in ↵ | Reinier Zwitserloot | |
try-with-resources). WARNING: I havent added ecj test output yet because so far there is no ecj7 available for testing with our buildscripts. I should fix that first and then Ill sort this out. | |||
2013-05-24 | whoops, didnt update version number to 0.11.9 yet | Reinier Zwitserloot | |
2013-05-24 | added previous fix of issue 520 to the changelog | Reinier Zwitserloot | |
2013-05-24 | Fixed more issues related to java7's try-with-resources, | Reinier Zwitserloot | |
and updated ECJ version detection. | |||
2013-05-23 | Added methods to obtain JLS support-level version information from ↵ | Reinier Zwitserloot | |
AST/LombokNode. Tests updates to honour these with //version X at the top of any test file (now also in eclipse, which until now always said it was v6) | |||
2013-05-23 | Added a method to obtain latest java language spec supported by host | Reinier Zwitserloot | |
platform and implemented it for javac BUT NOT FOR ECJ! | |||
2013-05-23 | Updated website; the footer of the video was too long and caused wonky ↵ | Reinier Zwitserloot | |
formatting, and the download page now points to the IntelliJ plugin page instead of saying that IntelliJ doesn't support lombok. | |||
2013-05-06 | Fixed issue 513: If equals is present but hashCode isn't, @Data now ↵ | Reinier Zwitserloot | |
generates a warning to explain this strange situation. | |||
2013-04-23 | bugfix in website ant buildscript for finding the Java2HtmlTask | Reinier Zwitserloot | |
2013-04-23 | prerelease version bump | Reinier Zwitserloot | |
2013-04-23 | added temporary debug switch -Dlombok.debugAsmOnly for issue 470. | Reinier Zwitserloot | |
2013-04-23 | added support for lombok.disablePostCompiler. | Reinier Zwitserloot | |
2013-04-23 | fixed capitalization error in an inner class. | Reinier Zwitserloot | |
2013-04-23 | added link to a great external non-video based tutorial instead of our ↵ | Reinier Zwitserloot | |
crappy way too old slideshow thingie. | |||
2013-04-05 | Type fixes for JDK7 | Robbert Jan Grootjans | |
2013-04-05 | Update to newer version of ivyplusplus | Reinier Zwitserloot | |
2013-04-05 | Some small fixes for Java 7 | Robbert Jan Grootjans | |
2013-04-05 | Fixed small typo | Robbert Jan Grootjans | |
2013-04-02 | long overdue update of copyright year in license file | Roel Spilker | |
2013-03-26 | updated changelog to reflect performance improvements of previous commit. | Roel Spilker | |
2013-03-26 | Massive performance improvements, and a few potentially breaking changes for ↵ | Roel Spilker | |
other lombok plugin developers. | |||
2013-03-26 | We used to add the platform line ending when comparing test files. This ↵ | Roel Spilker | |
obviously doesn't work on windows; we force unix line ending now. | |||
2013-03-25 | Fixed merge conflict in changelog | Roel Spilker | |
2013-03-25 | Changed path in releasenotes | Roel Spilker | |
2013-03-22 | Refactored out references to TypeTags. | Robbert Jan Grootjans | |
Instead they are retrieved dynamically, with a pinch of caching during runtime. We already had some fixes to make sure that compile time constanst were not inlined, but we need to take into account that a lot of the Integer-based enums have been replaced with actual enums. Also, certain TreeMaker methods needed to be invoked dynamically with reflection. This needs to be reviewed, and if it turns out that these changes are too dramatic, we should fork out a larger part of our code for specific JVM versions. | |||
2013-03-18 | Fixed issue 459: Delombok would choke on try-with-resources. | Reinier Zwitserloot | |
2013-03-18 | Added a //version option to test files to restrict them to specific versions. | Reinier Zwitserloot | |
2013-03-18 | Some halfway work on introducing hideNulls feature to toString. Aborted ↵ | Reinier Zwitserloot | |
because it is a lot more work than anticipated, but this code is prettier and slightly more bugfree so worth checking in. | |||
2013-03-18 | fixed javadoc of XAnnotationHandler; they used to be interfaces but now they ↵ | Reinier Zwitserloot | |
are abstract classes. | |||
2013-03-12 | In delombok, we mark the AST as changed if we remove an annotation; this ↵ | Reinier Zwitserloot | |
fixes the issue where delombok would leave lombok annotations in the file if that annotation had no actual effect (such as @Getter on a field if there is an explicit getX method for that field). issue #443: delombok would screw up @SneakyThrows on methods or constructors with empty bodies. Now we generate warnings for this. | |||
2013-03-12 | Fix for issue #436: In eclipse, calling i.e. `list.get(i).extensionMethod()` ↵ | Reinier Zwitserloot | |
would fail with VerifyError when that code is executed in eclipse. | |||
2013-03-11 | Updated documentation to reflect support of JBoss Developer Studio | Reinier Zwitserloot | |
2013-03-11 | Added installer support for JBoss Developer Studio which is an eclipse variant. | Reinier Zwitserloot | |
Also fixed a bug where eclipses installed in user.home weren't found automatically on windows. Also fixed a bug where STS installed in C:\Program Files (X86) wasn't found automatically. | |||
2013-03-11 | Added @Log4j2 support. | Reinier Zwitserloot | |
2013-03-11 | changed the pattern for writing dependencies to the various lib/ directories | Reinier Zwitserloot | |
to be organization-name.jar instead of just name.jar, in order to account for the ever lovely and wonderful apache's crazy decision to call the entirely separate log4j v2.0 also 'log4j'. This does mean you'll have to 'ant clean'. | |||
2013-03-11 | startOnFirstThread is no longer necessary on modern JVMs on mac. | Reinier Zwitserloot | |
2013-03-08 | Compiler options can now be specified for JDK 8 or JDK 6/7 or lower. | Robbert Jan Grootjans | |
After this was finalized I realize that we might consider moving entirely to String based options, instead of inferring the options from the provided enum. This setup does have the benefit of throwing exceptions when options are not present. | |||
2013-03-08 | Added switch to CommentsCatcher. Assumption, until proven otherwise is | Robbert Jan Grootjans | |
that JDK8 behaves similar to JDK7. | |||
2013-03-08 | Test setup for JDK8 support. | Robbert Jan Grootjans | |
Only Oracle provides builds for JDK8 atm, and there is no OpenJDK build, so the setup is slightly different. Files have to be copied manually from an installed JDK. For comparison purposes, an Oracle JDK7 option has been added too. This should be removed before merging to master. | |||
2013-02-25 | fixed typoed URL to onX docs in changelog | Reinier Zwitserloot | |
2013-02-18 | Changed @Value to no longer imply @Wither. Usually you want only | Reinier Zwitserloot | |
a few or no withers at all, and adding them is a lot simpler than removing them. This is a breaking change, but then that's why @Value was in experimental in the first place. | |||
2013-02-18 | whoops, belated push and fixes to the documentation of onX | Reinier Zwitserloot | |
2013-02-11 | Bugfix for delombok mangling x++ into ++x on java7. | Reinier Zwitserloot | |