Compare commits

..

14 Commits

Author SHA1 Message Date
Taiki Endo
2943ff619b wasm-bindgen 2026-04-27 16:13:06 +00:00
Taiki Endo
481c34c1cf Release 2.75.23 2026-04-27 16:13:05 +00:00
Taiki Endo
9109405c61 Update changelog 2026-04-28 01:10:47 +09:00
Taiki Endo
cfd6b0ff1e Update vacuum@latest to 0.26.2 2026-04-27 16:08:54 +00:00
Taiki Endo
b2ea47bca2 Update uv manifest 2026-04-27 16:08:54 +00:00
Taiki Endo
298078d060 Update tombi@latest to 0.9.24 2026-04-27 16:08:54 +00:00
Taiki Endo
4c81eb55c7 Update prek manifest 2026-04-27 16:08:54 +00:00
Taiki Endo
bb5f177651 Update mise@latest to 2026.4.22 2026-04-27 16:08:54 +00:00
Taiki Endo
c630b05e42 Update martin@latest to 1.7.0 2026-04-27 16:08:54 +00:00
Taiki Endo
b12e2ca231 Update git-cliff@latest to 2.13.1 2026-04-27 16:08:54 +00:00
Taiki Endo
3a693fd633 Update cargo-tarpaulin@latest to 0.35.4 2026-04-27 16:08:54 +00:00
Taiki Endo
9769ee2cf4 Update cargo-sort@latest to 2.1.4 2026-04-27 16:08:54 +00:00
Taiki Endo
135f92e251 codegen: tombi 0.9.23 changed asset names
4ffe79f6b7
2026-04-28 00:36:12 +09:00
Taiki Endo
f6da097330 Update mise manifest 2026-04-25 21:29:06 +00:00
13 changed files with 766 additions and 48 deletions

View File

@@ -39,7 +39,7 @@ jobs:
timeout-minutes: 60 timeout-minutes: 60
steps: steps:
- uses: taiki-e/checkout-action@7d1e50e93dc4fb3bba58f85018fadf77898aee8b # v1.4.2 - uses: taiki-e/checkout-action@7d1e50e93dc4fb3bba58f85018fadf77898aee8b # v1.4.2
- uses: taiki-e/install-action@0abfcd587b70a713fdaa7fb502c885e2112acb15 # v2.75.7 - uses: taiki-e/install-action@b8be7f5e140177087325943c4a8e169d01c59b3d # v2.75.3
with: with:
tool: parse-changelog tool: parse-changelog
fallback: none fallback: none
@@ -208,7 +208,7 @@ jobs:
contents: write # for taiki-e/create-gh-release-action contents: write # for taiki-e/create-gh-release-action
steps: steps:
- uses: taiki-e/checkout-action@7d1e50e93dc4fb3bba58f85018fadf77898aee8b # v1.4.2 - uses: taiki-e/checkout-action@7d1e50e93dc4fb3bba58f85018fadf77898aee8b # v1.4.2
- uses: taiki-e/install-action@0abfcd587b70a713fdaa7fb502c885e2112acb15 # v2.75.7 - uses: taiki-e/install-action@b8be7f5e140177087325943c4a8e169d01c59b3d # v2.75.3
with: with:
tool: parse-changelog tool: parse-changelog
fallback: none fallback: none

View File

