Skip to content

Commit b6cf76d

Browse files
committed
Update dependencies
Signed-off-by: Oliver Eikemeier <[email protected]>
1 parent 8d9836b commit b6cf76d

File tree

5 files changed

+575
-331
lines changed

5 files changed

+575
-331
lines changed

.bazelversion

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.2.1
1+
6.5.0

WORKSPACE

Lines changed: 12 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
88

99
http_archive(
1010
name = "bazel_skylib",
11-
sha256 = "d00f1389ee20b60018e92644e0948e16e350a7707219e7a390fb0a99b6ec9262",
11+
sha256 = "bc283cdfcd526a52c3201279cda4bc298652efa898b10b4db0837dc51652756f",
1212
urls = [
13-
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.7.0/bazel-skylib-1.7.0.tar.gz",
14-
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.7.0/bazel-skylib-1.7.0.tar.gz",
13+
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.7.1/bazel-skylib-1.7.1.tar.gz",
14+
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.7.1/bazel-skylib-1.7.1.tar.gz",
1515
],
1616
)
1717

1818
http_archive(
1919
name = "io_bazel_rules_go",
20-
sha256 = "33acc4ae0f70502db4b893c9fc1dd7a9bf998c23e7ff2c4517741d4049a976f8",
20+
sha256 = "d93ef02f1e72c82d8bb3d5169519b36167b33cf68c252525e3b9d3d5dd143de7",
2121
urls = [
22-
"https://github.com/bazelbuild/rules_go/releases/download/v0.48.0/rules_go-v0.48.0.zip",
23-
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.48.0/rules_go-v0.48.0.zip",
22+
"https://github.com/bazelbuild/rules_go/releases/download/v0.49.0/rules_go-v0.49.0.zip",
23+
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.49.0/rules_go-v0.49.0.zip",
2424
],
2525
)
2626

@@ -33,18 +33,11 @@ http_archive(
3333
],
3434
)
3535

36-
http_archive(
37-
name = "rules_proto",
38-
sha256 = "dc3fb206a2cb3441b485eb1e423165b231235a1ea9b031b4433cf7bc1fa460dd",
39-
strip_prefix = "rules_proto-5.3.0-21.7",
40-
url = "https://github.com/bazelbuild/rules_proto/archive/refs/tags/5.3.0-21.7.tar.gz",
41-
)
42-
4336
http_archive(
4437
name = "com_google_protobuf",
45-
sha256 = "da288bf1daa6c04d03a9051781caa52aceb9163586bff9aa6cfb12f69b9395aa",
46-
strip_prefix = "protobuf-27.0",
47-
url = "https://github.com/protocolbuffers/protobuf/archive/refs/tags/v27.0.tar.gz",
38+
sha256 = "e4ff2aeb767da6f4f52485c2e72468960ddfe5262483879ef6ad552e52757a77",
39+
strip_prefix = "protobuf-27.2",
40+
url = "https://github.com/protocolbuffers/protobuf/archive/refs/tags/v27.2.tar.gz",
4841
)
4942

5043
http_archive(
@@ -86,7 +79,7 @@ bazel_skylib_workspace()
8679

8780
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
8881

89-
go_register_toolchains(go_version = "1.20.3")
82+
go_register_toolchains(go_version = "1.22.5")
9083

9184
go_rules_dependencies()
9285

@@ -139,14 +132,6 @@ bind(
139132

140133
# ---
141134

142-
load("@rules_proto//proto:repositories.bzl", "rules_proto_dependencies", "rules_proto_toolchains")
143-
144-
rules_proto_dependencies()
145-
146-
rules_proto_toolchains()
147-
148-
# ---
149-
150135
bind(
151136
name = "io_bazel_rules_scala/dependency/scala/guava",
152137
actual = "@maven//:com_google_guava_guava",
@@ -219,7 +204,7 @@ maven_install(
219204
artifacts = [
220205
"com.google.code.findbugs:jsr305:3.0.2",
221206
"com.google.code.gson:gson:2.11.0",
222-
"com.google.errorprone:error_prone_annotations:2.28.0",
207+
"com.google.errorprone:error_prone_annotations:2.29.2",
223208
"com.google.flogger:flogger-system-backend:0.8",
224209
"com.google.flogger:flogger:0.8",
225210
"com.google.guava:guava:33.2.1-jre",
@@ -229,7 +214,7 @@ maven_install(
229214
"jakarta.annotation:jakarta.annotation-api:3.0.0",
230215
"org.apache.avro:avro-compiler:1.11.3",
231216
"org.apache.avro:avro:1.11.3",
232-
"org.checkerframework:checker-qual:3.43.0",
217+
"org.checkerframework:checker-qual:3.45.0",
233218
"org.slf4j:slf4j-api:2.0.13",
234219
"org.slf4j:slf4j-jdk14:2.0.13",
235220
maven.artifact(

0 commit comments

Comments
 (0)