From 32ff93a4ec072794ee3fbe8a5a255c926f6ac754 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 1 May 2026 07:23:42 +0000 Subject: [PATCH 1/2] Bump wasm-tools 1.246.1 -> 1.248.0 --- .github/versions.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/versions.lock b/.github/versions.lock index f3f4e0378..ce6379650 100644 --- a/.github/versions.lock +++ b/.github/versions.lock @@ -27,7 +27,7 @@ # Mirrors flake.nix zigArchInfo. ZIG_VERSION=0.16.0 # cargo install in ci.yml. -WASM_TOOLS_VERSION=1.246.1 +WASM_TOOLS_VERSION=1.248.0 # Release zip download in ci.yml; install-tools.ps1 release zip on Windows. WASMTIME_VERSION=42.0.1 # Mirrors flake.nix wasiSdkArchInfo (Linux/macOS/Windows tarballs). From d87e351d56ce37705485743c73e1235342f5ddb7 Mon Sep 17 00:00:00 2001 From: "Shota Kudo (chaploud)" Date: Tue, 5 May 2026 09:53:31 +0900 Subject: [PATCH 2/2] Sync flake.nix with versions.lock for wasm-tools 1.248.0 Auto-bump PR only updated .github/versions.lock; flake.nix needs the matching URL/sha256 set so `scripts/sync-versions.sh` passes the merge gate. Hashes from `nix-prefetch-url --unpack` against the v1.248.0 release tarballs. --- flake.nix | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/flake.nix b/flake.nix index 39ede2360..0605f9756 100644 --- a/flake.nix +++ b/flake.nix @@ -80,23 +80,23 @@ '' else null; - # wasm-tools 1.246.1 (per-architecture URLs and hashes; mirrors versions.lock). + # wasm-tools 1.248.0 (per-architecture URLs and hashes; mirrors versions.lock). wasmToolsArchInfo = { "aarch64-darwin" = { - url = "https://github.com/bytecodealliance/wasm-tools/releases/download/v1.246.1/wasm-tools-1.246.1-aarch64-macos.tar.gz"; - sha256 = "1i4vs5kmas0vahgd48yjjcg5h7qppq74jbchnfd7d6qzzylff0g8"; + url = "https://github.com/bytecodealliance/wasm-tools/releases/download/v1.248.0/wasm-tools-1.248.0-aarch64-macos.tar.gz"; + sha256 = "1qca0yf2g6r7plkdhxl6k7wkv4dksy0wn73aq3w9icd0zqn8cq8i"; }; "x86_64-darwin" = { - url = "https://github.com/bytecodealliance/wasm-tools/releases/download/v1.246.1/wasm-tools-1.246.1-x86_64-macos.tar.gz"; - sha256 = "1nidj7vx4h7aw2a2x4p645kmilmhb2lry4pk7464z5n8hcqk1774"; + url = "https://github.com/bytecodealliance/wasm-tools/releases/download/v1.248.0/wasm-tools-1.248.0-x86_64-macos.tar.gz"; + sha256 = "175fwsg2zwn11zy9r5rjmkn10crwqz22iqdfn870agaj1hx3ifdh"; }; "x86_64-linux" = { - url = "https://github.com/bytecodealliance/wasm-tools/releases/download/v1.246.1/wasm-tools-1.246.1-x86_64-linux.tar.gz"; - sha256 = "1k20522vvvz704v3ndj9bdnh3p530g893df97yvq3ms4v1kdcq1x"; + url = "https://github.com/bytecodealliance/wasm-tools/releases/download/v1.248.0/wasm-tools-1.248.0-x86_64-linux.tar.gz"; + sha256 = "001ffxxl8nnhbp42ry5c9grb1f004qlxf700n3ibyp94wpbn25a3"; }; "aarch64-linux" = { - url = "https://github.com/bytecodealliance/wasm-tools/releases/download/v1.246.1/wasm-tools-1.246.1-aarch64-linux.tar.gz"; - sha256 = "1rqiy1kv81iskad1906488sq20fx16xjbbg6yhf3wb9jsc9hrlqv"; + url = "https://github.com/bytecodealliance/wasm-tools/releases/download/v1.248.0/wasm-tools-1.248.0-aarch64-linux.tar.gz"; + sha256 = "0l391n4qjnr8prrf1linl3ba1xsl4hj8paf2d4170sv0kg0nia92"; }; }.${system} or (throw "Unsupported system for wasm-tools: ${system}"); @@ -105,7 +105,7 @@ sha256 = wasmToolsArchInfo.sha256; }; - wasmToolsBin = pkgs.runCommand "wasm-tools-1.246.1-wrapper" {} '' + wasmToolsBin = pkgs.runCommand "wasm-tools-1.248.0-wrapper" {} '' mkdir -p $out/bin ln -s ${wasmToolsSrc}/wasm-tools $out/bin/wasm-tools '';