Releases: bazel-contrib/rules_ruby
v0.16.0
Using Bzlmod with Bazel 7-8
- Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_ruby", version = "0.16.0")
Using Bzlmod with Bazel 6
- Enable with
common --enable_bzlmod
in.bazelrc
. - Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_ruby", version = "0.16.0")
Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel
file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# Skylib is a dependency, remove if you already have it.
http_archive(
name = "bazel_skylib",
sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
],
)
http_archive(
name = "rules_ruby",
sha256 = "971b86974e5698abf3aa0a5dc285d378af19c7f2e1f1de33d2d08405460c370f",
strip_prefix = "rules_ruby-0.16.0",
url = "https://github.com/bazel-contrib/rules_ruby/releases/download/v0.16.0/rules_ruby-v0.16.0.tar.gz",
)
What's Changed
Full Changelog: v0.15.1...v0.16.0
v0.15.1
Using Bzlmod with Bazel 7-8
- Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_ruby", version = "0.15.1")
Using Bzlmod with Bazel 6
- Enable with
common --enable_bzlmod
in.bazelrc
. - Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_ruby", version = "0.15.1")
Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel
file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# Skylib is a dependency, remove if you already have it.
http_archive(
name = "bazel_skylib",
sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
],
)
http_archive(
name = "rules_ruby",
sha256 = "f3da9dea8b5f723ec33b64181f6abea7c10eea4d8696dd8f1bd58b03166fed8d",
strip_prefix = "rules_ruby-0.15.1",
url = "https://github.com/bazel-contrib/rules_ruby/releases/download/v0.15.1/rules_ruby-v0.15.1.tar.gz",
)
What's Changed
- chore(deps): update dependency bazel_skylib_gazelle_plugin to v1.7.1 by @renovate in #183
- chore: return
WORKSPACE
for Bazel 6 by @p0deje in #184
Full Changelog: v0.15.0...v0.15.1
v0.15.0
Using Bzlmod with Bazel 7-8
- Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_ruby", version = "0.15.0")
Using Bzlmod with Bazel 6
- Enable with
common --enable_bzlmod
in.bazelrc
. - Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_ruby", version = "0.15.0")
Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel
file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# Skylib is a dependency, remove if you already have it.
http_archive(
name = "bazel_skylib",
sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
],
)
http_archive(
name = "rules_ruby",
sha256 = "65c44542de6123decb3e7a83df9c1018c6fcdf7489d6523cd0f5352c12cf44ec",
strip_prefix = "rules_ruby-0.15.0",
url = "https://github.com/bazel-contrib/rules_ruby/releases/download/v0.15.0/rules_ruby-v0.15.0.tar.gz",
)
What's Changed
Full Changelog: v0.14.1...v0.15.0
v0.14.1
Using Bzlmod with Bazel 7
- Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_ruby", version = "0.14.1")
Using Bzlmod with Bazel 6
- Enable with
common --enable_bzlmod
in.bazelrc
. - Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_ruby", version = "0.14.1")
Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel
file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# Skylib is a dependency, remove if you already have it.
http_archive(
name = "bazel_skylib",
sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
],
)
http_archive(
name = "rules_ruby",
sha256 = "32192b8ba89f86fa36f8a9f708948280ffa01e1c301d9ce1e5a8622acb73e80e",
strip_prefix = "rules_ruby-0.14.1",
url = "https://github.com/bazel-contrib/rules_ruby/releases/download/v0.14.1/rules_ruby-v0.14.1.tar.gz",
)
What's Changed
Full Changelog: v0.14.0...v0.14.1
v0.14.0
Using Bzlmod with Bazel 7
- Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_ruby", version = "0.14.0")
Using Bzlmod with Bazel 6
- Enable with
common --enable_bzlmod
in.bazelrc
. - Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_ruby", version = "0.14.0")
Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel
file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# Skylib is a dependency, remove if you already have it.
http_archive(
name = "bazel_skylib",
sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
],
)
http_archive(
name = "rules_ruby",
sha256 = "b849b5559b4168b5725f90b68648a25a62bed52237d5c429e2fa2fea8f809342",
strip_prefix = "rules_ruby-0.14.0",
url = "https://github.com/bazel-contrib/rules_ruby/releases/download/v0.14.0/rules_ruby-v0.14.0.tar.gz",
)
What's Changed
- chore(deps): update bazel-contrib/setup-bazel action to v0.9.1 by @renovate in #168
- chore(deps): update dependency aspect_bazel_lib to v2.9.4 by @renovate in #171
- chore(deps): update dependency bazel to v7.4.1 by @renovate in #170
- feat: update Rubies by @p0deje in #173
Full Changelog: v0.13.0...v0.14.0
v0.13.0
Using Bzlmod with Bazel 7
- Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_ruby", version = "0.13.0")
Using Bzlmod with Bazel 6
- Enable with
common --enable_bzlmod
in.bazelrc
. - Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_ruby", version = "0.13.0")
Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel
file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# Skylib is a dependency, remove if you already have it.
http_archive(
name = "bazel_skylib",
sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
],
)
http_archive(
name = "rules_ruby",
sha256 = "a4b201ec10d22b48d709eec9ade44d540b91ef550e1eca75ec7e2a1eb56bad21",
strip_prefix = "rules_ruby-0.13.0",
url = "https://github.com/bazel-contrib/rules_ruby/releases/download/v0.13.0/rules_ruby-v0.13.0.tar.gz",
)
What's Changed
- chore(deps): update dependency aspect_bazel_lib to v2.9.3 by @renovate in #165
- chore(deps): update dependency bazel to v7.4.0 by @renovate in #166
- feat: update supported Ruby versions by @p0deje in #167
Full Changelog: v0.12.2...v0.13.0
v0.12.2
Using Bzlmod with Bazel 7
- Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_ruby", version = "0.12.2")
Using Bzlmod with Bazel 6
- Enable with
common --enable_bzlmod
in.bazelrc
. - Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_ruby", version = "0.12.2")
Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel
file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# Skylib is a dependency, remove if you already have it.
http_archive(
name = "bazel_skylib",
sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
],
)
http_archive(
name = "rules_ruby",
sha256 = "0595b8570705974e425b594415da826d44a0b8a3a02d755fdde5d15f924d5ec2",
strip_prefix = "rules_ruby-0.12.2",
url = "https://github.com/bazel-contrib/rules_ruby/releases/download/v0.12.2/rules_ruby-v0.12.2.tar.gz",
)
What's Changed
- chore(deps): update dependency bazel_gazelle to v0.38.0 by @renovate in #145
- chore(deps): update dependency bazel to v7.3.0 by @renovate in #147
- chore(deps): update dependency aspect_bazel_lib to v2.8.0 by @renovate in #148
- chore(deps): update dependency buildifier_prebuilt to v7 by @renovate in #149
- chore(deps): update dependency aspect_bazel_lib to v2.8.1 by @renovate in #151
- chore(deps): update dependency bazel to v7.3.1 by @renovate in #150
- chore(deps): update dependency buildifier_prebuilt to v7.3.1 by @renovate in #152
- chore(deps): update dependency io_bazel_rules_go to v0.50.0 by @renovate in #153
- chore(deps): update dependency io_bazel_rules_go to v0.50.1 by @renovate in #154
- chore(deps): update dependency aspect_bazel_lib to v2.9.0 by @renovate in #155
- chore(deps): update bazel-contrib/setup-bazel action to v0.9.0 by @renovate in #158
- chore(deps): update dependency bazel_gazelle to v0.39.0 by @renovate in #157
- chore(deps): update dependency aspect_bazel_lib to v2.9.1 by @renovate in #159
- chore(deps): update dependency bazel to v7.3.2 by @renovate in #160
- chore(deps): update dependency bazel_gazelle to v0.39.1 by @renovate in #161
- chore(deps): update bazel-contrib/.github action to v7 by @renovate in #162
- chore(deps): update dependency aspect_bazel_lib to v2.9.2 by @renovate in #163
- chore: Handle + in canonical repo name by @honnix in #164
New Contributors
Full Changelog: v0.12.1...v0.12.2
v0.12.1
Using Bzlmod with Bazel 7
- Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_ruby", version = "0.12.1")
Using Bzlmod with Bazel 6
- Enable with
common --enable_bzlmod
in.bazelrc
. - Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_ruby", version = "0.12.1")
Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel
file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# Skylib is a dependency, remove if you already have it.
http_archive(
name = "bazel_skylib",
sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
],
)
http_archive(
name = "rules_ruby",
sha256 = "9bcf239ef669b19b53e041827a3b5fb54439b3505e1d93680d6839cbdcc80d52",
strip_prefix = "rules_ruby-0.12.1",
url = "https://github.com/bazel-contrib/rules_ruby/releases/download/v0.12.1/rules_ruby-v0.12.1.tar.gz",
)
What's Changed
- fix: use override Ruby toolchain consistently by @sushain97 in #143
- chore(deps): update dependency aspect_bazel_lib to v2.7.9 by @renovate in #142
Full Changelog: v0.12.0...v0.12.1
v0.12.0
Using Bzlmod with Bazel 7
- Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_ruby", version = "0.12.0")
Using Bzlmod with Bazel 6
- Enable with
common --enable_bzlmod
in.bazelrc
. - Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_ruby", version = "0.12.0")
Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel
file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# Skylib is a dependency, remove if you already have it.
http_archive(
name = "bazel_skylib",
sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
],
)
http_archive(
name = "rules_ruby",
sha256 = "278047118bff94453a70243427afc82e2a8dd13f8a186c3e9103b3e8a3c08d5b",
strip_prefix = "rules_ruby-0.12.0",
url = "https://github.com/bazel-contrib/rules_ruby/releases/download/v0.12.0/rules_ruby-v0.12.0.tar.gz",
)
What's Changed
- chore(deps): update bazel-contrib/setup-bazel action to v0.8.5 by @renovate in #132
- add
--disable-install-doc
to Ruby configure args to speed up installation time by @timsutton in #133 - chore(deps): update dependency io_bazel_rules_go to v0.48.1 by @renovate in #135
- chore(deps): update dependency aspect_bazel_lib to v2.7.8 by @renovate in #137
- chore(deps): update dependency bazel to v7.2.1 by @renovate in #138
- chore(deps): update dependency io_bazel_rules_go to v0.49.0 by @renovate in #139
- Support per-target Ruby toolchain by @sushain97 in #140
- Set
$HOME
to$TEST_TMPDIR
in test targets by @sushain97 in #141
New Contributors
- @timsutton made their first contribution in #133
Full Changelog: v0.11.0...v0.12.0
v0.11.0
Using Bzlmod with Bazel 7
- Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_ruby", version = "0.11.0")
Using Bzlmod with Bazel 6
- Enable with
common --enable_bzlmod
in.bazelrc
. - Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_ruby", version = "0.11.0")
Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel
file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# Skylib is a dependency, remove if you already have it.
http_archive(
name = "bazel_skylib",
sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
],
)
http_archive(
name = "rules_ruby",
sha256 = "21e231f0a0adba5ec771a5c68221c12f2dddc132693abf764cb89fcd292e22e5",
strip_prefix = "rules_ruby-0.11.0",
url = "https://github.com/bazel-contrib/rules_ruby/releases/download/v0.11.0/rules_ruby-v0.11.0.tar.gz",
)
What's Changed
- chore(deps): update dependency io_bazel_rules_go to v0.47.1 by @renovate in #117
- chore(deps): update dependency aspect_bazel_lib to v2.7.3 by @renovate in #118
- chore: sync
.bazelversion
files and disable lockfile by @p0deje in #120 - chore(deps): update bazel-contrib/setup-bazel action to v0.8.4 by @renovate in #121
- chore(deps): update dependency bazel to v7.1.2 by @renovate in #119
- chore(deps): update dependency io_bazel_rules_go to v0.48.0 by @renovate in #122
- chore(deps): update dependency aspect_bazel_lib to v2.7.6 by @renovate in #124
- chore(deps): update dependency aspect_bazel_lib to v2.7.7 by @renovate in #127
- chore(deps): update dependency bazel_skylib_gazelle_plugin to v1.7.0 by @renovate in #129
- fix: properly locate OS-installed
system
Ruby by @p0deje in #128 - chore(deps): update dependency bazel_skylib_gazelle_plugin to v1.7.1 by @renovate in #130
- fix: propagate
ruby_build_version
under bzlmod by @p0deje in #131
Full Changelog: v0.10.0...v0.11.0