Skip to content

Releases: aspect-build/rules_rollup

v0.10.0

02 Aug 23:04
e17621e
Compare
Choose a tag to compare
v0.10.0 Pre-release
Pre-release

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

Full Changelog: v0.9.0...v0.10.0

v0.9.0

30 Jul 04:08
b72b278
Compare
Choose a tag to compare
v0.9.0 Pre-release
Pre-release

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

Full Changelog: v0.8.0...v0.9.0

v0.8.0

28 Jun 04:28
Compare
Choose a tag to compare
v0.8.0 Pre-release
Pre-release

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

21 Jun 05:15
Compare
Choose a tag to compare
v0.7.0 Pre-release
Pre-release

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

11 Jun 00:27
93a4ead
Compare
Choose a tag to compare
v0.6.0 Pre-release
Pre-release

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

Full Changelog: v0.5.0...v0.6.0

v0.5.0

03 Jun 23:13
50b29c1
Compare
Choose a tag to compare
v0.5.0 Pre-release
Pre-release

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

Full Changelog: v0.4.0...v0.5.0

v0.4.0

03 Jun 18:08
9196b50
Compare
Choose a tag to compare
v0.4.0 Pre-release
Pre-release

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

New Contributors

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

v0.3.0

31 May 21:27
4d7096d
Compare
Choose a tag to compare
v0.3.0 Pre-release
Pre-release

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

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

v0.2.0

14 May 04:10
c25602f
Compare
Choose a tag to compare
v0.2.0 Pre-release
Pre-release

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

New Contributors

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

v0.1.0

28 Apr 23:21
8e48023
Compare
Choose a tag to compare
v0.1.0 Pre-release
Pre-release

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