Skip to content

Commit c3a5721

Browse files
committed
fix: Synchronize MODULE.bazel tool versions with tool_versions.bzl
Critical fix aligning MODULE.bazel extension.register() calls with the canonical versions in toolchains/tool_versions.bzl: - wasm_tools: 1.241.2 → 1.243.0 - wkg: 0.12.0 → 0.13.0 - wasi_sdk: 27 → 29 - wizer: 9.0.0 → 10.0.0 - wasmtime: 37.0.2 → 39.0.1 This mismatch was causing: - Weekly checksum update failures (Issues #229, #213) - Build pipeline failures - Version validation errors in tests All extension registrations now match the upgraded toolchain from PR #240.
1 parent 609e9af commit c3a5721

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

MODULE.bazel

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ wasm_toolchain = use_extension("//wasm:extensions.bzl", "wasm_toolchain")
126126
wasm_toolchain.register(
127127
name = "wasm_tools",
128128
strategy = "download", # Download prebuilt binaries from GitHub releases
129-
version = "1.241.2",
129+
version = "1.243.0",
130130
)
131131
use_repo(wasm_toolchain, "wasm_tools_toolchains")
132132

@@ -137,7 +137,7 @@ wkg = use_extension("//wasm:extensions.bzl", "wkg")
137137
wkg.register(
138138
name = "wkg",
139139
strategy = "download",
140-
version = "0.12.0",
140+
version = "0.13.0",
141141
)
142142
use_repo(wkg, "wkg_toolchain")
143143

@@ -148,7 +148,7 @@ wasi_sdk = use_extension("//wasm:extensions.bzl", "wasi_sdk")
148148
wasi_sdk.register(
149149
name = "wasi",
150150
strategy = "download",
151-
version = "27",
151+
version = "29",
152152
)
153153
use_repo(wasi_sdk, "wasi_sdk")
154154

@@ -176,7 +176,7 @@ wizer = use_extension("//wasm:extensions.bzl", "wizer")
176176
wizer.register(
177177
name = "wizer",
178178
strategy = "download",
179-
version = "9.0.0",
179+
version = "10.0.0",
180180
)
181181
use_repo(wizer, "wizer_toolchain")
182182

@@ -187,7 +187,7 @@ wasmtime = use_extension("//wasm:extensions.bzl", "wasmtime")
187187
wasmtime.register(
188188
name = "wasmtime",
189189
strategy = "download",
190-
version = "37.0.2",
190+
version = "39.0.1",
191191
)
192192
use_repo(wasmtime, "wasmtime_toolchain")
193193

0 commit comments

Comments
 (0)