summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDerek Mauro <dmauro@google.com>2025-02-07 01:39:47 (GMT)
committerCopybara-Service <copybara-worker@google.com>2025-02-07 01:40:25 (GMT)
commit445e9bd8d00180d7574069a7ab19abfae18bc9a2 (patch)
treef278e6a10cf5389b45f4eab9bd12ca37e139a44d
parente5443e5c65f23bfd2a9d56a30bb5b1de91a48ff9 (diff)
downloadgoogletest-445e9bd8d00180d7574069a7ab19abfae18bc9a2.zip
googletest-445e9bd8d00180d7574069a7ab19abfae18bc9a2.tar.gz
googletest-445e9bd8d00180d7574069a7ab19abfae18bc9a2.tar.bz2
Update GoogleTest deps in preparation for release
PiperOrigin-RevId: 724135630 Change-Id: I24622387e508d27337769e83f7de8fecae9ad425
-rw-r--r--MODULE.bazel4
-rw-r--r--WORKSPACE11
-rw-r--r--ci/linux-presubmit.sh4
-rw-r--r--googletest_deps.bzl6
4 files changed, 12 insertions, 13 deletions
diff --git a/MODULE.bazel b/MODULE.bazel
index e213d43..66eee54 100644
--- a/MODULE.bazel
+++ b/MODULE.bazel
@@ -41,7 +41,7 @@ module(
bazel_dep(
name = "abseil-cpp",
- version = "20240116.2",
+ version = "20250127.0",
)
bazel_dep(
name = "platforms",
@@ -54,7 +54,7 @@ bazel_dep(
bazel_dep(
name = "rules_python",
- version = "0.34.0",
+ version = "1.1.0",
dev_dependency = True,
)
diff --git a/WORKSPACE b/WORKSPACE
index 63f7681..4c76102 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -36,13 +36,12 @@ googletest_deps()
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
- name = "rules_python",
- sha256 = "d71d2c67e0bce986e1c5a7731b4693226867c45bfe0b7c5e0067228a536fc580",
- strip_prefix = "rules_python-0.29.0",
- urls = ["https://github.com/bazelbuild/rules_python/releases/download/0.29.0/rules_python-0.29.0.tar.gz"],
+ 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",
)
-
-# https://github.com/bazelbuild/rules_python/releases/tag/0.29.0
+# https://github.com/bazelbuild/rules_python/releases/tag/1.1.0
load("@rules_python//python:repositories.bzl", "py_repositories")
py_repositories()
diff --git a/ci/linux-presubmit.sh b/ci/linux-presubmit.sh
index 6d2b3fb..6c5ffe5 100644
--- a/ci/linux-presubmit.sh
+++ b/ci/linux-presubmit.sh
@@ -31,8 +31,8 @@
set -euox pipefail
-readonly LINUX_LATEST_CONTAINER="gcr.io/google.com/absl-177019/linux_hybrid-latest:20240523"
-readonly LINUX_GCC_FLOOR_CONTAINER="gcr.io/google.com/absl-177019/linux_gcc-floor:20230120"
+readonly LINUX_LATEST_CONTAINER="gcr.io/google.com/absl-177019/linux_hybrid-latest:20241218"
+readonly LINUX_GCC_FLOOR_CONTAINER="gcr.io/google.com/absl-177019/linux_gcc-floor:20250205"
if [[ -z ${GTEST_ROOT:-} ]]; then
GTEST_ROOT="$(realpath $(dirname ${0})/..)"
diff --git a/googletest_deps.bzl b/googletest_deps.bzl
index 281af5c..d3dd03e 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 = "733726b8c3a6d39a4120d7e45ea8b41a434cdacde401cba500f14236c49b39dc",
- strip_prefix = "abseil-cpp-20240116.2",
- urls = ["https://github.com/abseil/abseil-cpp/releases/download/20240116.2/abseil-cpp-20240116.2.tar.gz"],
+ 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"],
)
if not native.existing_rule("fuchsia_sdk"):