• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Changelog
2
3**Note:** Before version 1.0.0, every release may contain breaking changes.
4
5## Version 0.9.1
6
7* **Breaking change**: The static `fuzzerTestOneInput` method in a fuzz target now has to return `void` instead of `boolean`. Fuzz targets that previously returned `true` should now throw an exception or use `assert`.
8* Fixed: `jazzer` wrapper can find `jazzer_driver` even if not in the working directory
9* Fixed: Switch instrumentation no longer causes an out-of-bounds read in the driver
10* Feature: `assert` can be used in fuzz targets
11* Feature: Coverage is now collision-free and more fine-grained (based on [JaCoCo](https://www.eclemma.org/jacoco/))
12* API: Added `pickValue(Collection c)` and `consumeChar(char min, char max)` to `FuzzedDataProvider`
13* API: Added `FuzzerSecurityIssue*` exceptions to allow specifiying the severity of findings
14
15## Version 0.9.0
16
17* Initial release
18