Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 715 Bytes

MIGRATION.md

File metadata and controls

12 lines (10 loc) · 715 Bytes

Pre 0.9 -> 0.9

0.14.0 -> 0.14.1

  • Removed with_observers from Executor trait.
  • MmapShMemProvider::new_shmem_persistent has been removed in favour of MmapShMem::persist. You probably want to do something like this: let shmem = MmapShMemProvider::new()?.new_shmem(size)?.persist()?;

0.14.1 -> 0.15.0

  • MmapShMem::new and MmapShMemProvider::new_shmem_with_id now take AsRef<Path> instead of a byte array for the filename/id.
  • The closure passed to a DumpToDiskStage now provides the Testcase instead of just the Input.
  • StatsStage is deleted, and it is superceded by AflStatsStage