Skip to content

v0.15.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 07 Dec 00:59
· 34 commits to main since this release
066b469

WORKSPACE snippet:

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

http_archive(
    name = "com_adobe_rules_gitops",
    sha256 = "f36b4aa4f0db06fb447d11b78e68ee16ec61801b25160f1208b40b3adbdf3fc2",
    strip_prefix = "rules_gitops-0.15.0",
    urls = ["https://github.com/adobe/rules_gitops/archive/refs/tags/v0.15.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

Full Changelog: v0.14.2...v0.15.0