Skip to content

Release v0.4.0 (2023-09-10)

Compare
Choose a tag to compare
@stefanbucur stefanbucur released this 10 Sep 14:02
· 13 commits to master since this release
ec40a7b

What's Changed

  • Update the RE2 example to the latest version. by @stefanbucur in #211
  • Remove libFuzzer stub source file by @fmeum in #213
  • Use Bazel's default PATH when running Python actions by @fmeum in #217
  • Do not deviate from UBSan default for local fuzzing by @fmeum in #219
  • Add coverage support to C++ regression tests by @fmeum in #212
  • Fix memory leak in Java runfiles tests by @fmeum in #220
  • Update bazel to 5.4.0 by @keith in #226
  • Update rules_python and use new deps installer by @keith in #225
  • Update honggfuzz to 2.5 by @fmeum in #229
  • Update and simplify Jazzer integration by @fmeum in #218
  • Apply buildifier lint fixes by @fmeum in #233
  • Add asan-ubsan instrumentation option by @fmeum in #231
  • Update Jazzer to v0.20.1 by @fmeum in #232

New Contributors

Full Changelog: v0.3.2...v0.4.0

Workspace Setup

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "rules_fuzzing",
    sha256 = "c0dc1f90dea236299271e558d8303dd4cc8c7554b2b0639561e5007d2d33328e",
    strip_prefix = "rules_fuzzing-0.4.0",
    urls = ["https://github.com/bazelbuild/rules_fuzzing/archive/v0.4.0.zip"],
)

load("@rules_fuzzing//fuzzing:repositories.bzl", "rules_fuzzing_dependencies")

rules_fuzzing_dependencies()

load("@rules_fuzzing//fuzzing:init.bzl", "rules_fuzzing_init")

rules_fuzzing_init()

load("@fuzzing_py_deps//:requirements.bzl", "install_deps")

install_deps()