File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
+ Version 0.12.2
4
+ ---------------
5
+ * Fix reading of JSpecify @nullable annotations from varargs parameter in bytecode (#1089 )
6
+ * Fix JarInfer handling of generic types (#1078 )
7
+ * Fix another JSpecify mode crash involving raw types (#1086 )
8
+ * Fix bugs in handling of valueOf calls for map keys (#1085 )
9
+ * Suggest correct fix when array component of non-nullable array is made null. (#1087 )
10
+ * Substitute type arguments when checking type parameter nullability at call site (#1070 )
11
+ * Fix JarInfer parameter indexes for instance methods (#1071 )
12
+ * JSpecify mode: initial support for generic methods (with explicit type arguments at calls) (#1053 )
13
+ * Maintenance
14
+ - Update to latest Error Prone and Error Prone Gradle plugin (#1064 )
15
+ - Refactor serialization adapter retrieval by version (#1066 )
16
+ - Remove fixes.tsv serialization from NullAway serialization service (#1063 )
17
+ - Enable javac -parameters flag (#1069 )
18
+ - Update to Gradle 8.11 (#1073 )
19
+ - Add test for issue 1035 (#1074 )
20
+ - remove use of deprecated Gradle API (#1076 )
21
+ - Update to Error Prone 2.36.0 (#1077 )
22
+
3
23
Version 0.12.1
4
24
---------------
5
25
* Add library model for Apache Commons CollectionUtils.isNotEmpty (#932 ) (#1062 )
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.2-SNAPSHOT
15
+ VERSION_NAME =0.12.2
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