Skip to content

Releases: typetools/checker-framework

Checker Framework 1.9.6

24 Oct 20:27
Compare
Choose a tag to compare

Version 1.9.6, 8 October 2015

Fixed issue: 460.

Checker Framework 1.9.5

02 Sep 02:29
Compare
Choose a tag to compare

Version 1.9.5, 1 September 2015

Test Framework Updates:

  • The test framework has been refactored to improve extensibility.
  • Tests that previously extended ParameterizedCheckerTest or
    CheckerTest should extend either CheckerFrameworkTest or nothing.
  • If a test used methods that were previously found on
    CheckerTest, you may find them in TestUtilities.

Fixed issues: 438, 457, 459.

Checker Framework 1.9.4

31 Aug 22:59
Compare
Choose a tag to compare

Version 1.9.4, 4 August 2015

Documented the notion of a compound checker, which depends on other checkers
and automatically runs them.

Renamed -AuseConservativeDefaultsForUnannotatedSourceCode command-line
option to -AuseSafeDefaultsForUnannotatedSourceCode

Moved the Checker Framework version control repository from Google Code to
GitHub, and from the Mercurial version control system to Git. If you have
cloned the old repository, then discard your old clone and create a new one
using this command:
git clone https://github.com/typetools/checker-framework.git

Fixed issues: 427, 429, 434, 442, 450.

Checker Framework 1.9.3

31 Aug 22:26
Compare
Choose a tag to compare

Version 1.9.3, 1 July 2015

New command-line options:

  • -AsafeDefaultsForUnannotatedBytecode causes a checker to use conservative
    defaults for .class files that were compiled without running the given
    checker. Without this option, type-checking is unsound (that is, there
    might be errors at run time even though the checker issues no warnings).
  • -AuseConservativeDefaultsForUnannotatedSourceCode uses conservative
    annotations for unannotated type uses. Use this when compiling a library in
    which some but not all classes are annotated.

Various bug fixes and documentation improvements.

Fixed issues: 436.