Releases: aspect-build/rules_rollup
Releases · aspect-build/rules_rollup
v0.10.0
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "aspect_rules_rollup",
sha256 = "3b2c942a0242a0c7877012b74a46a1d6d26e162c1b76d675c24b3078cf66877c",
strip_prefix = "rules_rollup-0.10.0",
url = "https://github.com/aspect-build/rules_rollup/archive/refs/tags/v0.10.0.tar.gz",
)
######################
# rules_rollup setup #
######################
load("@aspect_rules_rollup//rollup:dependencies.bzl", "rules_rollup_dependencies")
# Fetches the rules_rollup 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.
rules_rollup_dependencies()
load("@aspect_rules_rollup//rollup:repositories.bzl", "LATEST_VERSION", "rollup_register_toolchains")
rollup_register_toolchains(
name = "rollup",
rollup_version = LATEST_VERSION,
)
# Fetch and register a node toolchain, if you haven't already
load("@rules_nodejs//nodejs:repositories.bzl", "DEFAULT_NODE_VERSION", "nodejs_register_toolchains")
nodejs_register_toolchains(
name = "node",
node_version = DEFAULT_NODE_VERSION,
)
What's Changed
- chore: update to aspect_bazel_lib_1.9.2 by @gregmagolan in #25
- refactor: update to rules_js 1.0.0-rc.4 by @gregmagolan in #26
Full Changelog: v0.9.0...v0.10.0
v0.9.0
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "aspect_rules_rollup",
sha256 = "068b25845e5d3d417133192ff13c5179f1195d9f7f316a258ea4ed94460b1e93",
strip_prefix = "rules_rollup-0.9.0",
url = "https://github.com/aspect-build/rules_rollup/archive/refs/tags/v0.9.0.tar.gz",
)
######################
# rules_rollup setup #
######################
load("@aspect_rules_rollup//rollup:dependencies.bzl", "rules_rollup_dependencies")
# Fetches the rules_rollup 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.
rules_rollup_dependencies()
load("@aspect_rules_rollup//rollup:repositories.bzl", "LATEST_VERSION", "rollup_register_toolchains")
rollup_register_toolchains(
name = "rollup",
rollup_version = LATEST_VERSION,
)
# Fetch and register a node toolchain, if you haven't already
load("@rules_nodejs//nodejs:repositories.bzl", "DEFAULT_NODE_VERSION", "nodejs_register_toolchains")
nodejs_register_toolchains(
name = "node",
node_version = DEFAULT_NODE_VERSION,
)
What's Changed
- chore: update to aspect_bazel_lib 1.8.0 by @gregmagolan in #20
- chore: update to aspect_rules_js 1.0.0-rc.2 by @gregmagolan in #21
- chore: update to aspect_bazel_lib 1.8.1 by @gregmagolan in #22
- chore: update to aspect_bazel_lib 1.9.1 by @gregmagolan in #23
- chore: update to rules_js 1.0.0-rc.3 by @gregmagolan in #24
Full Changelog: v0.8.0...v0.9.0
v0.8.0
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "aspect_rules_rollup",
sha256 = "4f581917b91893e01037daebd8d060744c149601153be356bf7b38e5b8c2b79c",
strip_prefix = "rules_rollup-0.8.0",
url = "https://github.com/aspect-build/rules_rollup/archive/refs/tags/v0.8.0.tar.gz",
)
######################
# rules_rollup setup #
######################
load("@aspect_rules_rollup//rollup:dependencies.bzl", "rules_rollup_dependencies")
# Fetches the rules_rollup 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.
rules_rollup_dependencies()
load("@aspect_rules_rollup//rollup:repositories.bzl", "LATEST_VERSION", "rollup_register_toolchains")
rollup_register_toolchains(
name = "rollup",
rollup_version = LATEST_VERSION,
)
# Fetch and register a node toolchain, if you haven't already
load("@rules_nodejs//nodejs:repositories.bzl", "DEFAULT_NODE_VERSION", "nodejs_register_toolchains")
nodejs_register_toolchains(
name = "node",
node_version = DEFAULT_NODE_VERSION,
)
Full Changelog: v0.7.0...v0.8.0
v0.7.0
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "aspect_rules_rollup",
sha256 = "5b706261f595d8d6246f3909c49bbff668430c4177b2ead1a76d30c12682d78d",
strip_prefix = "rules_rollup-0.7.0",
url = "https://github.com/aspect-build/rules_rollup/archive/refs/tags/v0.7.0.tar.gz",
)
######################
# rules_rollup setup #
######################
load("@aspect_rules_rollup//rollup:dependencies.bzl", "rules_rollup_dependencies")
# Fetches the rules_rollup 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.
rules_rollup_dependencies()
load("@aspect_rules_rollup//rollup:repositories.bzl", "LATEST_VERSION", "rollup_register_toolchains")
rollup_register_toolchains(
name = "rollup",
rollup_version = LATEST_VERSION,
)
# Fetch and register a node toolchain, if you haven't already
load("@rules_nodejs//nodejs:repositories.bzl", "DEFAULT_NODE_VERSION", "nodejs_register_toolchains")
nodejs_register_toolchains(
name = "node",
node_version = DEFAULT_NODE_VERSION,
)
What's Changed
- fix: use short_path when resolving files in bazel-out by @alexeagle in #10
- fix: rename rollup_bundle.bzl to defs.bzl by @thesayyn in #11
- fix: default for rollup config pointed to non-existent target by @alexeagle in #12
- chore: update to rules_js 0.13.0 by @gregmagolan in #14
- Configure Renovate by @jbedard in #15
- chore(deps): update actions/cache action to v3 by @renovate in #17
- chore(deps): update actions/checkout action to v3 by @renovate in #18
New Contributors
Full Changelog: v0.6.0...v0.7.0
v0.6.0
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "aspect_rules_rollup",
sha256 = "b5bd5d2423d27b27e6a2f28064accf642114c78abd1b428f9bb6130985a6022b",
strip_prefix = "rules_rollup-0.6.0",
url = "https://github.com/aspect-build/rules_rollup/archive/refs/tags/v0.6.0.tar.gz",
)
######################
# rules_rollup setup #
######################
load("@aspect_rules_rollup//rollup:dependencies.bzl", "rules_rollup_dependencies")
# Fetches the rules_rollup 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.
rules_rollup_dependencies()
load("@aspect_rules_rollup//rollup:repositories.bzl", "LATEST_VERSION", "rollup_register_toolchains")
rollup_register_toolchains(
name = "rollup",
rollup_version = LATEST_VERSION,
)
# Fetch and register a node toolchain, if you haven't already
load("@rules_nodejs//nodejs:repositories.bzl", "DEFAULT_NODE_VERSION", "nodejs_register_toolchains")
nodejs_register_toolchains(
name = "node",
node_version = DEFAULT_NODE_VERSION,
)
What's Changed
- chore: update to rules_js 0.12.1 by @gregmagolan in #8
Full Changelog: v0.5.0...v0.6.0
v0.5.0
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "aspect_rules_rollup",
sha256 = "0ab48138b8762737a5e1808cc200c1ead91d07f632e190bbf10911237467bfb1",
strip_prefix = "rules_rollup-0.5.0",
url = "https://github.com/aspect-build/rules_rollup/archive/refs/tags/v0.5.0.tar.gz",
)
######################
# rules_rollup setup #
######################
load("@aspect_rules_rollup//rollup:dependencies.bzl", "rules_rollup_dependencies")
# Fetches the rules_rollup 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.
rules_rollup_dependencies()
load("@aspect_rules_rollup//rollup:repositories.bzl", "LATEST_VERSION", "rollup_register_toolchains")
rollup_register_toolchains(
name = "rollup",
rollup_version = LATEST_VERSION,
)
# Fetch and register a node toolchain, if you haven't already
load("@rules_nodejs//nodejs:repositories.bzl", "DEFAULT_NODE_VERSION", "nodejs_register_toolchains")
nodejs_register_toolchains(
name = "node",
node_version = DEFAULT_NODE_VERSION,
)
What's Changed
- chore: update to rules_js 0.11.0 by @gregmagolan in #7
Full Changelog: v0.4.0...v0.5.0
v0.4.0
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "aspect_rules_rollup",
sha256 = "64044ea24225fd9b1cadbe36aa80bf1b29e2b86d6dd31143336e0d1b6d99e080",
strip_prefix = "rules_rollup-0.4.0",
url = "https://github.com/aspect-build/rules_rollup/archive/refs/tags/v0.4.0.tar.gz",
)
######################
# rules_rollup setup #
######################
load("@aspect_rules_rollup//rollup:dependencies.bzl", "rules_rollup_dependencies")
# Fetches the rules_rollup 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.
rules_rollup_dependencies()
load("@aspect_rules_rollup//rollup:repositories.bzl", "LATEST_VERSION", "rollup_register_toolchains")
rollup_register_toolchains(
name = "rollup",
rollup_version = LATEST_VERSION,
)
# Fetch and register a node toolchain, if you haven't already
load("@rules_nodejs//nodejs:repositories.bzl", "DEFAULT_NODE_VERSION", "nodejs_register_toolchains")
nodejs_register_toolchains(
name = "node",
node_version = DEFAULT_NODE_VERSION,
)
What's Changed
- chore: update to rules_js 0.9.1 by @gregmagolan in #5
- chore: update to rules_js 0.10.0 by @gregmagolan in #6
New Contributors
- @gregmagolan made their first contribution in #5
Full Changelog: v0.3.0...v0.4.0
v0.3.0
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "aspect_rules_rollup",
sha256 = "ca9776d93cf4da9da65f26ea72b9d4279a80caec838b5ea8522320f9a250d9f2",
strip_prefix = "rules_rollup-0.3.0",
url = "https://github.com/aspect-build/rules_rollup/archive/refs/tags/v0.3.0.tar.gz",
)
######################
# rules_rollup setup #
######################
load("@aspect_rules_rollup//rollup:dependencies.bzl", "rules_rollup_dependencies")
# Fetches the rules_rollup 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.
rules_rollup_dependencies()
load("@aspect_rules_rollup//rollup:repositories.bzl", "LATEST_VERSION", "rollup_register_toolchains")
rollup_register_toolchains(
name = "rollup",
rollup_version = LATEST_VERSION,
)
# Fetch and register a node toolchain, if you haven't already
load("@rules_nodejs//nodejs:repositories.bzl", "DEFAULT_NODE_VERSION", "nodejs_register_toolchains")
nodejs_register_toolchains(
name = "node",
node_version = DEFAULT_NODE_VERSION,
)
What's Changed
- chore: update rules_js by @alexeagle in #4
Full Changelog: v0.2.0...v0.3.0
v0.2.0
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "aspect_rules_rollup",
sha256 = "88b8ebfa78994c43650b4d53074a9edac1c74f0931fcb251747d8df37569b628",
strip_prefix = "rules_rollup-0.2.0",
url = "https://github.com/aspect-build/rules_rollup/archive/refs/tags/v0.2.0.tar.gz",
)
######################
# rules_rollup setup #
######################
load("@aspect_rules_rollup//rollup:dependencies.bzl", "rules_rollup_dependencies")
# Fetches the rules_rollup 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.
rules_rollup_dependencies()
load("@aspect_rules_rollup//rollup:repositories.bzl", "LATEST_VERSION", "rollup_register_toolchains")
rollup_register_toolchains(
name = "rollup",
rollup_version = LATEST_VERSION,
)
# Fetch and register a node toolchain, if you haven't already
load("@rules_nodejs//nodejs:repositories.bzl", "DEFAULT_NODE_VERSION", "nodejs_register_toolchains")
nodejs_register_toolchains(
name = "node",
node_version = DEFAULT_NODE_VERSION,
)
What's Changed
- ci: add e2e asserting that setup works for users by @alexeagle in #2
- update rules_js by @alexeagle in #3
New Contributors
- @alexeagle made their first contribution in #2
Full Changelog: v0.1.0...v0.2.0
v0.1.0
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "aspect_rules_rollup",
sha256 = "a2b8c204fb029c9570ab324cdc30c6c8aa0f266eab27cc5603cec5b06891f9cc",
strip_prefix = "rules_rollup-0.1.0",
url = "https://github.com/aspect-build/rules_rollup/archive/refs/tags/v0.1.0.tar.gz",
)
load("@aspect_rules_rollup//rollup:repositories.bzl", "rollup_register_toolchains", "rules_rollup_dependencies")
# Fetches the rules_rollup 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.
rules_rollup_dependencies()
rollup_register_toolchains()
What's Changed
New Contributors
Full Changelog: https://github.com/aspect-build/rules_rollup/commits/v0.1.0