Skip to content

Commit 088f0d0

Browse files
committed
fix: add missing fallback checksums for tools 1.243.0 upgrades
- Add wasm-tools 1.243.0 checksums for all platforms - Add wasi-sdk 29 checksums for all platforms (darwin_arm64, darwin_amd64, linux_amd64, linux_arm64) - Add wkg 0.13.0 checksums for all platforms - Update wkg and wizer latest_version in fallback data - Add wizer 10.0.0 checksums for all platforms These fallback checksums in registry.bzl must be synchronized with the JSON files in checksums/tools/ to enable documentation builds and other operations that use get_tool_info without repository context.
1 parent 654be8e commit 088f0d0

File tree

1 file changed

+104
-3
lines changed

1 file changed

+104
-3
lines changed

checksums/registry.bzl

Lines changed: 104 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,31 @@ def _get_fallback_checksums(tool_name):
171171
},
172172
},
173173
},
174+
"1.243.0": {
175+
"release_date": "2025-12-03",
176+
"platforms": {
177+
"darwin_amd64": {
178+
"sha256": "3d03bc02fed63998e0ee8d88eb86d90bdb8e32e7cadc77d2f9e792b9dff8433a",
179+
"url_suffix": "x86_64-macos.tar.gz",
180+
},
181+
"darwin_arm64": {
182+
"sha256": "6690a33a06ef705a63dbc066210bc0f09b1c08a82952d3cde9fbebd0d484b46f",
183+
"url_suffix": "aarch64-macos.tar.gz",
184+
},
185+
"linux_amd64": {
186+
"sha256": "f261622f8015d38ebe9c3345cc2f7bb5de055d3a66ab44efdf78f11068ed9d9f",
187+
"url_suffix": "x86_64-linux.tar.gz",
188+
},
189+
"linux_arm64": {
190+
"sha256": "ad06ba3c527992a1e6e9a7e807cc2bb914072f0a0ae6ce71680de91b1054d2e9",
191+
"url_suffix": "aarch64-linux.tar.gz",
192+
},
193+
"windows_amd64": {
194+
"sha256": "bb04533ff517f6c90df129f2a358b18ca45b7400a3676ba935bbd787908ff6b8",
195+
"url_suffix": "x86_64-windows.zip",
196+
},
197+
},
198+
},
174199
},
175200
},
176201
"wit-bindgen": {
@@ -340,8 +365,33 @@ def _get_fallback_checksums(tool_name):
340365
"wkg": {
341366
"tool_name": "wkg",
342367
"github_repo": "bytecodealliance/wasm-pkg-tools",
343-
"latest_version": "0.12.0",
368+
"latest_version": "0.13.0",
344369
"versions": {
370+
"0.13.0": {
371+
"release_date": "2025-11-10",
372+
"platforms": {
373+
"darwin_amd64": {
374+
"sha256": "6e9e260d45c8873d942ea5a1640692fdf01268c4b7906b48705dadaf1726a458",
375+
"binary_name": "wkg-x86_64-apple-darwin",
376+
},
377+
"darwin_arm64": {
378+
"sha256": "e8abc8195201fab2769a79ca3f831c3a7830714cd9508c3d1defff348942cbc6",
379+
"binary_name": "wkg-aarch64-apple-darwin",
380+
},
381+
"linux_amd64": {
382+
"sha256": "59bb3bce8a0f7d150ab57cef7743fddd7932772c4df71d09072ed83acb609323",
383+
"binary_name": "wkg-x86_64-unknown-linux-gnu",
384+
},
385+
"linux_arm64": {
386+
"sha256": "522d400dc919f026137c97a35bccc8a7b583aa29722a8cb4f470ff39de8161a0",
387+
"binary_name": "wkg-aarch64-unknown-linux-gnu",
388+
},
389+
"windows_amd64": {
390+
"sha256": "fdb964cc986578778543890b19c9e96d6b8f1cbb2c1c45a6dafcf542141a59a4",
391+
"binary_name": "wkg-x86_64-pc-windows-gnu",
392+
},
393+
},
394+
},
345395
"0.11.0": {
346396
"release_date": "2025-06-19",
347397
"platforms": {
@@ -454,8 +504,29 @@ def _get_fallback_checksums(tool_name):
454504
"wasi-sdk": {
455505
"tool_name": "wasi-sdk",
456506
"github_repo": "WebAssembly/wasi-sdk",
457-
"latest_version": "27",
507+
"latest_version": "29",
458508
"versions": {
509+
"29": {
510+
"release_date": "2025-11-08",
511+
"platforms": {
512+
"darwin_amd64": {
513+
"sha256": "d0de2fd3ea5c57060efa87e4356c164bec3689972f2386f0c9a89c58e10cec8d",
514+
"url_suffix": "macos.tar.gz",
515+
},
516+
"darwin_arm64": {
517+
"sha256": "e11552913e3f99e834d7fe7da1bd081abaf764759ed76b6097a34c63fc83665e",
518+
"url_suffix": "macos.tar.gz",
519+
},
520+
"linux_amd64": {
521+
"sha256": "87d1d1a2879d139cdc624b968efad3d4a97b8078cdff95e63ac88ecafd1a0171",
522+
"url_suffix": "linux.tar.gz",
523+
},
524+
"linux_arm64": {
525+
"sha256": "052ad773397dc9e5aa99fb4cfef694175e6b1e81bb2ad1d3c8e7b3fc81441b7c",
526+
"url_suffix": "linux.tar.gz",
527+
},
528+
},
529+
},
459530
"27": {
460531
"release_date": "2025-07-28",
461532
"platforms": {
@@ -680,8 +751,38 @@ def _get_fallback_checksums(tool_name):
680751
"wizer": {
681752
"tool_name": "wizer",
682753
"github_repo": "bytecodealliance/wizer",
683-
"latest_version": "9.0.0",
754+
"latest_version": "10.0.0",
684755
"versions": {
756+
"10.0.0": {
757+
"release_date": "2025-08-27",
758+
"platforms": {
759+
"darwin_amd64": {
760+
"sha256": "d6b2073efb38624399c1c6fc0d8c1e19ba24d7ab934f51c346b7d97d4bd8115c",
761+
"url_suffix": "x86_64-macos.tar.xz",
762+
"strip_prefix": "wizer-v10.0.0-x86_64-macos",
763+
},
764+
"darwin_arm64": {
765+
"sha256": "5e3977e25defc869141dd8df3d25dde1dabe37ea377b7c01fa24693fe5bc7b3f",
766+
"url_suffix": "aarch64-macos.tar.xz",
767+
"strip_prefix": "wizer-v10.0.0-aarch64-macos",
768+
},
769+
"linux_amd64": {
770+
"sha256": "1e9dfaa2f6c436ca7acfdbb82c166f5b8a0062068f12916a554e82c97ca8d371",
771+
"url_suffix": "x86_64-linux.tar.xz",
772+
"strip_prefix": "wizer-v10.0.0-x86_64-linux",
773+
},
774+
"linux_arm64": {
775+
"sha256": "8ec7e50622aa7af37b5152f19d7a371f185c7af138033759caa3fdd3e17e2830",
776+
"url_suffix": "aarch64-linux.tar.xz",
777+
"strip_prefix": "wizer-v10.0.0-aarch64-linux",
778+
},
779+
"windows_amd64": {
780+
"sha256": "29a3aebb70927e9af7c505d3f3d14c5f8577eb307e8bd45151c184885a580d2f",
781+
"url_suffix": "x86_64-windows.zip",
782+
"strip_prefix": "wizer-v10.0.0-x86_64-windows",
783+
},
784+
},
785+
},
685786
"9.0.0": {
686787
"release_date": "2024-06-03",
687788
"platforms": {

0 commit comments

Comments
 (0)