Skip to content

Commit ae3058f

Browse files
authored
chore(deps): update go to 1.24.11 and also update bazel deps (#364)
CHANGELOG: - [ ] Fix biome.json schema reference. - [ ] Update bazel modules to latest versions. - [ ] Update bazel version to 8.5.0 - [ ] Fix formatting scripts to use correct go version. - [ ] Update go to 1.24.11
1 parent db5416a commit ae3058f

16 files changed

+2407
-2813
lines changed

.bazelversion

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.4.2
1+
8.5.0

MODULE.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ module(
2121
version = "0.0.1",
2222
)
2323

24-
bazel_dep(name = "bazel_skylib", version = "1.7.1")
25-
bazel_dep(name = "gazelle", version = "0.42.0")
26-
bazel_dep(name = "platforms", version = "0.0.11")
24+
bazel_dep(name = "bazel_skylib", version = "1.8.2")
25+
bazel_dep(name = "gazelle", version = "0.47.0")
26+
bazel_dep(name = "platforms", version = "1.0.0")
2727

2828
include("//:go.MODULE.bazel")
2929
include("//:java.MODULE.bazel")

MODULE.bazel.lock

Lines changed: 620 additions & 130 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.2.6/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.3.8/schema.json",
33
"assist": { "actions": { "source": { "organizeImports": "on" } } },
44
"linter": {
55
"enabled": true,

go.MODULE.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616

1717
"""Configuration for Bazel with Go dependencies."""
1818

19-
GO_VERSION = "1.25.3"
19+
GO_VERSION = "1.24.11"
2020

21-
bazel_dep(name = "rules_go", version = "0.58.3", repo_name = "io_bazel_rules_go")
21+
bazel_dep(name = "rules_go", version = "0.59.0", repo_name = "io_bazel_rules_go")
2222

2323
go_sdk = use_extension("@io_bazel_rules_go//go:extensions.bzl", "go_sdk")
2424
go_sdk.download(

go/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
module github.com/google/dotprompt/go
22

3-
go 1.23.8
3+
go 1.24.11
44

55
require (
66
github.com/go-viper/mapstructure/v2 v2.4.0
7-
github.com/goccy/go-yaml v1.18.0
7+
github.com/goccy/go-yaml v1.19.0
88
github.com/invopop/jsonschema v0.13.0
99
github.com/stretchr/testify v1.10.0
1010
)

go/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c
66
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
77
github.com/go-viper/mapstructure/v2 v2.4.0 h1:EBsztssimR/CONLSZZ04E8qAkxNYq4Qp9LvH92wZUgs=
88
github.com/go-viper/mapstructure/v2 v2.4.0/go.mod h1:oJDH3BJKyqBA2TXFhDsKDGDTlndYOZ6rGS0BRZIxGhM=
9-
github.com/goccy/go-yaml v1.18.0 h1:8W7wMFS12Pcas7KU+VVkaiCng+kG8QiFeFwzFb+rwuw=
10-
github.com/goccy/go-yaml v1.18.0/go.mod h1:XBurs7gK8ATbW4ZPGKgcbrY1Br56PdM69F7LkFRi1kA=
9+
github.com/goccy/go-yaml v1.19.0 h1:EmkZ9RIsX+Uq4DYFowegAuJo8+xdX3T/2dwNPXbxEYE=
10+
github.com/goccy/go-yaml v1.19.0/go.mod h1:XBurs7gK8ATbW4ZPGKgcbrY1Br56PdM69F7LkFRi1kA=
1111
github.com/invopop/jsonschema v0.13.0 h1:KvpoAJWEjR3uD9Kbm2HWJmqsEaHt8lBUpd0qHcIi21E=
1212
github.com/invopop/jsonschema v0.13.0/go.mod h1:ffZ5Km5SWWRAIN6wbDXItl95euhFz2uON45H2qjYt+0=
1313
github.com/mailru/easyjson v0.9.1 h1:LbtsOm5WAswyWbvTEOqhypdPeZzHavpZx96/n553mR8=

java.MODULE.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
"""Configuration for Bazel with Java dependencies."""
1818

19-
bazel_dep(name = "rules_java", version = "8.11.0")
20-
bazel_dep(name = "rules_jvm_external", version = "6.7")
19+
bazel_dep(name = "rules_java", version = "9.3.0")
20+
bazel_dep(name = "rules_jvm_external", version = "6.9")
2121

2222
# Register the specific Java toolchain version.
2323
# See https://github.com/bazelbuild/rules_java/blob/master/toolchains.bzl

js/package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,20 @@
2727
"author": "",
2828
"license": "ISC",
2929
"devDependencies": {
30-
"@types/node": "22.15.20",
31-
"@typescript/native-preview": "7.0.0-dev.20250614.1",
32-
"@vitest/coverage-v8": "^3.1.4",
33-
"prettier": "^3.5.3",
34-
"tsup": "^8.5.0",
35-
"tsx": "^4.19.4",
36-
"typedoc": "^0.28.4",
37-
"typedoc-plugin-markdown": "^4.6.3",
38-
"typescript": "^5.8.3",
39-
"vitest": "^3.1.4"
30+
"@types/node": "25.0.0",
31+
"@typescript/native-preview": "7.0.0-dev.20251211.1",
32+
"@vitest/coverage-v8": "^4.0.15",
33+
"prettier": "^3.7.4",
34+
"tsup": "^8.5.1",
35+
"tsx": "^4.21.0",
36+
"typedoc": "^0.28.15",
37+
"typedoc-plugin-markdown": "^4.9.0",
38+
"typescript": "^5.9.3",
39+
"vitest": "^4.0.15"
4040
},
4141
"dependencies": {
4242
"handlebars": "^4.7.8",
43-
"yaml": "^2.8.0"
43+
"yaml": "^2.8.2"
4444
},
4545
"packageManager": "pnpm@10.2.0",
4646
"pnpm": {

0 commit comments

Comments
 (0)