diff --git a/MODULE.bazel b/MODULE.bazel index 15ae97b3a..44dce2ff2 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -41,11 +41,11 @@ module( bazel_dep( name = "abseil-cpp", - version = "20250127.0", + version = "20250127.1", ) bazel_dep( name = "platforms", - version = "0.0.10", + version = "0.0.11", ) bazel_dep( name = "re2", @@ -54,7 +54,7 @@ bazel_dep( bazel_dep( name = "rules_python", - version = "1.1.0", + version = "1.3.0", dev_dependency = True, ) diff --git a/WORKSPACE b/WORKSPACE index 4c7610284..0ae5dee92 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -37,9 +37,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_python", - sha256 = "9c6e26911a79fbf510a8f06d8eedb40f412023cf7fa6d1461def27116bff022c", - strip_prefix = "rules_python-1.1.0", - url = "https://github.com/bazelbuild/rules_python/releases/download/1.1.0/rules_python-1.1.0.tar.gz", + sha256 = "2cc26bbd53854ceb76dd42a834b1002cd4ba7f8df35440cf03482e045affc244", + strip_prefix = "rules_python-1.3.0", + url = "https://github.com/bazelbuild/rules_python/releases/download/1.3.0/rules_python-1.3.0.tar.gz", ) # https://github.com/bazelbuild/rules_python/releases/tag/1.1.0 load("@rules_python//python:repositories.bzl", "py_repositories") @@ -54,8 +54,8 @@ http_archive( http_archive( name = "platforms", urls = [ - "https://mirror.bazel.build/github.com/bazelbuild/platforms/releases/download/0.0.10/platforms-0.0.10.tar.gz", - "https://github.com/bazelbuild/platforms/releases/download/0.0.10/platforms-0.0.10.tar.gz", + "https://mirror.bazel.build/github.com/bazelbuild/platforms/releases/download/0.0.11/platforms-0.0.11.tar.gz", + "https://github.com/bazelbuild/platforms/releases/download/0.0.11/platforms-0.0.11.tar.gz", ], - sha256 = "218efe8ee736d26a3572663b374a253c012b716d8af0c07e842e82f238a0a7ee", + sha256 = "29742e87275809b5e598dc2f04d86960cc7a55b3067d97221c9abbc9926bff0f", ) diff --git a/googletest_deps.bzl b/googletest_deps.bzl index d3dd03e85..cadc244e8 100644 --- a/googletest_deps.bzl +++ b/googletest_deps.bzl @@ -17,9 +17,9 @@ def googletest_deps(): if not native.existing_rule("abseil-cpp"): http_archive( name = "abseil-cpp", - sha256 = "16242f394245627e508ec6bb296b433c90f8d914f73b9c026fddb905e27276e8", - strip_prefix = "abseil-cpp-20250127.0", - urls = ["https://github.com/abseil/abseil-cpp/releases/download/20250127.0/abseil-cpp-20250127.0.tar.gz"], + sha256 = "b396401fd29e2e679cace77867481d388c807671dc2acc602a0259eeb79b7811", + strip_prefix = "abseil-cpp-20250127.1", + urls = ["https://github.com/abseil/abseil-cpp/releases/download/20250127.1/abseil-cpp-20250127.1.tar.gz"], ) if not native.existing_rule("fuchsia_sdk"):