Skip to content

Releases: bazel-contrib/rules_ruby

v0.14.0

25 Nov 19:07
1c1e9a8
Compare
Choose a tag to compare

Using Bzlmod with Bazel 7

  1. Add to your MODULE.bazel file:
bazel_dep(name = "rules_ruby", version = "0.14.0")

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. 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

30 Oct 20:30
1c55fba
Compare
Choose a tag to compare

Using Bzlmod with Bazel 7

  1. Add to your MODULE.bazel file:
bazel_dep(name = "rules_ruby", version = "0.13.0")

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. 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

16 Oct 16:43
7bfcd11
Compare
Choose a tag to compare

Using Bzlmod with Bazel 7

  1. Add to your MODULE.bazel file:
bazel_dep(name = "rules_ruby", version = "0.12.2")

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. 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

24 Jul 03:38
59e1519
Compare
Choose a tag to compare

Using Bzlmod with Bazel 7

  1. Add to your MODULE.bazel file:
bazel_dep(name = "rules_ruby", version = "0.12.1")

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. 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

17 Jul 22:59
8b542cd
Compare
Choose a tag to compare

Using Bzlmod with Bazel 7

  1. Add to your MODULE.bazel file:
bazel_dep(name = "rules_ruby", version = "0.12.0")

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. 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

Full Changelog: v0.11.0...v0.12.0

v0.11.0

03 Jun 22:36
Compare
Choose a tag to compare

Using Bzlmod with Bazel 7

  1. Add to your MODULE.bazel file:
bazel_dep(name = "rules_ruby", version = "0.11.0")

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. 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

v0.10.0

07 May 00:13
Compare
Choose a tag to compare

Using Bzlmod with Bazel 7

  1. Add to your MODULE.bazel file:
bazel_dep(name = "rules_ruby", version = "0.10.0")

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "rules_ruby", version = "0.10.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 = "eebc51710d0c3557abfe4cced98f5b5b234620525bd5c3911f52230d0ee5db7f",
    strip_prefix = "rules_ruby-0.10.0",
    url = "https://github.com/bazel-contrib/rules_ruby/releases/download/v0.10.0/rules_ruby-v0.10.0.tar.gz",
)

What's Changed

  • chore(deps): update dependency aspect_bazel_lib to v2.6.0 by @renovate in #104
  • chore(deps): update dependency aspect_bazel_lib to v2.7.0 by @renovate in #105
  • chore(deps): update dependency bazel_gazelle to v0.36.0 by @renovate in #106
  • chore(deps): update bazel-contrib/setup-bazel action to v0.8.2 by @renovate in #107
  • chore(deps): update dependency aspect_bazel_lib to v2.7.1 by @renovate in #109
  • chore(deps): update dependency io_bazel_rules_go to v0.47.0 by @renovate in #110
  • chore(deps): update dependency bazel_skylib_gazelle_plugin to v1.6.0 by @renovate in #112
  • chore(deps): update dependency aspect_bazel_lib to v2.7.2 by @renovate in #114
  • chore(deps): update dependency bazel_skylib_gazelle_plugin to v1.6.1 by @renovate in #113
  • feat: 0.10.0 release by @p0deje in #111
  • ci: fix jekyll example not starting by @p0deje in #116

Full Changelog: v0.9.1...v0.10.0

v0.9.1

22 Mar 02:04
Compare
Choose a tag to compare

Using Bzlmod with Bazel 7

  1. Add to your MODULE.bazel file:
bazel_dep(name = "rules_ruby", version = "0.9.1")

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "rules_ruby", version = "0.9.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 = "5f3aa93655f4e2ff0f0dfa14339c658fa9ab8dd85fea406126d589e6a0837575",
    strip_prefix = "rules_ruby-0.9.1",
    url = "https://github.com/bazel-contrib/rules_ruby/releases/download/v0.9.1/rules_ruby-v0.9.1.tar.gz",
)

What's Changed

  • revert: default toolchain is jruby by @p0deje in #103

Full Changelog: v0.9.0...v0.9.1

v0.9.0

21 Mar 21:43
Compare
Choose a tag to compare

Using Bzlmod with Bazel 7

  1. Add to your MODULE.bazel file:
bazel_dep(name = "rules_ruby", version = "0.9.0")

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "rules_ruby", version = "0.9.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 = "498eb7b09cb91428e4d229796a9ae842990bbc3463e8bf1705126329e802008d",
    strip_prefix = "rules_ruby-0.9.0",
    url = "https://github.com/bazel-contrib/rules_ruby/releases/download/v0.9.0/rules_ruby-v0.9.0.tar.gz",
)

What's Changed

  • chore(deps): update dependency aspect_bazel_lib to v2.5.2 by @renovate in #97
  • chore(deps): update dependency aspect_bazel_lib to v2.5.3 by @renovate in #98
  • chore(deps): update p0deje/setup-bazel action to v0.8.1 by @renovate in #100
  • chore(deps): update dependency bazel to v7.1.0 by @renovate in #99
  • chore: update Ruby versions by @p0deje in #102

Full Changelog: v0.8.1...v0.9.0

v0.8.1

06 Mar 17:28
2e828a4
Compare
Choose a tag to compare

Using Bzlmod with Bazel 7

  1. Add to your MODULE.bazel file:
bazel_dep(name = "rules_ruby", version = "0.8.1")

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "rules_ruby", version = "0.8.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 = "9ff781fd8180c2be8b3ab0f16d1d88d618c3b1bc4d502dcb914591886da40014",
    strip_prefix = "rules_ruby-0.8.1",
    url = "https://github.com/bazel-contrib/rules_ruby/releases/download/v0.8.1/rules_ruby-v0.8.1.tar.gz",
)

What's Changed

  • fix: presubmit missing bazel propery by @p0deje in #95
  • ci: separate repository caches in examples by @p0deje in #96
  • fix: propagate Ruby toolchain files as inputs to rb_gem_build by @p0deje in #94

Full Changelog: v0.8.0...v0.8.1