Sourced from org.checkerframework:checker-qual's releases.
Checker Framework 3.42.0
Version 3.42.0 (December 15, 2023)
User-visible changes:
Method annotation
@AssertMethod
indicates that a method checks a value and possibly throws an assertion. Using it can make flow-sensitive type refinement more effective.In
org.checkerframework.common.util.debug
, renamedEmptyProcessor
toDoNothingProcessor
. Removedorg.checkerframework.common.util.report.DoNothingChecker
. MovedReportChecker
fromorg.checkerframework.common.util.report
toorg.checkerframework.common.util.count.report
.Checker Framework 3.41.0
Version 3.41.0 (December 4, 2023)
User-visible changes:
New command-line options: -AassumePureGetters Unsoundly assume that every getter method is pure
Implementation details:
Added method
isDeterministic()
to theAnnotationProvider
interface.
CFAbstractValue#leastUpperBound
andCFAbstractValue#widenUpperBound
are now final. Subclasses should override methodCFAbstractValue#upperBound(V, TypeMirror, boolean)
instead.Closed issues:
#1497, #3345, #6037, #6204, #6276, #6282, #6290, #6296, #6319, #6327.
Sourced from org.checkerframework:checker-qual's changelog.
Version 3.42.0 (December 15, 2023)
User-visible changes:
Method annotation
@AssertMethod
indicates that a method checks a value and possibly throws an assertion. Using it can make flow-sensitive type refinement more effective.In
org.checkerframework.common.util.debug
, renamedEmptyProcessor
toDoNothingProcessor
. Removedorg.checkerframework.common.util.report.DoNothingChecker
. MovedReportChecker
fromorg.checkerframework.common.util.report
toorg.checkerframework.common.util.count.report
.Version 3.41.0 (December 4, 2023)
User-visible changes:
New command-line options: -AassumePureGetters Unsoundly assume that every getter method is pure
Implementation details:
Added method
isDeterministic()
to theAnnotationProvider
interface.
CFAbstractValue#leastUpperBound
andCFAbstractValue#widenUpperBound
are now final. Subclasses should override methodCFAbstractValue#upperBound(V, TypeMirror, boolean)
instead.Closed issues:
#1497, #3345, #6037, #6204, #6276, #6282, #6290, #6296, #6319, #6327.
ed3a237
new release 3.42.09053af5
Prep for release.886d0b3
Add support for opt.map(type::method) pattern. (#6370)4b5e2c9
ReportChecker: Fix array access crash3eb26a9
Fix guava-assertions.astub7906a83
Add -y
, a second command-line option for exclusionb38ed80
Fix Kotlin instructionsae8a6e1
Add support for OptionalDouble, OptionalInt, OptionalLong17226ff
Add Optional method annotations964d027
Permit
Stream.filter(Optional::isPresent).map(Optional::get)