Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
 - tink-java => 1.13; This required adding a bazelrc file to force using C++17
 - Bazel => 7.1.1

PiperOrigin-RevId: 621452280
Change-Id: I9de3845611d6f17d0f2da9fc82ec273e028cb3be
  • Loading branch information
morambro authored and copybara-github committed Apr 3, 2024
1 parent de464b6 commit 59ba3de
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions .bazelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# TODO: b/332650707 - Explicitly disable bzlmod until supported.
always --noenable_bzlmod
# Minumum C++ version. Override it building this project with
# `bazel build --cxxopt='-std=c++<XY>' --host_cxxopt='c++<XY>' ...`
# (Both -std and --host_cxxopt must be set to force the desired version.)
build --cxxopt='-std=c++17' --host_cxxopt='-std=c++17'
2 changes: 1 addition & 1 deletion .bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.0.0
7.1.1
8 changes: 4 additions & 4 deletions tink_java_awskms_deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ TINK_JAVA_AWSKMS_MAVEN_ARTIFACTS = [
def tink_java_awskms_deps():
"""Bazel dependencies for tink-java-awskms."""
if not native.existing_rule("tink_java"):
# Sep 22nd, 2023.
# Apr 2nd, 2024.
http_archive(
name = "tink_java",
urls = ["https://github.com/tink-crypto/tink-java/releases/download/v1.11.0/tink-java-1.11.0.zip"],
strip_prefix = "tink-java-1.11.0",
sha256 = "2bd264c2f0c474c77e2d1e04c627398e963b7a6d0164cfb743ab60a59ab998bd",
urls = ["https://github.com/tink-crypto/tink-java/releases/download/v1.13.0/tink-java-1.13.0.zip"],
strip_prefix = "tink-java-1.13.0",
sha256 = "d795e05bd264d78f438670f7d56dbe38eeb14b16e5f73adaaf20b6bb2bd11683",
)

0 comments on commit 59ba3de

Please sign in to comment.