Skip to content

v0.3.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 02 May 21:22
· 4 commits to main since this release
047698a

Using Bzlmod with Bazel 6 or greater

  1. (Bazel 6 only) Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_rules_aws", version = "0.3.0")

Using WORKSPACE

Paste this snippet into your file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_aws",
    sha256 = "ab795803d646949f2db9ad6467807d0bc9def64fe612b39ae1e64d3cfd0a5150",
    strip_prefix = "rules_aws-0.3.0",
    url = "https://github.com/aspect-build/rules_aws/releases/download/v0.3.0/rules_aws-v0.3.0.tar.gz",
)

######################
# rules_aws setup #
######################
# Fetches the rules_aws dependencies.
# If you want to have a different version of some dependency,
# you should fetch it *before* calling this.
# Alternatively, you can skip calling this function, so long as you've
# already fetched all the dependencies.
load("@aspect_rules_aws//aws:repositories.bzl", "aws_register_toolchains", "rules_aws_dependencies")

rules_aws_dependencies()

aws_register_toolchains(
    name = "aws",
    aws_cli_version = "2.13.0",
)

What's Changed

  • chore: add BCR maintainers by @alexeagle in #48
  • chore(deps): update dependency bazel to v7.1.0 by @renovate in #55
  • chore(deps): update dependency aspect_rules_py to v0.7.1 by @renovate in #54
  • chore(deps): update bazel-contrib/.github action to v6 - autoclosed by @renovate in #53
  • chore(deps): update dependency aspect_bazel_lib to v2.5.3 by @renovate in #52
  • chore(deps): update dependency rules_oci to v1.7.4 by @renovate in #44
  • feat: s3_sync rule for continuous delivery by @alexeagle in #64
  • chore(deps): update dependency aspect_rules_py to v0.7.3 by @renovate in #62
  • chore(deps): update dependency bazel_skylib to v1.6.1 by @renovate in #61
  • refactor: remove dependency on rules_pkg by @alexeagle in #63

Full Changelog: v0.2.0...v0.3.0