Skip to content

Release v0.2.0 (2021-07-12)

Compare
Choose a tag to compare
@stefanbucur stefanbucur released this 12 Jul 17:55
· 48 commits to master since this release
75e5a38

New features

Major feature: Java fuzzing support through Jazzer (thank you @fmeum for the great contributions!).

Other features and fixes:

  • Runfiles support in OSS-Fuzz packaging builds.
  • Improved dictionary validation (#140).
  • Support for OSS-Fuzz option files in fuzz tests. (#148).
  • Various smaller tweaks and fixes (thanks @xinhaoyuan and @fmeum).

Workspace setup

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

http_archive(
    name = "rules_fuzzing",
    sha256 = "127d7c45e9b7520b3c42145b3cb1b8c26477cdaed0521b02a0298907339fefa1",
    strip_prefix = "rules_fuzzing-0.2.0",
    urls = ["https://github.com/bazelbuild/rules_fuzzing/archive/v0.2.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()