Compare commits

..
Author SHA1 Message Date
Kevin Stillhammer 4f8ec3ecee Check that all jobs are in all-tests-passed needs 2025-05-26 20:20:50 +02:00
Kevin Stillhammer 0a94239999 Add support for pep440 version specifiers 2025-05-26 20:06:19 +02:00
da0c801a2d chore: update known checksums for 0.11.11 (#146)
chore: update known checksums for 0.11.11

Co-authored-by: eifinger <1481961+eifinger@users.noreply.github.com>
2025-05-23 07:25:27 +00:00
robertHowlettandGitHub 257550e917 docs: Explain that the default behaviour is ruff check (#142)
This tripped me up, I use ruff for both checking & formatting and
expected it to do both by default.
2025-05-19 10:36:40 +00:00
94b3590e87 chore: update known checksums for 0.11.10 (#140)
chore: update known checksums for 0.11.10

Co-authored-by: eifinger <1481961+eifinger@users.noreply.github.com>
2025-05-16 05:15:51 +00:00
7a9e8edffe chore: update known checksums for 0.11.9 (#138)
chore: update known checksums for 0.11.9

Co-authored-by: eifinger <1481961+eifinger@users.noreply.github.com>
2025-05-11 10:20:28 +02:00
Kevin StillhammerandGitHub 84f83ecf9e Support versions 0.1.8-0.4.7 (#135)
These versions have different artifact names in the GitHub releases

Fixes: #133
2025-05-07 16:58:28 +02:00
Kevin StillhammerandGitHub ea12b8ac41 Inform user of unsupported old version (#134)
Versions older than v0.0.247 do not have binaries in the GitHub releases
2025-05-07 13:28:39 +00:00
b259b0b299 chore: update known checksums for 0.11.8 (#130)
chore: update known checksums for 0.11.8

Co-authored-by: eifinger <1481961+eifinger@users.noreply.github.com>
2025-05-02 07:03:17 +00:00
c6bea5606c chore: update known checksums for 0.11.7 (#125)
chore: update known checksums for 0.11.7

Co-authored-by: eifinger <1481961+eifinger@users.noreply.github.com>
2025-04-27 13:01:02 +00:00
Simon BergerandGitHub 400ab365db Add support for reading the ruff version from Poetry groups (#127)
Not sure if this is a desired feature since this was requested already
(https://github.com/astral-sh/ruff-action/issues/40#issuecomment-2581207691)
without any sort of response.
Unfortunately Poetry doesn't yet support PEP 735
(https://github.com/python-poetry/poetry/issues/9751) and it doesn't
make sense to add ruff as a project dependency.
2025-04-27 12:37:48 +00:00
719c6e52c1 chore: update known checksums for 0.11.6 (#123)
chore: update known checksums for 0.11.6

Co-authored-by: eifinger <1481961+eifinger@users.noreply.github.com>
2025-04-18 06:59:08 +00:00
9a7114796b chore: update known checksums for 0.11.5 (#120)
chore: update known checksums for 0.11.5

Co-authored-by: eifinger <1481961+eifinger@users.noreply.github.com>
2025-04-11 06:05:56 +00:00
07c64b80af chore: update known checksums for 0.11.4 (#117)
chore: update known checksums for 0.11.4

Co-authored-by: eifinger <1481961+eifinger@users.noreply.github.com>
2025-04-05 12:37:12 +02:00
f800ba97f6 chore: update known checksums for 0.11.3 (#116)
chore: update known checksums for 0.11.3

Co-authored-by: eifinger <1481961+eifinger@users.noreply.github.com>
2025-04-04 06:06:48 +00:00
fd7f7e1868 chore: update known checksums for 0.11.2 (#108)
chore: update known checksums for 0.11.2

Co-authored-by: eifinger <1481961+eifinger@users.noreply.github.com>
2025-03-22 07:44:41 +00:00
Kevin StillhammerandGitHub faac838a0b Add required permissions and all-tests-passed (#107) 2025-03-21 15:06:07 +01:00
AvasamandGitHub 94d4d711a6 Mention the --diff flag for format --check (#104)
Just like for the action run adding annotations, the CI is the place
where you'd want extra information.

Especially information that tells you *how* to fix an issue, which is
relevant when a contributor doesn't want to / can't run the tool locally
(an edit through the GitHub UI could be more convenient, don't want to
bother installing extra tools locally, they're having issues not picking
up the right Ruff version when ran locally, etc.)

It's also easier to opt-out of copy-pasting this flag, than not knowing
about it in the first place.

Hence I think this documentation change is a positive to help anyone
integrate this action into their CI for check+formatting by looking at
the readme.
2025-03-19 13:53:29 +01:00
20 changed files with 1878 additions and 97 deletions
@@ -0,0 +1,20 @@
import * as fs from "node:fs";
import * as yaml from "js-yaml";
const workflow = yaml.load(
fs.readFileSync("../workflows/test.yml", "utf8"),
) as any;
const jobs = Object.keys(workflow.jobs);
const allTestsPassed = workflow.jobs["all-tests-passed"];
const needs: string[] = allTestsPassed.needs || [];
const expectedNeeds = jobs.filter((j) => j !== "all-tests-passed");
const missing = expectedNeeds.filter((j) => !needs.includes(j));
if (missing.length > 0) {
console.error(
`Missing jobs in all-tests-passed needs: ${missing.join(", ")}`,
);
process.exit(1);
}
console.log("All jobs in test.yml are in the needs section of all-tests-passed.");
-49
View File
@@ -1,49 +0,0 @@
# `dist/index.js` is a special file in Actions.
# When you reference an action with `uses:` in a workflow,
# `index.js` is the code that will run.
# For our project, we generate this file through a build process from other source files.
# We need to make sure the checked-in `index.js` actually matches what we expect it to be.
name: Check dist/
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
check-dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Rebuild the dist/ directory
run: |
npm run build
npm run package
- name: Compare the expected and actual dist/ directories
run: |
if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then
echo "::error::Detected uncommitted changes after build. Run 'npm run build' and commit the changes."
git diff --text -v
exit 1
fi
id: diff
# If index.js was different than expected, upload the expected version as an artifact
- uses: actions/upload-artifact@v4
if: ${{ failure() && steps.diff.conclusion == 'failure' }}
with:
name: dist
path: dist/
+1
View File
@@ -12,6 +12,7 @@
name: "CodeQL"
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
+4 -1
View File
@@ -3,15 +3,18 @@ name: Release Drafter
# yamllint disable-line rule:truthy
on:
workflow_dispatch:
push:
branches:
- main
workflow_dispatch:
jobs:
update_release_draft:
name: ✏️ Draft release
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: read
steps:
- name: 🚀 Run Release Drafter
uses: release-drafter/release-drafter@v6.1.0
+91 -11
View File
@@ -1,7 +1,7 @@
name: "test"
on:
pull_request:
workflow_dispatch:
pull_request:
push:
branches:
- main
@@ -24,6 +24,10 @@ jobs:
npm install
- run: |
npm run all
- name: Transpile scripts
run: |
tsc *.ts
working-directory: .github/scripts
- name: Make sure no changes from linters are detected
run: |
git diff --exit-code || (echo "::error::Please run 'npm run all' to fix the issues" && exit 1)
@@ -40,10 +44,11 @@ jobs:
src: __tests__/fixtures/python-project
version: latest
test-specific-version:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
ruff-version: ["0.7.4", "0.7", "0.7.x", ">=0.7.0"]
ruff-version: ["0.1.7", "0.1.8", "0.4.7", "0.4.10", "0.7", "0.7.x", ">=0.7.0"]
os: [ ubuntu-latest, ubuntu-24.04-arm, macos-latest, macos-14, windows-latest ]
steps:
- uses: actions/checkout@v4
- name: Use version ${{ matrix.ruff-version }}
@@ -51,6 +56,22 @@ jobs:
with:
version: ${{ matrix.ruff-version }}
src: __tests__/fixtures/python-project
test-unsupported-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Try install old version
id: install
continue-on-error: true
uses: ./
with:
version: 0.0.246
src: __tests__/fixtures/python-project
- name: Check if the action failed
run: |
if [ ${{ steps.install.outcome }} == "success" ]; then
exit 1
fi
test-version-from-version-file-pyproject:
runs-on: ubuntu-latest
steps:
@@ -118,6 +139,23 @@ jobs:
fi
env:
RUFF_VERSION: ${{ steps.ruff-action.outputs.ruff-version }}
test-default-version-from-pyproject-poetry-groups:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use default version from pyproject.toml poetry group dependencies
id: ruff-action
uses: ./
with:
src: __tests__/fixtures/pyproject-dependency-poetry-project
version-file: __tests__/fixtures/pyproject-dependency-poetry-project/pyproject.toml
- name: Correct version gets installed
run: |
if [ "$RUFF_VERSION" != "0.8.3" ]; then
exit 1
fi
env:
RUFF_VERSION: ${{ steps.ruff-action.outputs.ruff-version }}
test-default-version-from-pyproject-optional-dependencies:
runs-on: ubuntu-latest
steps:
@@ -169,17 +207,30 @@ jobs:
fi
env:
RUFF_VERSION: ${{ steps.ruff-action.outputs.ruff-version }}
test-pep440-version-specifier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install version 0.11.11
id: ruff-action
uses: ./
with:
version: ">=0.11.10,<0.12.0"
src: __tests__/fixtures/python-project
- name: Correct version gets installed
run: |
if [ "$RUFF_VERSION" != "0.11.11" ]; then
exit 1
fi
env:
RUFF_VERSION: ${{ steps.ruff-action.outputs.ruff-version }}
test-checksum:
runs-on: ${{ matrix.os }}
runs-on: ${{ matrix.inputs.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
checksum:
["0de731c669b9ece77e799ac3f4a160c30849752714d9775c94cc4cfaf326860c"]
exclude:
- os: macos-latest
inputs:
- os: ubuntu-latest
checksum: "0de731c669b9ece77e799ac3f4a160c30849752714d9775c94cc4cfaf326860c"
include:
- os: macos-latest
checksum: "af9583bff12afbca5d5670334e0187dd60c4d91bc71317d1b2dde70cb1200ba9"
steps:
@@ -188,7 +239,7 @@ jobs:
uses: ./
with:
version: "0.7.4"
checksum: ${{ matrix.checksum }}
checksum: ${{ matrix.inputs.checksum }}
src: __tests__/fixtures/python-project
test-with-explicit-token:
runs-on: ubuntu-latest
@@ -252,3 +303,32 @@ jobs:
src: >-
__tests__/fixtures/python-project/src/python_project/__init__.py
__tests__/fixtures/python-project/src/python_project/hello_world.py
all-tests-passed:
runs-on: ubuntu-latest
needs:
- lint
- test-latest-version
- test-specific-version
- test-unsupported-version
- test-version-from-version-file-pyproject
- test-default-version-from-pyproject
- test-default-version-from-pyproject-dev-group
- test-default-version-from-pyproject-dependency-groups
- test-default-version-from-pyproject-poetry-groups
- test-default-version-from-pyproject-optional-dependencies
- test-default-version-from-requirements
- test-semver-range
- test-pep440-version-specifier
- test-checksum
- test-with-explicit-token
- test-args
- test-failure
- test-multiple-src
if: always()
steps:
- name: All tests passed
run: |
echo "All jobs passed: ${{ !contains(needs.*.result, 'failure') }}"
# shellcheck disable=SC2242
exit ${{ contains(needs.*.result, 'failure') && 1 || 0 }}
@@ -7,6 +7,9 @@ on:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
@@ -13,6 +13,8 @@ jobs:
update_major_minor_tags:
name: Make sure major and minor tags are up to date on a patch release
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Update Major Minor Tags
+16 -5
View File
@@ -4,8 +4,8 @@ A GitHub Action to run [ruff](https://github.com/astral-sh/ruff).
This action is commonly used as a pass/fail test to ensure your repository stays
clean, abiding the [rules](https://docs.astral.sh/ruff/rules/) specified in your
configuration. Though it runs `ruff`, the action can do anything `ruff` can (ex,
fix).
configuration. Though it runs `ruff check` by default, the action can do
anything `ruff` can (ex, fix).
## Contents
@@ -18,7 +18,7 @@ fix).
- [Install specific versions](#install-specific-versions)
- [Install the latest version](#install-the-latest-version)
- [Install a specific version](#install-a-specific-version)
- [Install a version by supplying a semver range](#install-a-version-by-supplying-a-semver-range)
- [Install a version by supplying a semver range or pep440 specifier](#install-a-version-by-supplying-a-semver-range-or-pep440-specifier)
- [Install a version from a specified version file](#install-a-version-from-a-specified-version-file)
- [Validate checksum](#validate-checksum)
- [GitHub authentication token](#github-authentication-token)
@@ -85,7 +85,7 @@ you can use the `args` input to overwrite the default value (`check`):
```yaml
- uses: astral-sh/ruff-action@v3
with:
args: "format --check"
args: "format --check --diff"
```
### Install specific versions
@@ -95,6 +95,9 @@ the ruff version to install. If no pyproject.toml file is found, or no ruff vers
`project.dependencies`, `project.optional-dependencies`, or `dependency-groups`,
the latest version is installed.
> [!NOTE]
> This action does only support ruff versions v0.0.247 and above.
#### Install the latest version
```yaml
@@ -113,9 +116,10 @@ the latest version is installed.
version: "0.4.4"
```
#### Install a version by supplying a semver range
#### Install a version by supplying a semver range or pep440 specifier
You can specify a [semver range](https://github.com/npm/node-semver?tab=readme-ov-file#ranges)
or [pep440 specifier](https://peps.python.org/pep-0440/#version-specifiers)
to install the latest version that satisfies the range.
```yaml
@@ -132,6 +136,13 @@ to install the latest version that satisfies the range.
version: "0.4.x"
```
```yaml
- name: Install a pep440-specifier-satisfying version of ruff
uses: astral-sh/ruff-action@v3
with:
version: ">=0.11.10,<0.12.0"
```
#### Install a version from a specified version file
You can specify a file to read the version from.
@@ -0,0 +1,14 @@
[project]
name = "pyproject-dependency-poetry-project"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
[tool.poetry.group.dev.dependencies]
sphinx = "*"
ruff = "0.8.3"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
@@ -0,0 +1,2 @@
def hello() -> str:
return "Hello from python-project!"
Generated Vendored
+1027 -9
View File
File diff suppressed because it is too large Load Diff
+187
View File
@@ -28205,6 +28205,193 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.KNOWN_CHECKSUMS = void 0;
// AUTOGENERATED_DO_NOT_EDIT
exports.KNOWN_CHECKSUMS = {
"aarch64-apple-darwin-0.11.11": "814ccb26bed9c027bfc20ac88d33494ab0be62721757c73be70e26c23efbb3f7",
"aarch64-pc-windows-msvc-0.11.11": "7c43804a3a9646edbc70eda6dab061343a5545844dbaff82ba472df3be4b74e0",
"aarch64-unknown-linux-gnu-0.11.11": "26bc61fce6be2f358f656c7cc5b33725aafdc6ae6b21ee48fde10ad0d9b702ea",
"aarch64-unknown-linux-musl-0.11.11": "3ca33d9b68b8b0bc7e3673b7638910ac2f7c5399303b37bec4d13c005481a78a",
"arm-unknown-linux-musleabihf-0.11.11": "9d5cf3a8e5c495156479a7bb0a438f0f4bec6dbf69cdd48ede1cd508c41cd43b",
"armv7-unknown-linux-gnueabihf-0.11.11": "acb854e89c24333a17cc2aba7adabab7314dc16bb92b52094661f9ca5843703f",
"armv7-unknown-linux-musleabihf-0.11.11": "4e48259a71c1e806e64801bb3a55df555ee8b62360fb15f19e7ab3c496ee6f10",
"i686-pc-windows-msvc-0.11.11": "507a588d22c9eb3558c86e85d50f6cbc099d52444dc05290c61ae8454aee25de",
"i686-unknown-linux-gnu-0.11.11": "bd1e258d14a9a399bbb6fac468c3bfdc464858c028dd48ae3517f35b01a310c9",
"i686-unknown-linux-musl-0.11.11": "4de74178a1e0181ed56b623943a3198c4f7f90da918d050e846a1468050bf4ad",
"powerpc64-unknown-linux-gnu-0.11.11": "da883ef2174136c0d50570a16c01f57fd99c55e05914ba35dafd37b49e5f0331",
"powerpc64le-unknown-linux-gnu-0.11.11": "ecd54e2738005a345ecc80f834f89a3d55c791e89ad43ca24becfbed79d490a4",
"s390x-unknown-linux-gnu-0.11.11": "7a12eb9e85126cf9018842bc206b763211e9295ad6906e46c73b76ae110924ba",
"x86_64-apple-darwin-0.11.11": "8bef00e82bc07ea26b45adcffc3d55b2d0821f3a3e4d5f441f4dd4ad608fc1be",
"x86_64-pc-windows-msvc-0.11.11": "b7619ff27098a4d7f37c52fb8fc61ccfe677aaade7722a385b40f8d5273ebddd",
"x86_64-unknown-linux-gnu-0.11.11": "4883053606fc9efed6f8860145bcbf66f0f421684054c156c84b04bd9bf1638f",
"x86_64-unknown-linux-musl-0.11.11": "bb64b083767a5fd0a62e10e9a35614974ad53025e2878cf14a0c698680e6c30c",
"aarch64-apple-darwin-0.11.10": "1c4187c5ecd76535b76e991af1114d9c9947fe69e6d1a69c9ed6723d6777a53e",
"aarch64-pc-windows-msvc-0.11.10": "765234e319c8fce0b0216f570f4480b7a7b77d019347fa301536b808c245375b",
"aarch64-unknown-linux-gnu-0.11.10": "a39ff81bfe023d55008943f11221d49759d73b9fe6bf76584626cfcdd33d8684",
"aarch64-unknown-linux-musl-0.11.10": "acddbf808ba83c9dda01391ddd1c7f0c23d36f1f2cbbee6290d98363f3e4cafc",
"arm-unknown-linux-musleabihf-0.11.10": "8647e140f06719c68220157205ef21644901dfab8daefe72cf08317e45b212d4",
"armv7-unknown-linux-gnueabihf-0.11.10": "49eab0e5ec80c1d1a13737d5ad0ca69ac79227ece39750e4db38ad9f3a20f3f0",
"armv7-unknown-linux-musleabihf-0.11.10": "51bf490bd5a357d76dd5ca7d5aa6724e4445a413720e3d370cf28194f12800fc",
"i686-pc-windows-msvc-0.11.10": "e0aab393a0e9da99e7cadcfbad7bfa6abbe3de9e1fc69eb3e649ed27769fd7a1",
"i686-unknown-linux-gnu-0.11.10": "5cab3435770f98a3171e3890b870b2bf682f1639470d46e1538a2117a0072464",
"i686-unknown-linux-musl-0.11.10": "f98f40b6a9fddde57459ce635b94cacc417a6682aeab24ee1091f7486c64eaee",
"powerpc64-unknown-linux-gnu-0.11.10": "084d19d34b553212aceb988f2de97f304a214f0c93a230366bae55351d0c552c",
"powerpc64le-unknown-linux-gnu-0.11.10": "02abc4c8d4f40d4c2a02a4fe1edf6061ac724e95b0c65e5ccfd968b150d7154d",
"s390x-unknown-linux-gnu-0.11.10": "379ae3fa5b61d8e7433cf9fa5c76aec8a7e3f17e686f55100cccb13765b4c8f4",
"x86_64-apple-darwin-0.11.10": "25f0a8b819ea5c9377be02fd98c363ffb5659c35358881a1ce909f30b362cb39",
"x86_64-pc-windows-msvc-0.11.10": "d77bc4ecdb0f50f5a70422db90ec735caf71c3ea3e201e6e84a78fed695a4950",
"x86_64-unknown-linux-gnu-0.11.10": "ade458637abe06ff6780e0b3a5fdd281da552d33eb75b954fc2a27278258b856",
"x86_64-unknown-linux-musl-0.11.10": "8765d2f71c422f60a1456a2b2d9b2ee2ab286cb4859a774b5efb0a837a07f6dd",
"aarch64-apple-darwin-0.11.9": "d7955d8cf0b96471757d9733b21576b00baebecc056e3382d7023f092bfa8526",
"aarch64-pc-windows-msvc-0.11.9": "bebd2f05e37101023d32ca6b0a6ca1f619b0c5faccde7df0960d96bcc2bcf8bc",
"aarch64-unknown-linux-gnu-0.11.9": "8dffb447ee07405dcb0939666703a53ac38d6703abbe48db6d5ec8189544dd37",
"aarch64-unknown-linux-musl-0.11.9": "a3d6ee64ce182345d88ce2d1a2960d9261d2bcf6746b85be769b31e27349f6fb",
"arm-unknown-linux-musleabihf-0.11.9": "1c480bcfad71617754f9518e44db9670ff87145b79d03dec3db4b50c5a743dc3",
"armv7-unknown-linux-gnueabihf-0.11.9": "2a8739fb4544a2da95d3f64f43a01d86468dc4c72d47f0cdea4dbd36767e5b3b",
"armv7-unknown-linux-musleabihf-0.11.9": "5cfb13bad415b339162d60ca044c248130882ab014d648532fe789540f8fc80d",
"i686-pc-windows-msvc-0.11.9": "17dd0dc46c38bf1fe4af50f1cc5b128054a43182cfb643d5ab2ac0382e94719b",
"i686-unknown-linux-gnu-0.11.9": "472c13baa143869103ab40f8281d39691abc24ede7bfbcbc57bb2a796b84bb52",
"i686-unknown-linux-musl-0.11.9": "d1f795e59c2e0842352b00e8301ee8fe2fe321fd5af39f419b77534b4f6bd817",
"powerpc64-unknown-linux-gnu-0.11.9": "e5165cf2db7d74d1d05bc7fee0c36eb92578716a6b86d95d63c3a4577102350e",
"powerpc64le-unknown-linux-gnu-0.11.9": "022579b3fc348651103a2dddb21f5844dde111d9b539f6179448e076dc9979fe",
"s390x-unknown-linux-gnu-0.11.9": "f657228facc1a131a4896a028a847bba95ccf82dd6570385cacabb8f186db26d",
"x86_64-apple-darwin-0.11.9": "88d5c544ac4a420b3c58e0a858a7807c545668a6a3fb9e5403ad73aa0d55b653",
"x86_64-pc-windows-msvc-0.11.9": "b3c7144d40b3860b104cb88e5c8a95a326b81b3d305b9b6a2ce304761b8508c3",
"x86_64-unknown-linux-gnu-0.11.9": "276f6b928f61724b255e04e7e3b9e6859f86f4eec5d1b906a72983f3365b6671",
"x86_64-unknown-linux-musl-0.11.9": "7125dd1baf4f4d635a185c84fa8bef7f572a088e30d160a07f97f2c9fac70c6d",
"aarch64-apple-darwin-0.11.8": "bc3fc6693437efab1add3f288d6d16fac6926e6888c1e758ec162d5b6fe9099d",
"aarch64-pc-windows-msvc-0.11.8": "06c2152f269949390bdde0cc9f6d74eb3f4068853a3d772b9ac9baa675b63a06",
"aarch64-unknown-linux-gnu-0.11.8": "a6010d9393e254c73c81a9942fd1d49c6d1061a84bf76e024627924adfdd9e99",
"aarch64-unknown-linux-musl-0.11.8": "7a4882654cd8b7c79b0bacd0f9b2062ec08a111a7f2621c69718000a165c93b6",
"arm-unknown-linux-musleabihf-0.11.8": "e9d8c2e59d97b841273369350c64113708b402372fa6fd933aef70f2d4db9bf6",
"armv7-unknown-linux-gnueabihf-0.11.8": "1eda8253c82dfc9232508ffb52e1e7d320719c60781a95a0f0e2a4b9ac7d7829",
"armv7-unknown-linux-musleabihf-0.11.8": "cf4e4ca7426279051c4bdfb846749b8a75fe01892b9b08247dc700ece64af277",
"i686-pc-windows-msvc-0.11.8": "c9d35f023f94110fd77e0d84240b8c1daf26f923e115556d7ef1e1d3af663e83",
"i686-unknown-linux-gnu-0.11.8": "3d98524a340aede7ab974fb6f62778254aff1e9a57e565a22a348fdc02753566",
"i686-unknown-linux-musl-0.11.8": "01f5a7ac05eaa0d548792c309e75fa24d18b6685831743e984d56b0fc4514251",
"powerpc64-unknown-linux-gnu-0.11.8": "2c45c30ed216f67148ad8e96656efa0f9a4a7591c7def32fdd9db5db86a643fa",
"powerpc64le-unknown-linux-gnu-0.11.8": "85705683af19f1dfc3c90424dab2525422a1e03e487610a79b725f96e04a4953",
"s390x-unknown-linux-gnu-0.11.8": "722aa00e479f58f906e7bf697336b9ed3ccf0df939b83e10f2b778a6b136bdc6",
"x86_64-apple-darwin-0.11.8": "56eaecad5d4e41d2f799bbb705d83238436de4a547e5d04c0591ae3422ae61cc",
"x86_64-pc-windows-msvc-0.11.8": "2279f17ad7474b9a1493ec2aab404e6f1109272d3221a5d38ee06ceb0e4c6100",
"x86_64-unknown-linux-gnu-0.11.8": "8edc7a28bb958af4ebfb6a85002c8cd96d88f264dd8c080e065a6e984963ce3c",
"x86_64-unknown-linux-musl-0.11.8": "d5b331c4dd88a99b3b16babcaa8dec8b22f4004b880243f35f73c276f56684ff",
"aarch64-apple-darwin-0.11.7": "1c6cc5fb36fb001dfa7331892f9d808bc7ced1d45f0ec54b4caeaa571bc55495",
"aarch64-pc-windows-msvc-0.11.7": "c18bc5d87b9b582f1f9da6bdf78fa4a710f9d40f409cfae330f20bf9f16ce631",
"aarch64-unknown-linux-gnu-0.11.7": "ccc11afdc3d3d3b146f972645d54a49c819034b8379d190281962bfa80c69389",
"aarch64-unknown-linux-musl-0.11.7": "6cf1772002cc8787f5dd24b3fa7aa86bb26ad7188854f3df40a435467ecce10b",
"arm-unknown-linux-musleabihf-0.11.7": "54b2103852c9667eab6df2b22649f1e0b16e1f4106888e9e239ada1e263bba0e",
"armv7-unknown-linux-gnueabihf-0.11.7": "770b301a87680d96a3400e6932028efcbd181ab22e6a8dd551a1efcc2b6df82f",
"armv7-unknown-linux-musleabihf-0.11.7": "8401fd29776dfd02f68a2a13bc4aea04b4da202237a0ab9548f9e373edf74b8f",
"i686-pc-windows-msvc-0.11.7": "8608f979877847e8d218c9b5bc327bb5e9ce45b39961addc8380ffd9f4833a1a",
"i686-unknown-linux-gnu-0.11.7": "8b837237cd348d87f7a1a22341d65a2a4b082173d5f873caa40a45493d6a8117",
"i686-unknown-linux-musl-0.11.7": "897c08c45b8fcfc90770250ea61cc7cd22badeea2b7a685d78bf5f3892ae09a6",
"powerpc64-unknown-linux-gnu-0.11.7": "38fc8cd8a4432372974668cf5256d55de2158ad5d919b6eff55637b50b4e749a",
"powerpc64le-unknown-linux-gnu-0.11.7": "b9a8349f934930809981bf330dfa2385bb5e8c1d3a16752710e1a66130d44a97",
"s390x-unknown-linux-gnu-0.11.7": "3daa6fb92450347b3983913624636c26d9451487b02a27880bcb6665413b1b5d",
"x86_64-apple-darwin-0.11.7": "2acd8b2a63749e17506cc7a4a00b2ef007a3793d365ef0b6ed2a191f77219f35",
"x86_64-pc-windows-msvc-0.11.7": "9e319a18844da490949303ec5a60032f6ee8d673fb174bd4e70c8641b091375d",
"x86_64-unknown-linux-gnu-0.11.7": "7f448fea7bac3320416d1465219b8bd58828bfef9a3c8398094ca6c09b71148c",
"x86_64-unknown-linux-musl-0.11.7": "0caf32ab0c399bfba08d18b190dc1aaec8ea47368864a4bf3b3f113e36e8fd68",
"aarch64-apple-darwin-0.11.6": "fa9a4f229431f1971c4b1d35567237706384104af464d1d34013077e75b0dff3",
"aarch64-pc-windows-msvc-0.11.6": "a5b28d8f4eb6a46bdd000f11579fcb074ab3be1e3d9140c225b7111cd7f6708f",
"aarch64-unknown-linux-gnu-0.11.6": "ff73176c526026b02847901b9a51a1ed395a445d3704dbf60df4bd68d06f0be7",
"aarch64-unknown-linux-musl-0.11.6": "05e42f4293649535fd381c6af6527af98868703f6072711022b76fffefcb669f",
"arm-unknown-linux-musleabihf-0.11.6": "f9795e7edf81afa1885409d84fe4a25f7e9f7db35cdcb7e825eb5f9adb6c9c94",
"armv7-unknown-linux-gnueabihf-0.11.6": "1c94650fdfbc0923495fea6b9be92ac503896f55ca255df4a9c3758b59e98475",
"armv7-unknown-linux-musleabihf-0.11.6": "e8beafa466781a59902b92979a65e1f8999609874624c8fcda30812cbad3540a",
"i686-pc-windows-msvc-0.11.6": "268f9450c9a8fad32c84da1cbf3be34f2d4fdb56442cae8d73e64c6476437f31",
"i686-unknown-linux-gnu-0.11.6": "00c91021cdb13e781141c7cbf3bda5429e3ec60f70a87fa71452596d48e906b6",
"i686-unknown-linux-musl-0.11.6": "a0fe3d93befe5b9767deb9d072e0f0b140aab37be1600e51ae06c16239d8e391",
"powerpc64-unknown-linux-gnu-0.11.6": "04a25b6c39f94d6adfba2549ad94117dc8783a097378fae21b378a7cf763ba0b",
"powerpc64le-unknown-linux-gnu-0.11.6": "ee67e166d653011fd6d3ff7231eceeb4a46c544a8deed808933e0a50b7dfd75b",
"s390x-unknown-linux-gnu-0.11.6": "59ac481df26bcdef791ec69c32ab43068b132f771d40f505bce6f4947773adde",
"x86_64-apple-darwin-0.11.6": "5af295e50f2a7db9767964bfe1af1cd9b61004b4e7fcb9e29059fb7aa561ad21",
"x86_64-pc-windows-msvc-0.11.6": "9fbe8bc77738d2f231d580e315c54bc615b1bec22a6df4201e1d9a821f842ae3",
"x86_64-unknown-linux-gnu-0.11.6": "ccfaf04f1f912c77ff12890717a4390166ea955e51d504a6f68c2fd2bc70c39e",
"x86_64-unknown-linux-musl-0.11.6": "e5d91ac0472fa84942fd82cc9289637c9ec5a4669b8b2e2be6f61983707c8973",
"aarch64-apple-darwin-0.11.5": "4a5b1a44412bda817debb67d826a565f11b235744870b509f44102403a3a9e89",
"aarch64-pc-windows-msvc-0.11.5": "b31e0b25db4810115f714669152ad953e2b0902630c730457152bddebf2ca3c2",
"aarch64-unknown-linux-gnu-0.11.5": "49955aa67dc524dfbee37ce3749d7f9331ed2d79c3a204da1729068d2f41d667",
"aarch64-unknown-linux-musl-0.11.5": "77c11c7a70d3bf499915bab5a7691e955f4127164c4cfb7ef4e0773892ed2509",
"arm-unknown-linux-musleabihf-0.11.5": "e84eb046fd064e34328c9e4dc931f48553d4b15899794aee024e7f3d22fe7292",
"armv7-unknown-linux-gnueabihf-0.11.5": "da597c4e014c59dcc7826fd088d8cc12d3a1d22cbd7da6128b399c5a364781c0",
"armv7-unknown-linux-musleabihf-0.11.5": "9f1b0efe535b1f376b627ca91adea6bcbaf25202f4601644dbdf45329f351a0f",
"i686-pc-windows-msvc-0.11.5": "d3333b62d4ef26d2872f6c0f3f6340da161f8e4bbc7359dd9a8eab2cb4bd2f1b",
"i686-unknown-linux-gnu-0.11.5": "70535bc5f92315af0f738c1ef2feb3653a5f4168a360d9a305918c3c4ad13e70",
"i686-unknown-linux-musl-0.11.5": "240a76da851374d14851d0e1a90e4cb289c9420fe502e7cfab66d1aafaf130b0",
"powerpc64-unknown-linux-gnu-0.11.5": "38f85d692148fc2142dbc215954fb2c08bebf9cbb23c2cc24b7c92a938bdf05b",
"powerpc64le-unknown-linux-gnu-0.11.5": "2e51789ce389d15852a39b7204ed118f26dcea989a98da513433b0849901795f",
"s390x-unknown-linux-gnu-0.11.5": "c8908e1e157f0ea5579be71b3fdc52c86f440e87026c4894d4b232d4797f9394",
"x86_64-apple-darwin-0.11.5": "c28725c6421d5834b2cd16c7b13c3831b3363d6d558448d7dd3e0aa695551f94",
"x86_64-pc-windows-msvc-0.11.5": "2679f4187e5cb317c5a1af17f6114d314b0d5534147097773e1cc0fd8b512429",
"x86_64-unknown-linux-gnu-0.11.5": "291972831e6dc576caaa393ed4a8ed0c4d82e0ff4ea08d4e849d6e5ac840a833",
"x86_64-unknown-linux-musl-0.11.5": "067c1c6c4d6033b65fe788f5310075686110b286a102431fb19883c079e2fca1",
"aarch64-apple-darwin-0.11.4": "55a555097986e7cf0f84ce564f1638ac1da23eddf76d4b1b47489f3922cf8ae4",
"aarch64-pc-windows-msvc-0.11.4": "90ff70103285d09929f7b31a11c30bd2c5df752e2d3a61e540599cee06c39dc9",
"aarch64-unknown-linux-gnu-0.11.4": "6fbc86c6668dbf910d95722e15d0504e1dc40b4ed0a0270ed1d25d43e44aea80",
"aarch64-unknown-linux-musl-0.11.4": "c8e81e2ef126c2e033ca6e374bffcea7f21cb4c6bf8c7fff51a140e2d15bcb7f",
"arm-unknown-linux-musleabihf-0.11.4": "c17dd23ebca317a2c3224ffa6c0617e353633a0ec7c7149f0a61dc9828cba73f",
"armv7-unknown-linux-gnueabihf-0.11.4": "71584d500a601b77745d76aef81a11cd92b7200f42c663009a8b3bc03e68479a",
"armv7-unknown-linux-musleabihf-0.11.4": "4cd49dbe93944fc1e9bf826d0940bdbcb171dec346db1ebb25681cc1a31e1a77",
"i686-pc-windows-msvc-0.11.4": "2d068600be4a657b888ab4654c94b0f7f63d3246ea7fff14b734d2ab0053718c",
"i686-unknown-linux-gnu-0.11.4": "5035f3b7d46f8b5661a0335ebfd78e1f841210bd601b98ce3793572fa8be744d",
"i686-unknown-linux-musl-0.11.4": "8b8b48eae555dd67cd224b8f072ff745c13aa1bb1842afb9f1052bc9276a30d5",
"powerpc64-unknown-linux-gnu-0.11.4": "a7403d043978726e2fa665e16419ef2e3836b091036c9c38426ba1872492a9ea",
"powerpc64le-unknown-linux-gnu-0.11.4": "af9cc3230a7515b4f1359950c5a2288d0c3bcbbaa3b892e729227395cf1e80c7",
"s390x-unknown-linux-gnu-0.11.4": "655287e21286ccfa6e203b0d7d904cc539be59f16734b3a273a2cdbd0a37deb1",
"x86_64-apple-darwin-0.11.4": "744d62f6d3b35b8a01c5e4d08cc8a61dba28d289747f20cf38d4945e152b9b5e",
"x86_64-pc-windows-msvc-0.11.4": "b8b64b08a371e195fd76a9a4f38d30de9ca3c0151eea776d55c53324c3de4ea4",
"x86_64-unknown-linux-gnu-0.11.4": "69b9d9228ecadcffec970976e7d5c989064c2129ab03e606b3f96e588bcc1ffc",
"x86_64-unknown-linux-musl-0.11.4": "116444192ecb0378e06a3665069b344e80acacb4e7071cd25e4026b70eaf3080",
"aarch64-apple-darwin-0.11.3": "7c265ea9176ffa8310adc8e8b8e3274e77dc663f0404fd6f92fd417e159f413c",
"aarch64-pc-windows-msvc-0.11.3": "281f3e2ce6d17409e54f5a6a883e1aa8bdfa70d86baca74efb17b617094926cf",
"aarch64-unknown-linux-gnu-0.11.3": "a1696128279f927f67a051949edeba9359ef20366b4349c1cc1b8e690b59743c",
"aarch64-unknown-linux-musl-0.11.3": "b98da720f726d5e42a89bafe3b7e40dce74f0493d92e675cc4254349a25a2f6a",
"arm-unknown-linux-musleabihf-0.11.3": "35315a8a41dec64ca36a5b030ac41dbf4505de4eb4aab7e41bd07e520746e7fd",
"armv7-unknown-linux-gnueabihf-0.11.3": "9eb3fdfd64649c20a6f2765e34585fc3a7ff5a3beb64fcafe2f8f9b2fb8df680",
"armv7-unknown-linux-musleabihf-0.11.3": "d7d5b51c748421420903805c851d47817749d1f6c99d1ef98ec9a4e990df57a1",
"i686-pc-windows-msvc-0.11.3": "e4a3ad502c4ebcb50e54acc2643aecb2c3adc16ed00d2bdac8ab08898f508431",
"i686-unknown-linux-gnu-0.11.3": "4dac993bf409508831a0060ae46993615dac5da670ef2958a6202d9a878e36be",
"i686-unknown-linux-musl-0.11.3": "c3d654428a9aece53d684ec94bb5b93ac530b801167e193de4973a93b1f5cef0",
"powerpc64-unknown-linux-gnu-0.11.3": "32f9fb6f641d8dc68c429bd82bd551184fe8d60b8b1278fbedb9cf08bf3c5a14",
"powerpc64le-unknown-linux-gnu-0.11.3": "1f10bb8de6808f07e95ab75736401189980d3737b969c99eb390586e16a818be",
"s390x-unknown-linux-gnu-0.11.3": "0c92a5798cb2e1955500f159535258983358546cb07c292b2f3398c0a8e935aa",
"x86_64-apple-darwin-0.11.3": "b209590d1f856c9db5817ad8f5143b1a772c16e1429aa19cce2e299507e1898b",
"x86_64-pc-windows-msvc-0.11.3": "d5649ba04579aa66aa876862fa58d28ebe327513e7b4d89f087f04992ec69f4c",
"x86_64-unknown-linux-gnu-0.11.3": "62568251d4dba83d5430ff0a9abf165bc8b7fb0372650fa7d5565634f6b4248e",
"x86_64-unknown-linux-musl-0.11.3": "a2e4cfab3eb83f0cf6717e88da734a4c783c0545f1be402026d1376e5de3323c",
"aarch64-apple-darwin-0.11.2": "9961fffc17d3a8f6ce8bb92f0b2a90fda80f0ea2d0c1346d6117bb4e18f34913",
"aarch64-pc-windows-msvc-0.11.2": "a41f4e8822701ef3391831365de8adf3b1cc976726a93a54216de00cc34dea93",
"aarch64-unknown-linux-gnu-0.11.2": "7f35af7323a7ceeec1d83e64ae669f87d38162a8267af88fff9a3f9b2c89a2f2",
"aarch64-unknown-linux-musl-0.11.2": "51dc675fa09661f49cf8accbb0e1c115a5e3e00454c4619a63ba10e7f90a5852",
"arm-unknown-linux-musleabihf-0.11.2": "5e6d9531cbb4387d8d7c652bba4d8161f305b98459496b650149872dac0ca1df",
"armv7-unknown-linux-gnueabihf-0.11.2": "afcbb4e46d6ed3d5970a36863c3c6233e58c20bb7c762c78c68cf1d3d4a38f93",
"armv7-unknown-linux-musleabihf-0.11.2": "5b7fa555836ca342950ecf9a6ef5ffdcb917f2b89d663580b327f0f0b0f5ac0c",
"i686-pc-windows-msvc-0.11.2": "17d350f5a0a517ef535bfba1420b68189c0a445a3a0e19bb06cf9c3aeb8a03c6",
"i686-unknown-linux-gnu-0.11.2": "8b27e39d4585964477f46abb6fbaa1804b6c35dfc86111d2d64e98632e49f0bf",
"i686-unknown-linux-musl-0.11.2": "68129ce67cf5a606035ebefcb7f5ddd9235c57e54aed079b0df932a4c2a319ed",
"powerpc64-unknown-linux-gnu-0.11.2": "67b89d962667af4700392d21fd78d7ace6c32f04085f3a5272ffa54f39a38b59",
"powerpc64le-unknown-linux-gnu-0.11.2": "b384803d8b25c1980dd54987e2adad895953d97a950115738d4faf8c0f115f05",
"s390x-unknown-linux-gnu-0.11.2": "a630420ecebc3a1a94ceb7131703342d4f4a70a29f5d7e69c96d21d98556bf23",
"x86_64-apple-darwin-0.11.2": "acfc4c703112ff58319ad4b30382b88531414473daad4776066ed22fb86351e1",
"x86_64-pc-windows-msvc-0.11.2": "88feff8d7b746b9226e4370e6563d12bf40e58e3233c18cd0c41f26c415e963b",
"x86_64-unknown-linux-gnu-0.11.2": "cc5ebc29bc0493a2f42654f757573d062d0984ce91bd796a41109ab643ef4e3f",
"x86_64-unknown-linux-musl-0.11.2": "b09844718d52aa72e914bc0eb806d2ea01ceea006378bc515170e4eae8632ed8",
"aarch64-apple-darwin-0.11.1": "d41de7663c80b83ec3987a89d30f9bc64d49487bcf45078483944a80581e1a61",
"aarch64-pc-windows-msvc-0.11.1": "ee7211b59f05be0e5c5fd24d5dc05591644fac4c15f4f013e5975511b27b9402",
"aarch64-unknown-linux-gnu-0.11.1": "15b1fa9f855c62951d93d429af1a33f082e3a7192e4a1f1e7108d9b574921796",
"aarch64-unknown-linux-musl-0.11.1": "c20e9c96e49d7e85c9bc32ad2a139016a39bb63df6db214de539125bda1f3d5d",
"arm-unknown-linux-musleabihf-0.11.1": "b3281686a846322df070772efc6fc359480ae04bac0ca61a3cfb14f0c6b53c24",
"armv7-unknown-linux-gnueabihf-0.11.1": "820eedda2fbe8cf66e8fd3abbaf2519b338ad5712c53ae493cb75f12dfad4651",
"armv7-unknown-linux-musleabihf-0.11.1": "0ae6426c7cdc8649464350f64c4f07065199b38477257326bf5547a409c3d224",
"i686-pc-windows-msvc-0.11.1": "0a3931aee2ce36a9604109b9edb0e02e2a07401957fa2da125f4fa2199a836de",
"i686-unknown-linux-gnu-0.11.1": "15bef7202e0f82b8cb6dd9eaa3101e090ee1067d379c249d447337eb016bba2d",
"i686-unknown-linux-musl-0.11.1": "f7c69e12e319b6b9a89ce4533d3a0aa35b6006d40eba1cfd79dc19cf44002373",
"powerpc64-unknown-linux-gnu-0.11.1": "8bfa85a3f3b0e127c8141e7cddd7f6b0cf5fa2935afb34236ee8c2e2b7d5201d",
"powerpc64le-unknown-linux-gnu-0.11.1": "0a4b4724d97e820d74a036e984b92a4027e506723d4ac6adacd3d6bcbc97d586",
"s390x-unknown-linux-gnu-0.11.1": "a31163314be04affd81186d052087333f71744c38d7142e7169c2cf92f2c3ebb",
"x86_64-apple-darwin-0.11.1": "db8cb26297357754b034c043b600f648162ca3b4c3d6b80aab36fac9b30be21e",
"x86_64-pc-windows-msvc-0.11.1": "ea0371400228fcccd81c4d6884caa4c80d694cf73a20b6e9a685b0fac76c2455",
"x86_64-unknown-linux-gnu-0.11.1": "2eb2238227e232a7b6e2da71586e8d7999782a0b2d9ddab7d3a6354a13d2589c",
"x86_64-unknown-linux-musl-0.11.1": "a57ab099cdada4265eb7558f63c724799121daf542e1103ab95f1be86f5d70a5",
"aarch64-apple-darwin-0.11.0": "09ea313f2aab3844432b46c6c5e3e066b26ae4953f4bac1e545176e5dea22306",
"aarch64-pc-windows-msvc-0.11.0": "49c1a9f99aa0e606d66960be12bb21e40da190e4798a18df0bf361c99dc644ad",
"aarch64-unknown-linux-gnu-0.11.0": "e4e69fe47ad319aeef0983e26e927907d7521214a7d72c79cf2e2b15316ecfa5",
+19
View File
@@ -15,10 +15,12 @@
"@octokit/core": "^6.1.4",
"@octokit/plugin-paginate-rest": "^11.4.3",
"@octokit/plugin-rest-endpoint-methods": "^13.3.1",
"@renovatebot/pep440": "^4.1.0",
"smol-toml": "^1.3.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.13.10",
"@types/semver": "^7.5.8",
"@vercel/ncc": "^0.38.3",
@@ -350,6 +352,23 @@
"@octokit/openapi-types": "^23.0.1"
}
},
"node_modules/@renovatebot/pep440": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/@renovatebot/pep440/-/pep440-4.1.0.tgz",
"integrity": "sha512-mo2RxnOSp78Njt1HmgMwjl6FapP4OyIS8HypJlymCvN7AIV2Xf5PmZfl/E3O1WWZ6IjKrfsEAaPWFMi8tnkq3g==",
"license": "Apache-2.0",
"engines": {
"node": "^20.9.0 || ^22.11.0",
"pnpm": "^9.0.0"
}
},
"node_modules/@types/js-yaml": {
"version": "4.0.9",
"resolved": "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-4.0.9.tgz",
"integrity": "sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/node": {
"version": "22.13.10",
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.10.tgz",
+2
View File
@@ -28,10 +28,12 @@
"@octokit/core": "^6.1.4",
"@octokit/plugin-paginate-rest": "^11.4.3",
"@octokit/plugin-rest-endpoint-methods": "^13.3.1",
"@renovatebot/pep440": "^4.1.0",
"smol-toml": "^1.3.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.13.10",
"@types/semver": "^7.5.8",
"@vercel/ncc": "^0.38.3",
+374
View File
@@ -1,5 +1,379 @@
// AUTOGENERATED_DO_NOT_EDIT
export const KNOWN_CHECKSUMS: { [key: string]: string } = {
"aarch64-apple-darwin-0.11.11":
"814ccb26bed9c027bfc20ac88d33494ab0be62721757c73be70e26c23efbb3f7",
"aarch64-pc-windows-msvc-0.11.11":
"7c43804a3a9646edbc70eda6dab061343a5545844dbaff82ba472df3be4b74e0",
"aarch64-unknown-linux-gnu-0.11.11":
"26bc61fce6be2f358f656c7cc5b33725aafdc6ae6b21ee48fde10ad0d9b702ea",
"aarch64-unknown-linux-musl-0.11.11":
"3ca33d9b68b8b0bc7e3673b7638910ac2f7c5399303b37bec4d13c005481a78a",
"arm-unknown-linux-musleabihf-0.11.11":
"9d5cf3a8e5c495156479a7bb0a438f0f4bec6dbf69cdd48ede1cd508c41cd43b",
"armv7-unknown-linux-gnueabihf-0.11.11":
"acb854e89c24333a17cc2aba7adabab7314dc16bb92b52094661f9ca5843703f",
"armv7-unknown-linux-musleabihf-0.11.11":
"4e48259a71c1e806e64801bb3a55df555ee8b62360fb15f19e7ab3c496ee6f10",
"i686-pc-windows-msvc-0.11.11":
"507a588d22c9eb3558c86e85d50f6cbc099d52444dc05290c61ae8454aee25de",
"i686-unknown-linux-gnu-0.11.11":
"bd1e258d14a9a399bbb6fac468c3bfdc464858c028dd48ae3517f35b01a310c9",
"i686-unknown-linux-musl-0.11.11":
"4de74178a1e0181ed56b623943a3198c4f7f90da918d050e846a1468050bf4ad",
"powerpc64-unknown-linux-gnu-0.11.11":
"da883ef2174136c0d50570a16c01f57fd99c55e05914ba35dafd37b49e5f0331",
"powerpc64le-unknown-linux-gnu-0.11.11":
"ecd54e2738005a345ecc80f834f89a3d55c791e89ad43ca24becfbed79d490a4",
"s390x-unknown-linux-gnu-0.11.11":
"7a12eb9e85126cf9018842bc206b763211e9295ad6906e46c73b76ae110924ba",
"x86_64-apple-darwin-0.11.11":
"8bef00e82bc07ea26b45adcffc3d55b2d0821f3a3e4d5f441f4dd4ad608fc1be",
"x86_64-pc-windows-msvc-0.11.11":
"b7619ff27098a4d7f37c52fb8fc61ccfe677aaade7722a385b40f8d5273ebddd",
"x86_64-unknown-linux-gnu-0.11.11":
"4883053606fc9efed6f8860145bcbf66f0f421684054c156c84b04bd9bf1638f",
"x86_64-unknown-linux-musl-0.11.11":
"bb64b083767a5fd0a62e10e9a35614974ad53025e2878cf14a0c698680e6c30c",
"aarch64-apple-darwin-0.11.10":
"1c4187c5ecd76535b76e991af1114d9c9947fe69e6d1a69c9ed6723d6777a53e",
"aarch64-pc-windows-msvc-0.11.10":
"765234e319c8fce0b0216f570f4480b7a7b77d019347fa301536b808c245375b",
"aarch64-unknown-linux-gnu-0.11.10":
"a39ff81bfe023d55008943f11221d49759d73b9fe6bf76584626cfcdd33d8684",
"aarch64-unknown-linux-musl-0.11.10":
"acddbf808ba83c9dda01391ddd1c7f0c23d36f1f2cbbee6290d98363f3e4cafc",
"arm-unknown-linux-musleabihf-0.11.10":
"8647e140f06719c68220157205ef21644901dfab8daefe72cf08317e45b212d4",
"armv7-unknown-linux-gnueabihf-0.11.10":
"49eab0e5ec80c1d1a13737d5ad0ca69ac79227ece39750e4db38ad9f3a20f3f0",
"armv7-unknown-linux-musleabihf-0.11.10":
"51bf490bd5a357d76dd5ca7d5aa6724e4445a413720e3d370cf28194f12800fc",
"i686-pc-windows-msvc-0.11.10":
"e0aab393a0e9da99e7cadcfbad7bfa6abbe3de9e1fc69eb3e649ed27769fd7a1",
"i686-unknown-linux-gnu-0.11.10":
"5cab3435770f98a3171e3890b870b2bf682f1639470d46e1538a2117a0072464",
"i686-unknown-linux-musl-0.11.10":
"f98f40b6a9fddde57459ce635b94cacc417a6682aeab24ee1091f7486c64eaee",
"powerpc64-unknown-linux-gnu-0.11.10":
"084d19d34b553212aceb988f2de97f304a214f0c93a230366bae55351d0c552c",
"powerpc64le-unknown-linux-gnu-0.11.10":
"02abc4c8d4f40d4c2a02a4fe1edf6061ac724e95b0c65e5ccfd968b150d7154d",
"s390x-unknown-linux-gnu-0.11.10":
"379ae3fa5b61d8e7433cf9fa5c76aec8a7e3f17e686f55100cccb13765b4c8f4",
"x86_64-apple-darwin-0.11.10":
"25f0a8b819ea5c9377be02fd98c363ffb5659c35358881a1ce909f30b362cb39",
"x86_64-pc-windows-msvc-0.11.10":
"d77bc4ecdb0f50f5a70422db90ec735caf71c3ea3e201e6e84a78fed695a4950",
"x86_64-unknown-linux-gnu-0.11.10":
"ade458637abe06ff6780e0b3a5fdd281da552d33eb75b954fc2a27278258b856",
"x86_64-unknown-linux-musl-0.11.10":
"8765d2f71c422f60a1456a2b2d9b2ee2ab286cb4859a774b5efb0a837a07f6dd",
"aarch64-apple-darwin-0.11.9":
"d7955d8cf0b96471757d9733b21576b00baebecc056e3382d7023f092bfa8526",
"aarch64-pc-windows-msvc-0.11.9":
"bebd2f05e37101023d32ca6b0a6ca1f619b0c5faccde7df0960d96bcc2bcf8bc",
"aarch64-unknown-linux-gnu-0.11.9":
"8dffb447ee07405dcb0939666703a53ac38d6703abbe48db6d5ec8189544dd37",
"aarch64-unknown-linux-musl-0.11.9":
"a3d6ee64ce182345d88ce2d1a2960d9261d2bcf6746b85be769b31e27349f6fb",
"arm-unknown-linux-musleabihf-0.11.9":
"1c480bcfad71617754f9518e44db9670ff87145b79d03dec3db4b50c5a743dc3",
"armv7-unknown-linux-gnueabihf-0.11.9":
"2a8739fb4544a2da95d3f64f43a01d86468dc4c72d47f0cdea4dbd36767e5b3b",
"armv7-unknown-linux-musleabihf-0.11.9":
"5cfb13bad415b339162d60ca044c248130882ab014d648532fe789540f8fc80d",
"i686-pc-windows-msvc-0.11.9":
"17dd0dc46c38bf1fe4af50f1cc5b128054a43182cfb643d5ab2ac0382e94719b",
"i686-unknown-linux-gnu-0.11.9":
"472c13baa143869103ab40f8281d39691abc24ede7bfbcbc57bb2a796b84bb52",
"i686-unknown-linux-musl-0.11.9":
"d1f795e59c2e0842352b00e8301ee8fe2fe321fd5af39f419b77534b4f6bd817",
"powerpc64-unknown-linux-gnu-0.11.9":
"e5165cf2db7d74d1d05bc7fee0c36eb92578716a6b86d95d63c3a4577102350e",
"powerpc64le-unknown-linux-gnu-0.11.9":
"022579b3fc348651103a2dddb21f5844dde111d9b539f6179448e076dc9979fe",
"s390x-unknown-linux-gnu-0.11.9":
"f657228facc1a131a4896a028a847bba95ccf82dd6570385cacabb8f186db26d",
"x86_64-apple-darwin-0.11.9":
"88d5c544ac4a420b3c58e0a858a7807c545668a6a3fb9e5403ad73aa0d55b653",
"x86_64-pc-windows-msvc-0.11.9":
"b3c7144d40b3860b104cb88e5c8a95a326b81b3d305b9b6a2ce304761b8508c3",
"x86_64-unknown-linux-gnu-0.11.9":
"276f6b928f61724b255e04e7e3b9e6859f86f4eec5d1b906a72983f3365b6671",
"x86_64-unknown-linux-musl-0.11.9":
"7125dd1baf4f4d635a185c84fa8bef7f572a088e30d160a07f97f2c9fac70c6d",
"aarch64-apple-darwin-0.11.8":
"bc3fc6693437efab1add3f288d6d16fac6926e6888c1e758ec162d5b6fe9099d",
"aarch64-pc-windows-msvc-0.11.8":
"06c2152f269949390bdde0cc9f6d74eb3f4068853a3d772b9ac9baa675b63a06",
"aarch64-unknown-linux-gnu-0.11.8":
"a6010d9393e254c73c81a9942fd1d49c6d1061a84bf76e024627924adfdd9e99",
"aarch64-unknown-linux-musl-0.11.8":
"7a4882654cd8b7c79b0bacd0f9b2062ec08a111a7f2621c69718000a165c93b6",
"arm-unknown-linux-musleabihf-0.11.8":
"e9d8c2e59d97b841273369350c64113708b402372fa6fd933aef70f2d4db9bf6",
"armv7-unknown-linux-gnueabihf-0.11.8":
"1eda8253c82dfc9232508ffb52e1e7d320719c60781a95a0f0e2a4b9ac7d7829",
"armv7-unknown-linux-musleabihf-0.11.8":
"cf4e4ca7426279051c4bdfb846749b8a75fe01892b9b08247dc700ece64af277",
"i686-pc-windows-msvc-0.11.8":
"c9d35f023f94110fd77e0d84240b8c1daf26f923e115556d7ef1e1d3af663e83",
"i686-unknown-linux-gnu-0.11.8":
"3d98524a340aede7ab974fb6f62778254aff1e9a57e565a22a348fdc02753566",
"i686-unknown-linux-musl-0.11.8":
"01f5a7ac05eaa0d548792c309e75fa24d18b6685831743e984d56b0fc4514251",
"powerpc64-unknown-linux-gnu-0.11.8":
"2c45c30ed216f67148ad8e96656efa0f9a4a7591c7def32fdd9db5db86a643fa",
"powerpc64le-unknown-linux-gnu-0.11.8":
"85705683af19f1dfc3c90424dab2525422a1e03e487610a79b725f96e04a4953",
"s390x-unknown-linux-gnu-0.11.8":
"722aa00e479f58f906e7bf697336b9ed3ccf0df939b83e10f2b778a6b136bdc6",
"x86_64-apple-darwin-0.11.8":
"56eaecad5d4e41d2f799bbb705d83238436de4a547e5d04c0591ae3422ae61cc",
"x86_64-pc-windows-msvc-0.11.8":
"2279f17ad7474b9a1493ec2aab404e6f1109272d3221a5d38ee06ceb0e4c6100",
"x86_64-unknown-linux-gnu-0.11.8":
"8edc7a28bb958af4ebfb6a85002c8cd96d88f264dd8c080e065a6e984963ce3c",
"x86_64-unknown-linux-musl-0.11.8":
"d5b331c4dd88a99b3b16babcaa8dec8b22f4004b880243f35f73c276f56684ff",
"aarch64-apple-darwin-0.11.7":
"1c6cc5fb36fb001dfa7331892f9d808bc7ced1d45f0ec54b4caeaa571bc55495",
"aarch64-pc-windows-msvc-0.11.7":
"c18bc5d87b9b582f1f9da6bdf78fa4a710f9d40f409cfae330f20bf9f16ce631",
"aarch64-unknown-linux-gnu-0.11.7":
"ccc11afdc3d3d3b146f972645d54a49c819034b8379d190281962bfa80c69389",
"aarch64-unknown-linux-musl-0.11.7":
"6cf1772002cc8787f5dd24b3fa7aa86bb26ad7188854f3df40a435467ecce10b",
"arm-unknown-linux-musleabihf-0.11.7":
"54b2103852c9667eab6df2b22649f1e0b16e1f4106888e9e239ada1e263bba0e",
"armv7-unknown-linux-gnueabihf-0.11.7":
"770b301a87680d96a3400e6932028efcbd181ab22e6a8dd551a1efcc2b6df82f",
"armv7-unknown-linux-musleabihf-0.11.7":
"8401fd29776dfd02f68a2a13bc4aea04b4da202237a0ab9548f9e373edf74b8f",
"i686-pc-windows-msvc-0.11.7":
"8608f979877847e8d218c9b5bc327bb5e9ce45b39961addc8380ffd9f4833a1a",
"i686-unknown-linux-gnu-0.11.7":
"8b837237cd348d87f7a1a22341d65a2a4b082173d5f873caa40a45493d6a8117",
"i686-unknown-linux-musl-0.11.7":
"897c08c45b8fcfc90770250ea61cc7cd22badeea2b7a685d78bf5f3892ae09a6",
"powerpc64-unknown-linux-gnu-0.11.7":
"38fc8cd8a4432372974668cf5256d55de2158ad5d919b6eff55637b50b4e749a",
"powerpc64le-unknown-linux-gnu-0.11.7":
"b9a8349f934930809981bf330dfa2385bb5e8c1d3a16752710e1a66130d44a97",
"s390x-unknown-linux-gnu-0.11.7":
"3daa6fb92450347b3983913624636c26d9451487b02a27880bcb6665413b1b5d",
"x86_64-apple-darwin-0.11.7":
"2acd8b2a63749e17506cc7a4a00b2ef007a3793d365ef0b6ed2a191f77219f35",
"x86_64-pc-windows-msvc-0.11.7":
"9e319a18844da490949303ec5a60032f6ee8d673fb174bd4e70c8641b091375d",
"x86_64-unknown-linux-gnu-0.11.7":
"7f448fea7bac3320416d1465219b8bd58828bfef9a3c8398094ca6c09b71148c",
"x86_64-unknown-linux-musl-0.11.7":
"0caf32ab0c399bfba08d18b190dc1aaec8ea47368864a4bf3b3f113e36e8fd68",
"aarch64-apple-darwin-0.11.6":
"fa9a4f229431f1971c4b1d35567237706384104af464d1d34013077e75b0dff3",
"aarch64-pc-windows-msvc-0.11.6":
"a5b28d8f4eb6a46bdd000f11579fcb074ab3be1e3d9140c225b7111cd7f6708f",
"aarch64-unknown-linux-gnu-0.11.6":
"ff73176c526026b02847901b9a51a1ed395a445d3704dbf60df4bd68d06f0be7",
"aarch64-unknown-linux-musl-0.11.6":
"05e42f4293649535fd381c6af6527af98868703f6072711022b76fffefcb669f",
"arm-unknown-linux-musleabihf-0.11.6":
"f9795e7edf81afa1885409d84fe4a25f7e9f7db35cdcb7e825eb5f9adb6c9c94",
"armv7-unknown-linux-gnueabihf-0.11.6":
"1c94650fdfbc0923495fea6b9be92ac503896f55ca255df4a9c3758b59e98475",
"armv7-unknown-linux-musleabihf-0.11.6":
"e8beafa466781a59902b92979a65e1f8999609874624c8fcda30812cbad3540a",
"i686-pc-windows-msvc-0.11.6":
"268f9450c9a8fad32c84da1cbf3be34f2d4fdb56442cae8d73e64c6476437f31",
"i686-unknown-linux-gnu-0.11.6":
"00c91021cdb13e781141c7cbf3bda5429e3ec60f70a87fa71452596d48e906b6",
"i686-unknown-linux-musl-0.11.6":
"a0fe3d93befe5b9767deb9d072e0f0b140aab37be1600e51ae06c16239d8e391",
"powerpc64-unknown-linux-gnu-0.11.6":
"04a25b6c39f94d6adfba2549ad94117dc8783a097378fae21b378a7cf763ba0b",
"powerpc64le-unknown-linux-gnu-0.11.6":
"ee67e166d653011fd6d3ff7231eceeb4a46c544a8deed808933e0a50b7dfd75b",
"s390x-unknown-linux-gnu-0.11.6":
"59ac481df26bcdef791ec69c32ab43068b132f771d40f505bce6f4947773adde",
"x86_64-apple-darwin-0.11.6":
"5af295e50f2a7db9767964bfe1af1cd9b61004b4e7fcb9e29059fb7aa561ad21",
"x86_64-pc-windows-msvc-0.11.6":
"9fbe8bc77738d2f231d580e315c54bc615b1bec22a6df4201e1d9a821f842ae3",
"x86_64-unknown-linux-gnu-0.11.6":
"ccfaf04f1f912c77ff12890717a4390166ea955e51d504a6f68c2fd2bc70c39e",
"x86_64-unknown-linux-musl-0.11.6":
"e5d91ac0472fa84942fd82cc9289637c9ec5a4669b8b2e2be6f61983707c8973",
"aarch64-apple-darwin-0.11.5":
"4a5b1a44412bda817debb67d826a565f11b235744870b509f44102403a3a9e89",
"aarch64-pc-windows-msvc-0.11.5":
"b31e0b25db4810115f714669152ad953e2b0902630c730457152bddebf2ca3c2",
"aarch64-unknown-linux-gnu-0.11.5":
"49955aa67dc524dfbee37ce3749d7f9331ed2d79c3a204da1729068d2f41d667",
"aarch64-unknown-linux-musl-0.11.5":
"77c11c7a70d3bf499915bab5a7691e955f4127164c4cfb7ef4e0773892ed2509",
"arm-unknown-linux-musleabihf-0.11.5":
"e84eb046fd064e34328c9e4dc931f48553d4b15899794aee024e7f3d22fe7292",
"armv7-unknown-linux-gnueabihf-0.11.5":
"da597c4e014c59dcc7826fd088d8cc12d3a1d22cbd7da6128b399c5a364781c0",
"armv7-unknown-linux-musleabihf-0.11.5":
"9f1b0efe535b1f376b627ca91adea6bcbaf25202f4601644dbdf45329f351a0f",
"i686-pc-windows-msvc-0.11.5":
"d3333b62d4ef26d2872f6c0f3f6340da161f8e4bbc7359dd9a8eab2cb4bd2f1b",
"i686-unknown-linux-gnu-0.11.5":
"70535bc5f92315af0f738c1ef2feb3653a5f4168a360d9a305918c3c4ad13e70",
"i686-unknown-linux-musl-0.11.5":
"240a76da851374d14851d0e1a90e4cb289c9420fe502e7cfab66d1aafaf130b0",
"powerpc64-unknown-linux-gnu-0.11.5":
"38f85d692148fc2142dbc215954fb2c08bebf9cbb23c2cc24b7c92a938bdf05b",
"powerpc64le-unknown-linux-gnu-0.11.5":
"2e51789ce389d15852a39b7204ed118f26dcea989a98da513433b0849901795f",
"s390x-unknown-linux-gnu-0.11.5":
"c8908e1e157f0ea5579be71b3fdc52c86f440e87026c4894d4b232d4797f9394",
"x86_64-apple-darwin-0.11.5":
"c28725c6421d5834b2cd16c7b13c3831b3363d6d558448d7dd3e0aa695551f94",
"x86_64-pc-windows-msvc-0.11.5":
"2679f4187e5cb317c5a1af17f6114d314b0d5534147097773e1cc0fd8b512429",
"x86_64-unknown-linux-gnu-0.11.5":
"291972831e6dc576caaa393ed4a8ed0c4d82e0ff4ea08d4e849d6e5ac840a833",
"x86_64-unknown-linux-musl-0.11.5":
"067c1c6c4d6033b65fe788f5310075686110b286a102431fb19883c079e2fca1",
"aarch64-apple-darwin-0.11.4":
"55a555097986e7cf0f84ce564f1638ac1da23eddf76d4b1b47489f3922cf8ae4",
"aarch64-pc-windows-msvc-0.11.4":
"90ff70103285d09929f7b31a11c30bd2c5df752e2d3a61e540599cee06c39dc9",
"aarch64-unknown-linux-gnu-0.11.4":
"6fbc86c6668dbf910d95722e15d0504e1dc40b4ed0a0270ed1d25d43e44aea80",
"aarch64-unknown-linux-musl-0.11.4":
"c8e81e2ef126c2e033ca6e374bffcea7f21cb4c6bf8c7fff51a140e2d15bcb7f",
"arm-unknown-linux-musleabihf-0.11.4":
"c17dd23ebca317a2c3224ffa6c0617e353633a0ec7c7149f0a61dc9828cba73f",
"armv7-unknown-linux-gnueabihf-0.11.4":
"71584d500a601b77745d76aef81a11cd92b7200f42c663009a8b3bc03e68479a",
"armv7-unknown-linux-musleabihf-0.11.4":
"4cd49dbe93944fc1e9bf826d0940bdbcb171dec346db1ebb25681cc1a31e1a77",
"i686-pc-windows-msvc-0.11.4":
"2d068600be4a657b888ab4654c94b0f7f63d3246ea7fff14b734d2ab0053718c",
"i686-unknown-linux-gnu-0.11.4":
"5035f3b7d46f8b5661a0335ebfd78e1f841210bd601b98ce3793572fa8be744d",
"i686-unknown-linux-musl-0.11.4":
"8b8b48eae555dd67cd224b8f072ff745c13aa1bb1842afb9f1052bc9276a30d5",
"powerpc64-unknown-linux-gnu-0.11.4":
"a7403d043978726e2fa665e16419ef2e3836b091036c9c38426ba1872492a9ea",
"powerpc64le-unknown-linux-gnu-0.11.4":
"af9cc3230a7515b4f1359950c5a2288d0c3bcbbaa3b892e729227395cf1e80c7",
"s390x-unknown-linux-gnu-0.11.4":
"655287e21286ccfa6e203b0d7d904cc539be59f16734b3a273a2cdbd0a37deb1",
"x86_64-apple-darwin-0.11.4":
"744d62f6d3b35b8a01c5e4d08cc8a61dba28d289747f20cf38d4945e152b9b5e",
"x86_64-pc-windows-msvc-0.11.4":
"b8b64b08a371e195fd76a9a4f38d30de9ca3c0151eea776d55c53324c3de4ea4",
"x86_64-unknown-linux-gnu-0.11.4":
"69b9d9228ecadcffec970976e7d5c989064c2129ab03e606b3f96e588bcc1ffc",
"x86_64-unknown-linux-musl-0.11.4":
"116444192ecb0378e06a3665069b344e80acacb4e7071cd25e4026b70eaf3080",
"aarch64-apple-darwin-0.11.3":
"7c265ea9176ffa8310adc8e8b8e3274e77dc663f0404fd6f92fd417e159f413c",
"aarch64-pc-windows-msvc-0.11.3":
"281f3e2ce6d17409e54f5a6a883e1aa8bdfa70d86baca74efb17b617094926cf",
"aarch64-unknown-linux-gnu-0.11.3":
"a1696128279f927f67a051949edeba9359ef20366b4349c1cc1b8e690b59743c",
"aarch64-unknown-linux-musl-0.11.3":
"b98da720f726d5e42a89bafe3b7e40dce74f0493d92e675cc4254349a25a2f6a",
"arm-unknown-linux-musleabihf-0.11.3":
"35315a8a41dec64ca36a5b030ac41dbf4505de4eb4aab7e41bd07e520746e7fd",
"armv7-unknown-linux-gnueabihf-0.11.3":
"9eb3fdfd64649c20a6f2765e34585fc3a7ff5a3beb64fcafe2f8f9b2fb8df680",
"armv7-unknown-linux-musleabihf-0.11.3":
"d7d5b51c748421420903805c851d47817749d1f6c99d1ef98ec9a4e990df57a1",
"i686-pc-windows-msvc-0.11.3":
"e4a3ad502c4ebcb50e54acc2643aecb2c3adc16ed00d2bdac8ab08898f508431",
"i686-unknown-linux-gnu-0.11.3":
"4dac993bf409508831a0060ae46993615dac5da670ef2958a6202d9a878e36be",
"i686-unknown-linux-musl-0.11.3":
"c3d654428a9aece53d684ec94bb5b93ac530b801167e193de4973a93b1f5cef0",
"powerpc64-unknown-linux-gnu-0.11.3":
"32f9fb6f641d8dc68c429bd82bd551184fe8d60b8b1278fbedb9cf08bf3c5a14",
"powerpc64le-unknown-linux-gnu-0.11.3":
"1f10bb8de6808f07e95ab75736401189980d3737b969c99eb390586e16a818be",
"s390x-unknown-linux-gnu-0.11.3":
"0c92a5798cb2e1955500f159535258983358546cb07c292b2f3398c0a8e935aa",
"x86_64-apple-darwin-0.11.3":
"b209590d1f856c9db5817ad8f5143b1a772c16e1429aa19cce2e299507e1898b",
"x86_64-pc-windows-msvc-0.11.3":
"d5649ba04579aa66aa876862fa58d28ebe327513e7b4d89f087f04992ec69f4c",
"x86_64-unknown-linux-gnu-0.11.3":
"62568251d4dba83d5430ff0a9abf165bc8b7fb0372650fa7d5565634f6b4248e",
"x86_64-unknown-linux-musl-0.11.3":
"a2e4cfab3eb83f0cf6717e88da734a4c783c0545f1be402026d1376e5de3323c",
"aarch64-apple-darwin-0.11.2":
"9961fffc17d3a8f6ce8bb92f0b2a90fda80f0ea2d0c1346d6117bb4e18f34913",
"aarch64-pc-windows-msvc-0.11.2":
"a41f4e8822701ef3391831365de8adf3b1cc976726a93a54216de00cc34dea93",
"aarch64-unknown-linux-gnu-0.11.2":
"7f35af7323a7ceeec1d83e64ae669f87d38162a8267af88fff9a3f9b2c89a2f2",
"aarch64-unknown-linux-musl-0.11.2":
"51dc675fa09661f49cf8accbb0e1c115a5e3e00454c4619a63ba10e7f90a5852",
"arm-unknown-linux-musleabihf-0.11.2":
"5e6d9531cbb4387d8d7c652bba4d8161f305b98459496b650149872dac0ca1df",
"armv7-unknown-linux-gnueabihf-0.11.2":
"afcbb4e46d6ed3d5970a36863c3c6233e58c20bb7c762c78c68cf1d3d4a38f93",
"armv7-unknown-linux-musleabihf-0.11.2":
"5b7fa555836ca342950ecf9a6ef5ffdcb917f2b89d663580b327f0f0b0f5ac0c",
"i686-pc-windows-msvc-0.11.2":
"17d350f5a0a517ef535bfba1420b68189c0a445a3a0e19bb06cf9c3aeb8a03c6",
"i686-unknown-linux-gnu-0.11.2":
"8b27e39d4585964477f46abb6fbaa1804b6c35dfc86111d2d64e98632e49f0bf",
"i686-unknown-linux-musl-0.11.2":
"68129ce67cf5a606035ebefcb7f5ddd9235c57e54aed079b0df932a4c2a319ed",
"powerpc64-unknown-linux-gnu-0.11.2":
"67b89d962667af4700392d21fd78d7ace6c32f04085f3a5272ffa54f39a38b59",
"powerpc64le-unknown-linux-gnu-0.11.2":
"b384803d8b25c1980dd54987e2adad895953d97a950115738d4faf8c0f115f05",
"s390x-unknown-linux-gnu-0.11.2":
"a630420ecebc3a1a94ceb7131703342d4f4a70a29f5d7e69c96d21d98556bf23",
"x86_64-apple-darwin-0.11.2":
"acfc4c703112ff58319ad4b30382b88531414473daad4776066ed22fb86351e1",
"x86_64-pc-windows-msvc-0.11.2":
"88feff8d7b746b9226e4370e6563d12bf40e58e3233c18cd0c41f26c415e963b",
"x86_64-unknown-linux-gnu-0.11.2":
"cc5ebc29bc0493a2f42654f757573d062d0984ce91bd796a41109ab643ef4e3f",
"x86_64-unknown-linux-musl-0.11.2":
"b09844718d52aa72e914bc0eb806d2ea01ceea006378bc515170e4eae8632ed8",
"aarch64-apple-darwin-0.11.1":
"d41de7663c80b83ec3987a89d30f9bc64d49487bcf45078483944a80581e1a61",
"aarch64-pc-windows-msvc-0.11.1":
"ee7211b59f05be0e5c5fd24d5dc05591644fac4c15f4f013e5975511b27b9402",
"aarch64-unknown-linux-gnu-0.11.1":
"15b1fa9f855c62951d93d429af1a33f082e3a7192e4a1f1e7108d9b574921796",
"aarch64-unknown-linux-musl-0.11.1":
"c20e9c96e49d7e85c9bc32ad2a139016a39bb63df6db214de539125bda1f3d5d",
"arm-unknown-linux-musleabihf-0.11.1":
"b3281686a846322df070772efc6fc359480ae04bac0ca61a3cfb14f0c6b53c24",
"armv7-unknown-linux-gnueabihf-0.11.1":
"820eedda2fbe8cf66e8fd3abbaf2519b338ad5712c53ae493cb75f12dfad4651",
"armv7-unknown-linux-musleabihf-0.11.1":
"0ae6426c7cdc8649464350f64c4f07065199b38477257326bf5547a409c3d224",
"i686-pc-windows-msvc-0.11.1":
"0a3931aee2ce36a9604109b9edb0e02e2a07401957fa2da125f4fa2199a836de",
"i686-unknown-linux-gnu-0.11.1":
"15bef7202e0f82b8cb6dd9eaa3101e090ee1067d379c249d447337eb016bba2d",
"i686-unknown-linux-musl-0.11.1":
"f7c69e12e319b6b9a89ce4533d3a0aa35b6006d40eba1cfd79dc19cf44002373",
"powerpc64-unknown-linux-gnu-0.11.1":
"8bfa85a3f3b0e127c8141e7cddd7f6b0cf5fa2935afb34236ee8c2e2b7d5201d",
"powerpc64le-unknown-linux-gnu-0.11.1":
"0a4b4724d97e820d74a036e984b92a4027e506723d4ac6adacd3d6bcbc97d586",
"s390x-unknown-linux-gnu-0.11.1":
"a31163314be04affd81186d052087333f71744c38d7142e7169c2cf92f2c3ebb",
"x86_64-apple-darwin-0.11.1":
"db8cb26297357754b034c043b600f648162ca3b4c3d6b80aab36fac9b30be21e",
"x86_64-pc-windows-msvc-0.11.1":
"ea0371400228fcccd81c4d6884caa4c80d694cf73a20b6e9a685b0fac76c2455",
"x86_64-unknown-linux-gnu-0.11.1":
"2eb2238227e232a7b6e2da71586e8d7999782a0b2d9ddab7d3a6354a13d2589c",
"x86_64-unknown-linux-musl-0.11.1":
"a57ab099cdada4265eb7558f63c724799121daf542e1103ab95f1be86f5d70a5",
"aarch64-apple-darwin-0.11.0":
"09ea313f2aab3844432b46c6c5e3e066b26ae4953f4bac1e545176e5dea22306",
"aarch64-pc-windows-msvc-0.11.0":
+76 -13
View File
@@ -2,6 +2,8 @@ import * as core from "@actions/core";
import * as tc from "@actions/tool-cache";
import * as path from "node:path";
import { promises as fs } from "node:fs";
import * as semver from "semver";
import * as pep440 from "@renovatebot/pep440";
import { OWNER, REPO, TOOL_CACHE_NAME } from "../utils/constants";
import type { Architecture, Platform } from "../utils/platforms";
import { validateChecksum } from "./checksum/checksum";
@@ -38,16 +40,59 @@ export async function downloadVersion(
if (platform === "pc-windows-msvc") {
extension = ".zip";
}
const downloadUrl = `https://github.com/${OWNER}/${REPO}/releases/download/${version}/${artifact}${extension}`;
core.info(`Downloading ruff from "${downloadUrl}" ...`);
const downloadUrl = constructDownloadUrl(version, platform, arch);
core.debug(`Downloading ruff from "${downloadUrl}" ...`);
const downloadPath = await tc.downloadTool(
downloadUrl,
undefined,
githubToken,
);
core.debug(`Downloaded ruff to "${downloadPath}"`);
await validateChecksum(checkSum, downloadPath, arch, platform, version);
const extractedDir = await extractDownloadedArtifact(
version,
downloadPath,
extension,
platform,
artifact,
);
const cachedToolDir = await tc.cacheDir(
extractedDir,
TOOL_CACHE_NAME,
version,
arch,
);
return { version: version, cachedToolDir };
}
function constructDownloadUrl(
version: string,
platform: Platform,
arch: Architecture,
): string {
const artifactVersionSuffix =
semver.lte(version, "v0.4.10") && semver.gte(version, "v0.1.8")
? `-${version}`
: "";
const artifact = `ruff${artifactVersionSuffix}-${arch}-${platform}`;
let extension = ".tar.gz";
if (platform === "pc-windows-msvc") {
extension = ".zip";
}
const versionPrefix = semver.lte(version, "v0.4.10") ? "v" : "";
return `https://github.com/${OWNER}/${REPO}/releases/download/${versionPrefix}${version}/${artifact}${extension}`;
}
async function extractDownloadedArtifact(
version: string,
downloadPath: string,
extension: string,
platform: Platform,
artifact: string,
): Promise<string> {
let ruffDir: string;
if (platform === "pc-windows-msvc") {
const fullPathWithExtension = `${downloadPath}${extension}`;
@@ -55,16 +100,15 @@ export async function downloadVersion(
ruffDir = await tc.extractZip(fullPathWithExtension);
// On windows extracting the zip does not create an intermediate directory
} else {
const extractedDir = await tc.extractTar(downloadPath);
ruffDir = path.join(extractedDir, artifact);
ruffDir = await tc.extractTar(downloadPath);
if (semver.gte(version, "v0.5.0")) {
// Since v0.5.0 an intermediate directory is created
ruffDir = path.join(ruffDir, artifact);
}
const cachedToolDir = await tc.cacheDir(
ruffDir,
TOOL_CACHE_NAME,
version,
arch,
);
return { version: version, cachedToolDir };
}
const files = await fs.readdir(ruffDir);
core.debug(`Contents of ${ruffDir}: ${files.join(", ")}`);
return ruffDir;
}
export async function resolveVersion(
@@ -81,8 +125,8 @@ export async function resolveVersion(
return version;
}
const availableVersions = await getAvailableVersions(githubToken);
const resolvedVersion = tc.evaluateVersions(availableVersions, version);
if (resolvedVersion === "") {
const resolvedVersion = maxSatisfying(availableVersions, version);
if (resolvedVersion === undefined) {
throw new Error(`No version found for ${version}`);
}
core.debug(`Resolved version: ${resolvedVersion}`);
@@ -152,3 +196,22 @@ async function getLatestRelease(
});
return latestRelease;
}
function maxSatisfying(
versions: string[],
version: string,
): string | undefined {
const maxSemver = tc.evaluateVersions(versions, version);
if (maxSemver !== "") {
core.debug(`Found a version that satisfies the semver range: ${maxSemver}`);
return maxSemver;
}
const maxPep440 = pep440.maxSatisfying(versions, version);
if (maxPep440 !== null) {
core.debug(
`Found a version that satisfies the pep440 specifier: ${maxPep440}`,
);
return maxPep440;
}
return undefined;
}
+6
View File
@@ -23,6 +23,7 @@ import {
} from "./utils/inputs";
import { getRuffVersionFromRequirementsFile } from "./utils/pyproject";
import * as fs from "node:fs";
import * as semver from "semver";
async function run(): Promise<void> {
const platform = getPlatform();
@@ -62,6 +63,11 @@ async function setupRuff(
githubToken: string,
): Promise<{ ruffDir: string; version: string }> {
const resolvedVersion = await determineVersion();
if (semver.lt(resolvedVersion, "v0.0.247")) {
throw Error(
"This action does not support ruff versions older than 0.0.247",
);
}
const toolCacheResult = tryGetFromToolCache(arch, resolvedVersion);
if (toolCacheResult.installedPath) {
core.info(`Found ruffDir in tool-cache for ${toolCacheResult.version}`);
+30 -6
View File
@@ -23,14 +23,21 @@ function getRuffVersionFromAllDependencies(
return undefined;
}
function parsePyproject(pyprojectContent: string): string | undefined {
const pyproject: {
interface Pyproject {
project?: {
dependencies?: string[];
"optional-dependencies"?: Map<string, string[]>;
"optional-dependencies"?: Record<string, string[]>;
};
"dependency-groups"?: Map<string, Array<string | object>>;
} = toml.parse(pyprojectContent);
"dependency-groups"?: Record<string, Array<string | object>>;
tool?: {
poetry?: {
group?: Record<string, { dependencies: Record<string, string | object> }>;
};
};
}
function parsePyproject(pyprojectContent: string): string | undefined {
const pyproject: Pyproject = toml.parse(pyprojectContent);
const dependencies: string[] = pyproject?.project?.dependencies || [];
const optionalDependencies: string[] = Object.values(
pyproject?.project?.["optional-dependencies"] || {},
@@ -40,11 +47,28 @@ function parsePyproject(pyprojectContent: string): string | undefined {
)
.flat()
.filter((item: string | object) => typeof item === "string");
return getRuffVersionFromAllDependencies(
return (
getRuffVersionFromAllDependencies(
dependencies.concat(optionalDependencies, devDependencies),
) || getRuffVersionFromPoetryGroups(pyproject)
);
}
function getRuffVersionFromPoetryGroups(
pyproject: Pyproject,
): string | undefined {
// Special handling for Poetry until it supports PEP 735
// See: <https://github.com/python-poetry/poetry/issues/9751>
const poetryGroups = Object.values(pyproject?.tool?.poetry?.group || {});
return poetryGroups
.flatMap((group) => Object.entries(group.dependencies))
.map(([name, spec]) => {
if (name === "ruff" && typeof spec === "string") return spec;
return undefined;
})
.find((version) => version !== undefined);
}
export function getRuffVersionFromRequirementsFile(
filePath: string,
): string | undefined {