Skip to content

v1.5.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 13 Jan 16:17
· 1 commit to master since this release
fff69dd

Using Bzlmod with Bazel 6:

Add to your MODULE.bazel file:

bazel_dep(name = "masorange_rules_helm", version = "1.5.0")

Using WORKSPACE:

Paste this into your WORKSPACE file:

http_archive(
    name = "masorange_rules_helm",
    sha256 = "2b47c144349901258e9973b8969f3aae08a32a82eb7d37388bcf2738758c7eac",
    strip_prefix = "masorange_rules_helm-1.5.0",
    urls = [
        "https://github.com/masmovil/masorange_rules_helm/releases/download/v1.5.0/masorange_rules_helm-v1.5.0.tar.gz",
    ],
)

load("@masorange_rules_helm//:repositories.bzl", "masorange_rules_helm_repositories")

masorange_rules_helm_repositories()

load("@masorange_rules_helm//:config.bzl", "masorange_rules_helm_configure")

masorange_rules_helm_configure()

What's Changed

  • feat(bazel|toolchain): Added gcloud.py to toolchain by @carloshdezbueno in #84
  • feat: remove dependency on legacy unmaintained rules_docker by @danigar in #86
  • feat: support age instead of gpg by @danigar in #88
  • chore: convert examples folder in a different workspace/bzlmod by @danigar in #89

New Contributors

Full Changelog: v1.4.2...v1.5.0