Skip to content
This repository has been archived by the owner on Oct 2, 2023. It is now read-only.

Various updates & fixes

Compare
Choose a tag to compare
@gravypod gravypod released this 25 Apr 18:08
6ea707b

Copy the following into your WORKSPACE file to use rules_docker at release v0.24.0

http_archive(
    name = "io_bazel_rules_docker",
    sha256 = "27d53c1d646fc9537a70427ad7b034734d08a9c38924cc6357cc973fed300820",
    strip_prefix = "rules_docker-0.24.0",
    urls = ["https://github.com/bazelbuild/rules_docker/releases/download/v0.24.0/rules_docker-v0.24.0.tar.gz"],
)

Breaking Changes:

Because of #2042, toolchain_configure's client_config becomes a Bazel label instead of an absolute path. Existing applications have to put their config.json in a Bazel repository, add Bazel rule to export it, and refer it as a label in toolchain_configure.

What's Changed:

  1. remove dependency on external python for sha256 (#1993)
  2. Update rules kotlin (#2030)
  3. Specifying client config.json with Bazel label (#2032)
  4. perf: remove no-remote-cache execution requirements (#2043)
  5. stop printing output on successful operations (#2047)
  6. Stamp e2e tests (#2000)
  7. Fix flaky tests. Use jq to sort JSON arrays before comparing them. (#2007)
  8. Replace python with python3 in incremental_load.sh.tpl (#2051)
  9. Changing docker client config attributes to Bazel labels (#2042)
  10. Clean unused package oci/ (#2061)
  11. Run script allows empty docker_args (#2053)
  12. Support credential helpers in container_pull (#2034)