@@ -10,7 +10,21 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
## [Unreleased] ## [Unreleased]
- Update `mise@latest` to 2026.4.20. ## [2.75.23] - 2026-04-27
- Update `vacuum@latest` to 0.26.2.
- Update `tombi@latest` to 0.9.24.
- Update `mise@latest` to 2026.4.22.
- Update `martin@latest` to 1.7.0.
- Update `git-cliff@latest` to 2.13.1.
- Update `cargo-tarpaulin@latest` to 0.35.4.
- Update `cargo-sort@latest` to 2.1.4.
## [2.75.22] - 2026-04-25 ## [2.75.22] - 2026-04-25
@@ -6341,7 +6355,8 @@ Note: This release is considered a breaking change because installing on version
Initial release Initial release
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.75.22...HEAD [Unreleased]: https://github.com/taiki-e/install-action/compare/v2.75.23...HEAD
[2.75.23]: https://github.com/taiki-e/install-action/compare/v2.75.22...v2.75.23
[2.75.22]: https://github.com/taiki-e/install-action/compare/v2.75.21...v2.75.22 [2.75.22]: https://github.com/taiki-e/install-action/compare/v2.75.21...v2.75.22
[2.75.21]: https://github.com/taiki-e/install-action/compare/v2.75.20...v2.75.21 [2.75.21]: https://github.com/taiki-e/install-action/compare/v2.75.20...v2.75.21
[2.75.20]: https://github.com/taiki-e/install-action/compare/v2.75.19...v2.75.20 [2.75.20]: https://github.com/taiki-e/install-action/compare/v2.75.19...v2.75.20

View File

@@ -4,8 +4,8 @@ description: GitHub Action for installing development tools
inputs: inputs:
tool: tool:
description: Tools to install (whitespace or comma separated list) description: Tools to install (whitespace or comma separated list)
required: true required: false
# default: #publish:tool default: wasm-bindgen
checksum: checksum:
description: Whether to enable checksums (strongly discouraged to disable) description: Whether to enable checksums (strongly discouraged to disable)
required: false required: false

View File

