1.8.0
MODULE.bazel setup
bazel_dep(name = "bazel_skylib", version = "1.8.0")And for the Gazelle plugin:
bazel_dep(name = "bazel_skylib_gazelle_plugin", version = "1.8.0", dev_dependency = True)WORKSPACE setup
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "bazel_skylib",
sha256 = "fa01292859726603e3cd3a0f3f29625e68f4d2b165647c72908045027473e933",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.8.0/bazel-skylib-1.8.0.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.8.0/bazel-skylib-1.8.0.tar.gz",
],
)
load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
bazel_skylib_workspace()Additional WORKSPACE setup for the Gazelle plugin
http_archive(
name = "bazel_skylib_gazelle_plugin",
sha256 = "8498dfd41494883427441b1fd8a0f149be5a3741ac1a2bb05ff2cb7ac79c19f3",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.8.0/bazel-skylib-gazelle-plugin-1.8.0.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.8.0/bazel-skylib-gazelle-plugin-1.8.0.tar.gz",
],
)
load("@bazel_skylib_gazelle_plugin//:workspace.bzl", "bazel_skylib_gazelle_plugin_workspace")
bazel_skylib_gazelle_plugin_workspace()
load("@bazel_skylib_gazelle_plugin//:setup.bzl", "bazel_skylib_gazelle_plugin_setup")
bazel_skylib_gazelle_plugin_setup()What's Changed
- fix: subpackages.all works for root packages by @kilian-funk in #531
- Strip compatible_with from bzl_library rules by @aiuto in #522
- Make only root test_deps externally visible by @tetromino in #508
- Update README.md by @BoleynSu in #380
- Add test_deps to rules/private by @aiuto in #534
- Fix bazel_skylib with Bazel@HEAD by @meteorcloudy in #538
- Explicitly enable workspace for some tasks by @meteorcloudy in #540
- README.md: fix broken directory rule links by @lukasoyen in #544
- Remove sh_binary usage for Bazel 8 friendliness by @tetromino in #550
- adding scope attributes for starlark flags by @aranguyen in #546
- Update common_settings.bzl by @aranguyen in #552
- Simplify CI steup and make presubmit green again by @meteorcloudy in #557
- fix(gazelle): remove deprecated function call by @tyler-french in #556
- Remove obsolete bazel 4.x compat code by @lukasoyen in #560
- Add new "env" variable to native_* rules by @gioachin in #561
- Replace outdated
select() on --cpuwith another flag ref by @gregestren in #570 - Migrate away from
@bazel_tools//src/conditions:host_windowsby @fmeum in #574 - Use DefaultInfo directly by @keith in #577
- Use
native.package_relative_labelinselects.bzlby @fmeum in #576 - Add BCR publishing workflow by @fmeum in #581
- Prepare for 1.8.0 release by @meteorcloudy in #582
- Move built archives for upload by @meteorcloudy in #583
New Contributors
- @kilian-funk made their first contribution in #531
- @BoleynSu made their first contribution in #380
- @lukasoyen made their first contribution in #544
- @aranguyen made their first contribution in #546
- @tyler-french made their first contribution in #556
- @gioachin made their first contribution in #561
Full Changelog: 1.7.1...1.8.0