File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
+ Version 0.12.3
4
+ ---------------
5
+ * Remove InferredJARModelsHandler (#1079 )
6
+ * Fix crash with annotation on enum (#1097 )
7
+ * Handle case null in switch statements (#1100 )
8
+ * Don't report errors for writes to @NullUnmarked fields (#1102 )
9
+ * Support primitive static final fields as constant args in access paths (#1105 )
10
+ * Fix issue with annotations in module-info.java files (#1109 )
11
+ * Report error for @nullable synchronized block expression (#1106 )
12
+ * Add support for parameter types with wildcards for JarInfer (#1107 )
13
+ * Properly handle nested generics and multiple wildcard type args in JarInfer (#1114 )
14
+ * Proper checking of vararg overrides with JSpecify annotations (#1116 )
15
+ * Add flag to indicate only @NullMarked code should be checked (#1117 )
16
+ * Add support for static fields in contracts (#1118 )
17
+ * Maintenance
18
+ - Fix comment positions (#1098 )
19
+ - [ refactoring] Wrap calls to Types.subst and Types.memberType (#1115 )
20
+ - Build latest Caffeine on CI (#1111 )
21
+
3
22
Version 0.12.2
4
23
---------------
5
24
* Fix reading of JSpecify @nullable annotations from varargs parameter in bytecode (#1089 )
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ org.gradle.caching=true
12
12
org.gradle.jvmargs =-Xmx2g -XX:MaxMetaspaceSize=512m
13
13
14
14
GROUP =com.uber.nullaway
15
- VERSION_NAME =0.12.3-SNAPSHOT
15
+ VERSION_NAME =0.12.3
16
16
17
17
POM_DESCRIPTION =A fast annotation-based null checker for Java
18
18
You can’t perform that action at this time.
0 commit comments