@@ -15,13 +15,13 @@
} }
}, },
"latest": { "latest": {
"version": "2.1.3" "version": "2.1.4"
}, },
"2": { "2": {
"version": "2.1.3" "version": "2.1.4"
}, },
"2.1": { "2.1": {
"version": "2.1.3" "version": "2.1.4"
}, },
"2.1.4": { "2.1.4": {
"x86_64_linux_gnu": { "x86_64_linux_gnu": {

View File

@@ -18,10 +18,10 @@
} }
}, },
"latest": { "latest": {
"version": "0.35.2" "version": "0.35.4"
}, },
"0.35": { "0.35": {
"version": "0.35.2" "version": "0.35.4"
}, },
"0.35.4": { "0.35.4": {
"x86_64_linux_musl": { "x86_64_linux_musl": {

View File

@@ -27,10 +27,65 @@
} }
}, },
"latest": { "latest": {
"version": "2.12.0" "version": "2.13.1"
}, },
"2": { "2": {
"version": "2.12.0" "version": "2.13.1"
},
"2.13": {
"version": "2.13.1"
},
"2.13.1": {
"x86_64_linux_musl": {
"etag": "0x8DEA37D7F9F3C29",
"hash": "200d2535da6d9703f3bcc8a4d159c3b55eacdb01cf2148c55b3eee9dd04d5249"
},
"x86_64_macos": {
"etag": "0x8DEA37D44E87B3A",
"hash": "6e60ae390d375cecb9d8008c49f0e724a8dfe40390b532ef5501e421d2cc8acb"
},
"x86_64_windows": {
"etag": "0x8DEA37E02E19030",
"hash": "3ae3a5549e85c7ad5b20192ebcfee4371269deca51255f6f2f2e051c6541f5ca"
},
"aarch64_linux_musl": {
"etag": "0x8DEA37D82440AED",
"hash": "4054c124b926c117f3fa048939bc8be0a954f29f3b6f367627e8cb22c1971882"
},
"aarch64_macos": {
"etag": "0x8DEA37D25D82E17",
"hash": "21547ae4a0421164070ab75c2522864ea5565858a011fabc5f583061b20f1226"
},
"aarch64_windows": {
"etag": "0x8DEA37E17A6094D",
"hash": "03a623191fe575bc0024e2ebc61cc861cebd3ba84b93ff13b002c42e8248cd3f"
}
},
"2.13.0": {
"x86_64_linux_musl": {
"etag": "0x8DEA3772B3C02DF",
"hash": "132539f836416563e86621ff0649f0c0c766cf32ea1be85f3ba0d34f043ce86a"
},
"x86_64_macos": {
"etag": "0x8DEA3771FC5A88A",
"hash": "ad980b6bd5c52deec7c24a55599f652607d40d221f0bfb75142017a9fc82f7c4"
},
"x86_64_windows": {
"etag": "0x8DEA377B78B9783",
"hash": "17f891a0ec38f8c9ef6440eed31be43117491b05afeba6093a15545633eae6ff"
},
"aarch64_linux_musl": {
"etag": "0x8DEA37725E52DB8",
"hash": "27b9216d92a254fb03d18008252a7c8c7bc803b4616bf69175ff448918a9606a"
},
"aarch64_macos": {
"etag": "0x8DEA376FF31CE86",
"hash": "72e8d1f4d1dca4312ccf979c72a094e5bab0a659ec6c8d4e1bbea19f9cc65b23"
},
"aarch64_windows": {
"etag": "0x8DEA377B597C5A5",
"hash": "ae2cdf8b70999c8dd52af50283b0c9a8d811055e1f8879ffd1a7d90c678e902b"
}
}, },
"2.12": { "2.12": {
"version": "2.12.0" "version": "2.12.0"

7
manifests/martin.json generated
View File

@@ -31,10 +31,13 @@
} }
}, },
"latest": { "latest": {
"version": "1.6.0" "version": "1.7.0"
}, },
"1": { "1": {
"version": "1.6.0" "version": "1.7.0"
},
"1.7": {
"version": "1.7.0"
}, },
"1.7.0": { "1.7.0": {
"x86_64_linux_musl": { "x86_64_linux_musl": {

84
manifests/mise.json generated
View File

@@ -27,13 +27,91 @@
} }
}, },
"latest": { "latest": {
"version": "2026.4.20" "version": "2026.4.22"
}, },
"2026": { "2026": {
"version": "2026.4.20" "version": "2026.4.22"
}, },
"2026.4": { "2026.4": {
"version": "2026.4.20" "version": "2026.4.22"
},
"2026.4.24": {
"x86_64_linux_musl": {
"etag": "0x8DEA45161A9D475",
"hash": "9307d627f50c0325c33ef964723a9845bf80bfd5fe3fa4564ccc78a5ffe47900"
},
"x86_64_macos": {
"etag": "0x8DEA45165319942",
"hash": "a00d7ab6e26ed778887b49c770f7893586ee4f86e46b80b7e869201a000550c6"
},
"x86_64_windows": {
"etag": "0x8DEA4516689D916",
"hash": "b8072dca6c8399dbda929db95ff2a1fa261833a2f1dea7e77bc026c8d825d28c"
},
"aarch64_linux_musl": {
"etag": "0x8DEA4515E1EB80D",
"hash": "b5be9ef118acf0935f654a9380d5a4a8be782830063fffc006511f1023acd599"
},
"aarch64_macos": {
"etag": "0x8DEA451643D76CB",
"hash": "305aa9fc58c374dcb81b370e3ac7ac96fd13d53532252cfaf384fbd7ab9ad2a8"
},
"aarch64_windows": {
"etag": "0x8DEA4516611AE03",
"hash": "4a6ee8e3eb11e3f34842166a4594e6a2cfab4a9df867493415c3d54d663d1782"
}
},
"2026.4.23": {
"x86_64_linux_musl": {
"etag": "0x8DEA3DBFFDA9F73",
"hash": "43c9496202b5c896c2454e5c62f73dc1850181cb0c5e13b6df5d72319c5434d8"
},
"x86_64_macos": {
"etag": "0x8DEA3DC01B20756",
"hash": "1e7a2b9bd836f59039d20fc82c780d7b8c78e5dd1dfc138c0020b1b180c3192c"
},
"x86_64_windows": {
"etag": "0x8DEA3DC02E55C98",
"hash": "fbfc8913b6e95cf24be6e2a6d83bd3059ec953e47570793916fc8afb3b1b66b1"
},
"aarch64_linux_musl": {
"etag": "0x8DEA3DBFCC3463D",
"hash": "3c61f6ad05e662feaece6feccdbb0c075e787efbba5a780272133b02282c95f6"
},
"aarch64_macos": {
"etag": "0x8DEA3DC010F04E9",
"hash": "c5ab822d0e3435ae4493e31a484cf86b2a819522eedad5555f5aed45bfac4545"
},
"aarch64_windows": {
"etag": "0x8DEA3DC02747C4D",
"hash": "766197d37306009734a3696def00448cddb8f0073d4439c75b7bcb37f1882191"
}
},
"2026.4.22": {
"x86_64_linux_musl": {
"etag": "0x8DEA2F9B9C7884A",
"hash": "a80e2e1d459f4dc9e66f2fd3dd038933ac112f8709e8e1116b22945548303c8b"
},
"x86_64_macos": {
"etag": "0x8DEA2F9BC7B8681",
"hash": "63887b6deabe69924e163659623fb09269372674bf2b76d98716c3754852dc6b"
},
"x86_64_windows": {
"etag": "0x8DEA2F9BD95A3CC",
"hash": "3e9b7cab35dfdf888bdc890e86fc72369aef026bebf867199b788e38a887ebea"
},
"aarch64_linux_musl": {
"etag": "0x8DEA2F9B5F5EE53",
"hash": "62362e63f73c92af02712fb62775af77264f9d16614ccbac5a470567b212f0f7"
},
"aarch64_macos": {
"etag": "0x8DEA2F9BB9AAF4E",
"hash": "f3c00057a7ac975be04df24f95e1c987bda52588af1abdce1271121256fc82c8"
},
"aarch64_windows": {
"etag": "0x8DEA2F9BD941EE5",
"hash": "0c6f2488396dc07c9ed834dbb7fc29ea59a738e10d72a590ae513105939958ac"
}
}, },
"2026.4.20": { "2026.4.20": {
"x86_64_linux_musl": { "x86_64_linux_musl": {

34
manifests/prek.json generated
View File

@@ -44,6 +44,40 @@
"0.3": { "0.3": {
"version": "0.3.10" "version": "0.3.10"
}, },
"0.3.11": {
"x86_64_linux_musl": {
"etag": "0x8DEA414EFB86FDD",
"hash": "7671b1b17dd5a3c01e1772323b2688ab2956d737f2b5fdd15f49a7eb14eff837"
},
"x86_64_macos": {
"etag": "0x8DEA414EF57351C",
"hash": "53cd52b8ed1192d6a183775027e9d68a39e8e2470932c4caf20ea548c0bd9633"
},
"x86_64_windows": {
"etag": "0x8DEA414EF76A7B5",
"hash": "a40604c7a10e6876423fb53ce3325615a2e90b5b3f09e15676b1d2fe74e56948"
},
"aarch64_linux_musl": {
"etag": "0x8DEA414EE21BE76",
"hash": "057484ce99ccbe8ecad17ca78748098cfa209d4018fa0182181d95b2e63057ff"
},
"aarch64_macos": {
"etag": "0x8DEA414EDF86BF6",
"hash": "a01aebbb7fcebeb1cb5c074e1a3d00cc51a283a5bd8990fce6765c5d350ac602"
},
"aarch64_windows": {
"etag": "0x8DEA414EDF51449",
"hash": "da0465bd86021265089387465c4d4d7a794966fa1cf86920c79cb0e9b98665ba"
},
"riscv64_linux_gnu": {
"etag": "0x8DEA414EF281CA3",
"hash": "db2871c97bfa39da80b145966c304f3e4051aa0e6f4f3c806312ac72aec0cf05"
},
"s390x_linux_gnu": {
"etag": "0x8DEA414EF4C44E4",
"hash": "98867bfaa25f8894124680b5dccf91fe5f7e06adaec8aa77f9287a5058498ae4"
}
},
"0.3.10": { "0.3.10": {
"x86_64_linux_musl": { "x86_64_linux_musl": {
"etag": "0x8DE9F997FFD1858", "etag": "0x8DE9F997FFD1858",

471
manifests/tombi.json generated

File diff suppressed because it is too large Load Diff

38
manifests/uv.json generated
View File

@@ -73,6 +73,44 @@
"0.11": { "0.11": {
"version": "0.11.7" "version": "0.11.7"
}, },
"0.11.8": {
"x86_64_linux_musl": {
"etag": "0x8DEA45F71233F4B",
"hash": "de82507d12e31cfc86c1c776238f7c248e48e40d996dedc812d64fdd31c6ed12"
},
"x86_64_macos": {
"etag": "0x8DEA45F7058E3D3",
"hash": "c59d73bf34b58bc8e33a11629f7a255c11789fd00f03cd3e68ab2d1603645de9"
},
"x86_64_windows": {
"etag": "0x8DEA45F70D722AA",
"hash": "c84629a56e0706b69a47ea35862208af827cb6fbfa1d0ca763c52c67594637e8"
},
"aarch64_linux_musl": {
"etag": "0x8DEA45F6D6039F9",
"hash": "29418befb64f926a2dba3473e8e69acd00b36fb845d85344ef11321a993ad8f5"
},
"aarch64_macos": {
"etag": "0x8DEA45F6CB04DA7",
"hash": "c729adb365114e844dd7f9316313a7ed6443b89bb5681d409eebac78b0bd06c8"
},
"aarch64_windows": {
"etag": "0x8DEA45F6CE7C10C",
"hash": "bb48716e74e4998993f15bc57a55e4d0d73ccbd27a66d7cbed37605f7c67d747"
},
"powerpc64le_linux_gnu": {
"etag": "0x8DEA45F6F2236AC",
"hash": "7b66bcc99237d19fb25d8b1bcbc1f973f735027d49e7cb9ffa22cd539fefccbc"
},
"riscv64_linux_gnu": {
"etag": "0x8DEA45F6FE484F0",
"hash": "dd43289c567fda3ca59ec714ffca09125f1149289448667f36a4bb7c29c859be"
},
"s390x_linux_gnu": {
"etag": "0x8DEA45F70134F83",
"hash": "068eb3f47d0760d50cd2e0fc59cc2c09eb12a4ec8bb12c269f3aef706bf4dc1a"
}
},
"0.11.7": { "0.11.7": {
"x86_64_linux_musl": { "x86_64_linux_musl": {
"etag": "0x8DE9B3889FAFD66", "etag": "0x8DE9B3889FAFD66",

56
manifests/vacuum.json generated
View File

@@ -21,10 +21,62 @@
} }
}, },
"latest": { "latest": {
"version": "0.26.1" "version": "0.26.2"
}, },
"0.26": { "0.26": {
"version": "0.26.1" "version": "0.26.2"
},
"0.26.3": {
"x86_64_linux_musl": {
"etag": "0x8DEA3AF51982B26",
"hash": "1dbbd82f5937dce17c31c3af1790eeed2c0bb78e9abb0b135da21e529f105ad5"
},
"x86_64_macos": {
"etag": "0x8DEA3AF50B33947",
"hash": "57b4981a0b3c5853c6e36bf2922f27d324634515a78dcf1cbf1e1d928de050e9"
},
"x86_64_windows": {
"etag": "0x8DEA3AF51A2F471",
"hash": "71c86bb00fcef322cd431971521c51386fc4d3e976edf10285121b43229193c0"
},
"aarch64_linux_musl": {
"etag": "0x8DEA3AF51A70E85",
"hash": "209163b44fa1fadd7306b3572616282f13b20f909ca73aaa36ad2298ff97c6fa"
},
"aarch64_macos": {
"etag": "0x8DEA3AF50A455E2",
"hash": "68f6ccc77ea162eaa834ad2012ec78223b0135f7b95acb65261fe505fd629006"
},
"aarch64_windows": {
"etag": "0x8DEA3AF50B0A429",
"hash": "b26834cb96e0a1ebf2c743d7616b056d2a4b03049e8a7a0d44070583d41cb08d"
}
},
"0.26.2": {
"x86_64_linux_musl": {
"etag": "0x8DEA3A1443507B5",
"hash": "2b52be503b88495d68a70455bf25f1d551a4bb35b55a075da7b32bf04d3c1407"
},
"x86_64_macos": {
"etag": "0x8DEA3A14412646D",
"hash": "56496d56ea38d92db00deb912df36ff3caa894658ec8587c6e41375ff357d3a1"
},
"x86_64_windows": {
"etag": "0x8DEA3A143AC4D58",
"hash": "35ff2ff0ffaeb88177233a1f5b3d1f832ae7e33e0a21883766e1661e1f427695"
},
"aarch64_linux_musl": {
"etag": "0x8DEA3A14382AD1F",
"hash": "b86764b4941a372fbf10f1af0a4c75ec6c3fa379ec3879b8c1cfca8a8b55165a"
},
"aarch64_macos": {
"etag": "0x8DEA3A144238F2E",
"hash": "42a2b0656a0d293513b093c73de94619fc82cfcfee449fbee50cb725e42850fb"
},
"aarch64_windows": {
"etag": "0x8DEA3A143FD944D",
"hash": "48c7a2540432299dbf1c09aebfcc89c11d34b317adc53b51924711e6644953ab"
}
}, },
"0.26.1": { "0.26.1": {
"x86_64_linux_musl": { "x86_64_linux_musl": {

View File

@@ -6,22 +6,38 @@
"version_range": ">= 0.7", "version_range": ">= 0.7",
"platform": { "platform": {
"x86_64_linux_musl": { "x86_64_linux_musl": {
"asset_name": "tombi-cli-${version}-x86_64-unknown-linux-musl.gz" "asset_name": [
"${package}-cli-${version}-x86_64-unknown-linux-musl.tar.gz",
"${package}-cli-${version}-x86_64-unknown-linux-musl.gz"
],
"bin": "${package}-cli-${version}-x86_64-unknown-linux-musl/${package}"
}, },
"x86_64_macos": { "x86_64_macos": {
"asset_name": "tombi-cli-${version}-x86_64-apple-darwin.gz" "asset_name": [
"${package}-cli-${version}-x86_64-apple-darwin.tar.gz",
"${package}-cli-${version}-x86_64-apple-darwin.gz"
],
"bin": "${package}-cli-${version}-x86_64-apple-darwin/${package}"
}, },
"x86_64_windows": { "x86_64_windows": {
"asset_name": "tombi-cli-${version}-x86_64-pc-windows-msvc.zip" "asset_name": "${package}-cli-${version}-x86_64-pc-windows-msvc.zip"
}, },
"aarch64_linux_musl": { "aarch64_linux_musl": {
"asset_name": "tombi-cli-${version}-aarch64-unknown-linux-musl.gz" "asset_name": [
"${package}-cli-${version}-aarch64-unknown-linux-musl.tar.gz",
"${package}-cli-${version}-aarch64-unknown-linux-musl.gz"
],
"bin": "${package}-cli-${version}-aarch64-unknown-linux-musl/${package}"
}, },
"aarch64_macos": { "aarch64_macos": {
"asset_name": "tombi-cli-${version}-aarch64-apple-darwin.gz" "asset_name": [
"${package}-cli-${version}-aarch64-apple-darwin.tar.gz",
"${package}-cli-${version}-aarch64-apple-darwin.gz"
],
"bin": "${package}-cli-${version}-aarch64-apple-darwin/${package}"
}, },
"aarch64_windows": { "aarch64_windows": {
"asset_name": "tombi-cli-${version}-aarch64-pc-windows-msvc.zip" "asset_name": "${package}-cli-${version}-aarch64-pc-windows-msvc.zip"
} }
} }
} }