Skip to content

Releases: aspect-build/rules_aws

v0.4.0

26 Jul 16:49
4a40fbb
Compare
Choose a tag to compare
v0.4.0 Pre-release
Pre-release

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.4.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 = "88371c9d38335e96de8dc2da9acbd5f93b2c861a836c4ad36a4c2103a42860d8",
    strip_prefix = "rules_aws-0.4.0",
    url = "https://github.com/aspect-build/rules_aws/releases/download/v0.4.0/rules_aws-v0.4.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

Full Changelog: v0.3.0...v0.4.0

v0.3.0

02 May 21:22
047698a
Compare
Choose a tag to compare
v0.3.0 Pre-release
Pre-release

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

v0.2.0

08 Feb 16:35
Compare
Choose a tag to compare
v0.2.0 Pre-release
Pre-release

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.2.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 = "b1d0bf39fe00307e5dacde58802089ae6f87cbc09cbf2383eaaf3e17f02521a2",
    strip_prefix = "rules_aws-0.2.0",
    url = "https://github.com/aspect-build/rules_aws/releases/download/v0.2.0/rules_aws-v0.2.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

Full Changelog: v0.1.0...v0.2.0

v0.1.0

08 Feb 05:31
Compare
Choose a tag to compare
v0.1.0 Pre-release
Pre-release

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "aspect_rules_aws", version = "0.1.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 = "16701f5a26dadbfc6405b2dc330c7ed6a8573de42ef4938b85db7c17a4ac5c5a",
    strip_prefix = "rules_aws-0.1.0",
    url = "https://github.com/aspect-build/rules_aws/releases/download/v0.1.0/rules_aws-v0.1.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", "rules_aws_dependencies")

rules_aws_dependencies()

What's Changed

  • chore(deps): update dependency bazel to v6.2.1 by @renovate in #2
  • chore(deps): update dependency bazel_skylib_gazelle_plugin to v1.4.2 by @renovate in #3
  • chore(deps): update bazel-contrib/.github action to v3 by @renovate in #10
  • chore(deps): update dependency gazelle to v0.32.0 by @renovate in #8
  • chore: change to non-free license by @alexeagle in #9
  • Revert "chore: change to non-free license" by @alexeagle in #13
  • chore: disable Windows platform usage and add better warning by @CaerusKaru in #15
  • chore(deps): update dependency buildifier_prebuilt to v6.1.2 by @renovate in #16
  • feat: show how the AWS CLI can be included in a container image by @alexeagle in #17
  • chore(deps): update actions/checkout action to v4 by @renovate in #27
  • feat: introduce aws_py_lambda macro by @alexeagle in #30
  • chore(deps): update bazel-contrib/.github action to v4 by @renovate in #29
  • chore(deps): update dependency bazel to v6.3.2 by @renovate in #21
  • chore(deps): update dependency aspect_bazel_lib to v1.35.0 by @renovate in #20
  • chore(deps): update dependency gazelle to v0.33.0 by @renovate in #28
  • chore(deps): update dependency buildifier_prebuilt to v6.3.3 by @renovate in #26
  • chore: update to Bazel 7 by @alexeagle in #43

New Contributors

Full Changelog: https://github.com/aspect-build/rules_aws/commits/v0.1.0