aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@tipit.to>2009-09-03 01:43:54 +0200
committerReinier Zwitserloot <reinier@tipit.to>2009-09-03 01:43:54 +0200
commit780a17e583a9fb9261b8423acaf8afae5533fd19 (patch)
tree03e1181105ccab74877c6c73c5c44143c563a580
parentc46bf8576fb2424c107f970a90bc57bc6ed5204a (diff)
downloadlombok-780a17e583a9fb9261b8423acaf8afae5533fd19.tar.gz
lombok-780a17e583a9fb9261b8423acaf8afae5533fd19.tar.bz2
lombok-780a17e583a9fb9261b8423acaf8afae5533fd19.zip
Added changelog on previous commit.
-rw-r--r--doc/changelog.markdown1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index 8546a84a..67e54f80 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -3,6 +3,7 @@ Lombok Changelog
### v0.8.5
+* There's a commonly used `@NotNull` annotation, from javax.validation (and in earlier versions of hibernate, which is the origin of javax.validation) which does not quite mean what we want it to mean: It is not legal on parameters, and it is checked at runtime after an explicit request for validation. As a workaround, we've removed checking for any annotation named `NotNull` from the nonnull support of lombok's generated Getters, Setters, and constructors. [Issue #43](http://code.google.com/p/projectlombok/issues/detail?id=43)
* Fixed yet another issue with `@SneakyThrows`. This was reported fixed in v0.8.4. but it still didn't work quite as it should. Still falls under the bailiwick of
[Issue #30](http://code.google.com/p/projectlombok/issues/detail?id=30)