All Versions
71
Latest Version
Avg Release Cycle
38 days
Latest Release
-
Changelog History
Page 7
Changelog History
Page 7
-
v0.2.1 Changes
- ๐ Fix bug with accesses of fields from unannotated packages (#67)
- โ Add models for ArrayDeque (#68)
-
v0.2.0 Changes
- ๐ New feature: NullAway now does some checking that
@NonNull
fields are not used before the are initialized (#58, #63). Updating to 0.2.0 may cause "read before initialized" problems to be detected in code that was NullAway-clean before. - Model
Throwable.getMessage()
as returning@Nullable
, matching the spec. This may also cause new warnings in code that was previously NullAway-clean.
- ๐ New feature: NullAway now does some checking that
-
v0.1.8 Changes
- ๐ Make NullAway's Error Prone dependence compileOnly (#50). This could help reduce size of annotation processor paths, speeding build times.
- ๐ Handle AND, OR, XOR expressions getting autoboxed (#55)
- ๐ Handle @Nullable type use annotations (#56)
-
v0.1.7 Changes
- ๐ฆ -XepOpt:NullAway:ExcludedClasses accepts package prefixes. (#38)
- ๐ Handle unary minus and unary plus (#40)
- ๐ Handle prefix increment / decrement (#43)
- โ add check for unannotated packages when excluding a class (#46)
-
v0.1.6 Changes
- We now check static fields and initializer blocks (#34)
- ๐ Fix for lambdas where the functional interface method had
void
return type (#37)
-
v0.1.5 Changes
- โ Add finer grained suppressions and auto-fixes (#31). You can
suppress initialization errors specifically now with
@SuppressWarnings("NullAway.Init")
- ๐ Fix performance issue with lambdas (#29)
- โ Add lambda support to the RxNullabilityPropagator handler. (#12)
- โ Add finer grained suppressions and auto-fixes (#31). You can
suppress initialization errors specifically now with
-
v0.1.4 Changes
- Another lambda fix (#23)
-
v0.1.3 Changes
- ๐ Fixes for lambdas (#13, #17)
-
v0.1.2 Changes
- โฌ๏ธ Downgrade Checker Framework due to crash (#7)
- More modeling of Rx operators (#8)
-
v0.1.1 Changes
- โก๏ธ Update Checker Framework dependence to pick up bug fix (#4)