Skip to content

v0.23.0

Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 14 Oct 23:13
9f9de1d

WORKSPACE snippet:

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

http_archive(
    name = "com_adobe_rules_gitops",
    sha256 = "2b2c8ca24125d20fb4b26123655c7da6b75c99bf0a432f3bacaeed604aff21a7",
    strip_prefix = "rules_gitops-0.23.0",
    urls = ["https://github.com/adobe/rules_gitops/archive/refs/tags/v0.23.0.tar.gz"],
)

http_archive(
    name = "io_bazel_rules_go",
    sha256 = "099a9fb96a376ccbbb7d291ed4ecbdfd42f6bc822ab77ae6f1b5cb9e914e94fa",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.35.0/rules_go-v0.35.0.zip",
        "https://github.com/bazelbuild/rules_go/releases/download/v0.35.0/rules_go-v0.35.0.zip",
    ],
)

load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")

go_rules_dependencies()

go_register_toolchains(version = "1.19.2")

load("@com_adobe_rules_gitops//gitops:deps.bzl", "rules_gitops_dependencies")

rules_gitops_dependencies()

load("@com_adobe_rules_gitops//gitops:repositories.bzl", "rules_gitops_repositories")

rules_gitops_repositories()

What's Changed

  • Update CI image by @kzadorozhny in #185
  • Fix runfiles merging for @bazel_tools//tools/bash/runfiles by @fmeum in #184
  • Support targeting the root folder of the target GitOps directory using the prer tool by @kzadorozhny in #190

New Contributors

Full Changelog: v0.22.0...v0.23.0