Skip to content

1.1.1 (initially tagged as 1.1.0)

Compare
Choose a tag to compare
@tetromino tetromino released this 27 Sep 17:33
· 76 commits to main since this release
b2ed616

Release 1.1.1 (initially tagged as 1.1.0)

New Features

  • Gazelle: support relative imports (#271) and imports from @bazel_tools
    (#273)
  • Add partial.is_instance() (#276)
  • Allow unittest.suite() to accept partial calls of test rules (#276)
  • Allow specifying additional aspects to target under test in
    analysistest.make() (#299)
  • Add Windows support for build_test (#302)

Incompatible Changes

  • structs.to_dict() ignores deprecated to_json()/to_proto() methods (#295)

Contributors

aiuto, alandonovan, Alex Eagle, Alexandre Rostovtsev, Andrew Z Allen, c-parsons,
Christopher Sauer, Daniel Wagner-Hall, David Sanderson, dmaclach, Laurent Le
Brun, Mansur, Olek Wojnar, Philipp Wollermann, River, Samuel Giddins, Thaler
Benedek

WORKSPACE setup

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "bazel_skylib",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.1.1/bazel-skylib-1.1.1.tar.gz",
        "https://github.com/bazelbuild/bazel-skylib/releases/download/1.1.1/bazel-skylib-1.1.1.tar.gz",
    ],
    sha256 = "c6966ec828da198c5d9adbaa94c05e3a1c7f21bd012a0b29ba8ddbccb2c93b0d",
)
load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
bazel_skylib_workspace()

Using the rules

See the source.