Zanie Blue
2d6d85e993
Guard against malicious ecosystem comment artifacts ( #11879 )
2024-06-14 12:11:25 -05:00
Dhruv Manilawala
4f49e918a9
Bump version to v0.4.9 ( #11872 )
2024-06-14 20:36:22 +05:30
renovate[bot]
134aa7c7d5
Update dawidd6/action-download-artifact action to v5 ( #11818 )
2024-06-09 22:23:19 -04:00
Alex Waygood
37d8de3316
[red-knot] Include vendored typeshed stubs as a zipfile in the Ruff binary ( #11779 )
...
Co-authored-by: Micha Reiser <micha@reiser.io >
Co-authored-by: Carl Meyer <carl@astral.sh >
2024-06-07 15:00:36 +00:00
Michael Oultram
2c865023ac
CI: add job to run tests under minimum supported rust version (msrv) ( #11737 )
...
## Summary
This change adds a GitHub Actions CI job to check that the project
builds and test pass under the declared minimum supported rust compiler.
I have bumped the msrv to 1.74 as that is the lowest version I could get
this project to build on.
## Test Plan
The CI job has run on this PR, and will also run on the main branch.
2024-06-04 15:14:50 -04:00
renovate[bot]
27085a93d9
Update cloudflare/wrangler-action action to v3.6.1 ( #11709 )
2024-06-02 21:51:27 -04:00
Carl Meyer
889667ad84
[red-knot] Update CODEOWNERS ( #11625 )
...
Co-authored-by: Micha Reiser <micha@reiser.io >
2024-05-31 06:47:53 +00:00
Auguste Lalande
cd87b787d9
Fix windows-ci failure ( #11470 )
...
<!--
Thank you for contributing to Ruff! To help us out with reviewing,
please consider the following:
- Does this pull request include a summary of the change? (See below.)
- Does this pull request include a descriptive title?
- Does this pull request include references to any relevant issues?
-->
## Summary
The recent issues with the windows CI seem to be caused by
https://github.com/nextest-rs/nextest/issues/1493 . With this
https://github.com/nextest-rs/nextest/issues/1493#issuecomment-2106331574
as a fix.
(Let's see if it works)
2024-05-19 07:25:06 -05:00
Alex Waygood
bdc15a7cb9
Add automation for updating our vendored typeshed stubs ( #11427 )
2024-05-14 20:39:30 -04:00
Charlie Marsh
be0ccabbaa
Add cargo shear to CI ( #11393 )
2024-05-12 22:23:36 -04:00
Alex Waygood
1a392d34e1
Tell renovate not to try to update GitHub runners ( #11324 )
2024-05-07 16:02:35 +00:00
renovate[bot]
5bdb160781
Update cloudflare/wrangler-action action to v3.5.0 ( #11298 )
2024-05-05 21:09:22 -04:00
Charlie Marsh
d0f51c6434
Remove remaining ruff_shrinking references ( #11272 )
...
## Summary
This caused `rooster release` to fail.
Initially removed in https://github.com/astral-sh/ruff/pull/11242 .
2024-05-03 20:22:08 +00:00
Alex Waygood
0ed7af35ec
Add a daily workflow to fuzz the parser with randomly selected seeds ( #11203 )
2024-04-29 17:54:17 +01:00
Charlie Marsh
dfe90a3b2b
Add a --release build to CI ( #11182 )
...
## Summary
We merged a failure here (#11177 ), and it only takes ~five minutes
anyway (which is shorter than some of our other jobs).
2024-04-27 20:36:33 -04:00
Ibraheem Ahmed
22d4f11348
Upgrade codspeed-criterion-compat to 2.6.0 ( #11153 )
...
## Summary
`codspeed-criterion-compat` 2.6.0 [updates it's package selection
mechanism](https://github.com/CodSpeedHQ/codspeed-rust/pull/43 ), so
https://github.com/astral-sh/ruff/pull/10735 is no longer needed.
## Test Plan
CI should still be passing.
2024-04-25 20:22:37 -04:00
Charlie Marsh
dc09f529bc
Build a separate ARM wheel for macOS ( #11149 )
...
## Summary
Since we already build an x86 wheel, we can just build an ARM wheel
rather than cross-compiling to universal.
The build time is ~3 minutes vs. > 20 minutes and the resulting artifact
is much smaller, which is also a win for users.
2024-04-25 15:06:47 -04:00
Charlie Marsh
263a0d25ed
Use macos-12 to build release wheels ( #11146 )
...
## Summary
GitHub has started to change `macos-latest` to `macos-14`. But
executables built on `macos-14` don't work on macOS 11 (see:
https://github.com/astral-sh/uv/issues/3261 ). This PR explicitly uses
`macos-12` instead (which is what we _intended_ to be using anyway).
2024-04-25 12:07:25 -04:00
Alex Waygood
455d22cdc8
Fix syntax for some if-conditions in ci.yaml ( #11109 )
2024-04-23 19:46:58 +01:00
Alex Waygood
f5c7a62aa6
Add a new CI job to fuzz the parser ( #11089 )
2024-04-23 10:24:04 +00:00
Alex Waygood
5dcb1d9e8c
Improvements to the fuzz-parser script ( #11071 )
...
## Summary
- Properly fix the race condition identified in
https://github.com/astral-sh/ruff/pull/11039 . Instead of running the
version of Ruff we're testing by invoking `cargo run --release` on each
generated source file, we either (1) accept a path to an executable on
the command line or (2) if that's not specified, we run `cargo build
--release` once at the start and then invoke the executable found in
`target/release/ruff` directly.
- Now that the race condition is properly fixed, remove the workaround
for the race condition added in
https://github.com/astral-sh/ruff/pull/11039 .
- Also allow users to pass in an executable to compare against for the
`--only-new-bugs` argument (previously it was hardcoded to always
compare against the version of Ruff installed into the Python
environment)
- Use `argparse.RawDescriptionHelpFormatter` as the formatter class
rather than `argparse.RawTextHelpFormatter`. This means that long help
texts for the individual arguments will be wrapped to a sensible width.
- On completion of the script, indicate success or failure of the script
overall by raising `SytemExit` with the appropriate exit code.
- Add myself as a codeowner for the script
2024-04-22 07:46:58 +01:00
Dhruv Manilawala
25a9131109
Add myself as codeowner for the parser ( #11013 )
2024-04-18 16:37:52 +00:00
Alex Waygood
0c8ba32819
Minor improvements to renovate config ( #10957 )
2024-04-15 17:33:06 +00:00
Micha Reiser
b62aeb39d2
Configure Renovate to ignore ESLint 9 ( #10946 )
2024-04-15 06:52:43 +00:00
Micha Reiser
0d20ec968f
Build codspeed benchmarks by calling cargo directly ( #10735 )
2024-04-02 14:50:19 +02:00
Alex Waygood
2740fab7ad
Renovate: group all strum dependencies together ( #10714 )
2024-04-01 15:57:07 +00:00
renovate[bot]
85d59198aa
chore(deps): update tj-actions/changed-files action to v44 ( #10712 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-04-01 14:19:28 +01:00
Alex Waygood
8d547ef83a
Allow renovate to create more PRs at once ( #10695 )
2024-04-01 11:43:07 +00:00
Alex Waygood
2ea0c3dce6
Give renovate more time in which to file PRs ( #10692 )
2024-04-01 11:13:14 +00:00
Micha Reiser
877a9145ae
Group some NPM dependency updates ( #10607 )
2024-03-26 11:39:56 +01:00
Alex Waygood
21f63c57d5
Renovate: Use update-lockfile as the rangeStrategy for cargo dependencies ( #10582 )
2024-03-25 18:17:03 +00:00
Alex Waygood
bd07c13348
Get rid of SCARY SECURITY suffixes for security-related renovate PRs ( #10579 )
2024-03-25 17:57:12 +00:00
Alex Waygood
9e21e5918c
Switch from dependabot to renovate ( #10567 )
2024-03-25 17:30:11 +00:00
dependabot[bot]
bb540718c2
Bump the actions group with 1 update ( #10445 )
...
Bumps the actions group with 1 update:
[tj-actions/changed-files](https://github.com/tj-actions/changed-files ).
Updates `tj-actions/changed-files` from 42 to 43
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tj-actions/changed-files/releases ">tj-actions/changed-files's
releases</a>.</em></p>
<blockquote>
<h2>v43</h2>
<h1>Changes in v43.0.0</h1>
<h2>🔥 🔥 BREAKING CHANGE 🔥 🔥 </h2>
<ul>
<li><code>any_{changed, modified, deleted}</code> outputs now return
<code>true</code> when no file/directory patterns are specified.</li>
</ul>
<h2>What's Changed</h2>
<ul>
<li>Upgraded to v42.1.0 by <a
href="https://github.com/tj-actions-bot "><code>@tj-actions-bot</code></a>
in <a
href="https://redirect.github.com/tj-actions/changed-files/pull/1977 ">tj-actions/changed-files#1977</a></li>
<li>chore(deps): lock file maintenance by <a
href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/tj-actions/changed-files/pull/1979 ">tj-actions/changed-files#1979</a></li>
<li>chore(deps): update dependency
<code>@typescript-eslint/parser</code> to v7.2.0 by <a
href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/tj-actions/changed-files/pull/1980 ">tj-actions/changed-files#1980</a></li>
<li>chore(deps): update dependency <code>@types/node</code> to
v20.11.26 by <a
href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/tj-actions/changed-files/pull/1981 ">tj-actions/changed-files#1981</a></li>
<li>chore(deps): update dependency
<code>@typescript-eslint/eslint-plugin</code> to v7.2.0 by <a
href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/tj-actions/changed-files/pull/1982 ">tj-actions/changed-files#1982</a></li>
<li>chore(deps): update dependency <code>@types/lodash</code> to
v4.17.0 by <a
href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/tj-actions/changed-files/pull/1983 ">tj-actions/changed-files#1983</a></li>
<li>chore(deps): update peter-evans/create-pull-request action to v6.0.2
by <a href="https://github.com/renovate "><code>@renovate</code></a> in
<a
href="https://redirect.github.com/tj-actions/changed-files/pull/1984 ">tj-actions/changed-files#1984</a></li>
<li>chore(deps): update dependency <code>@types/node</code> to
v20.11.27 by <a
href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/tj-actions/changed-files/pull/1987 ">tj-actions/changed-files#1987</a></li>
<li>feat: add support for returning true for <code>any_{changed,
modified, deleted}</code> outputs when no patterns are specified by <a
href="https://github.com/jackton1 "><code>@jackton1</code></a> in <a
href="https://redirect.github.com/tj-actions/changed-files/pull/1988 ">tj-actions/changed-files#1988</a></li>
<li>Updated README.md by <a
href="https://github.com/tj-actions-bot "><code>@tj-actions-bot</code></a>
in <a
href="https://redirect.github.com/tj-actions/changed-files/pull/1989 ">tj-actions/changed-files#1989</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/tj-actions/changed-files/compare/v42...v43.0.0 ">https://github.com/tj-actions/changed-files/compare/v42...v43.0.0 </a></p>
<hr />
<h2>v43.0.0</h2>
<h2>🔥 🔥 BREAKING CHANGE 🔥 🔥 </h2>
<ul>
<li><code>any_{changed, modified, deleted}</code> outputs now return
<code>true</code> when no file/directory patterns are specified.</li>
</ul>
<h2>What's Changed</h2>
<ul>
<li>Upgraded to v42.1.0 by <a
href="https://github.com/tj-actions-bot "><code>@tj-actions-bot</code></a>
in <a
href="https://redirect.github.com/tj-actions/changed-files/pull/1977 ">tj-actions/changed-files#1977</a></li>
<li>chore(deps): lock file maintenance by <a
href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/tj-actions/changed-files/pull/1979 ">tj-actions/changed-files#1979</a></li>
<li>chore(deps): update dependency
<code>@typescript-eslint/parser</code> to v7.2.0 by <a
href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/tj-actions/changed-files/pull/1980 ">tj-actions/changed-files#1980</a></li>
<li>chore(deps): update dependency <code>@types/node</code> to
v20.11.26 by <a
href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/tj-actions/changed-files/pull/1981 ">tj-actions/changed-files#1981</a></li>
<li>chore(deps): update dependency
<code>@typescript-eslint/eslint-plugin</code> to v7.2.0 by <a
href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/tj-actions/changed-files/pull/1982 ">tj-actions/changed-files#1982</a></li>
<li>chore(deps): update dependency <code>@types/lodash</code> to
v4.17.0 by <a
href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/tj-actions/changed-files/pull/1983 ">tj-actions/changed-files#1983</a></li>
<li>chore(deps): update peter-evans/create-pull-request action to v6.0.2
by <a href="https://github.com/renovate "><code>@renovate</code></a> in
<a
href="https://redirect.github.com/tj-actions/changed-files/pull/1984 ">tj-actions/changed-files#1984</a></li>
<li>chore(deps): update dependency <code>@types/node</code> to
v20.11.27 by <a
href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/tj-actions/changed-files/pull/1987 ">tj-actions/changed-files#1987</a></li>
<li>feat: add support for returning true for <code>any_{changed,
modified, deleted}</code> outputs when no patterns are specified by <a
href="https://github.com/jackton1 "><code>@jackton1</code></a> in <a
href="https://redirect.github.com/tj-actions/changed-files/pull/1988 ">tj-actions/changed-files#1988</a></li>
<li>Updated README.md by <a
href="https://github.com/tj-actions-bot "><code>@tj-actions-bot</code></a>
in <a
href="https://redirect.github.com/tj-actions/changed-files/pull/1989 ">tj-actions/changed-files#1989</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/tj-actions/changed-files/compare/v42...v43.0.0 ">https://github.com/tj-actions/changed-files/compare/v42...v43.0.0 </a></p>
<h2>v42.1.0</h2>
<p>🚀 🚀 New Feature 🚀 🚀 </p>
<ul>
<li>Use changed-files output to run matrix jobs by simply setting the
new <code>matrix</code> input to <code>true</code>.</li>
</ul>
<p>This serves as an alias for setting the <code>json</code> input to
<code>true</code> and the <code>escape_json</code> input to
<code>false</code></p>
<pre lang="yml"><code></tr></table>
</code></pre>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/tj-actions/changed-files/blob/main/HISTORY.md ">tj-actions/changed-files's
changelog</a>.</em></p>
<blockquote>
<h1>Changelog</h1>
<h1><a
href="https://github.com/tj-actions/changed-files/compare/v42.1.0...v43.0.0 ">43.0.0</a>
- (2024-03-13)</h1>
<h2><!-- raw HTML omitted -->🚀 Features</h2>
<ul>
<li>Add support for returning true for <code>any_{changed, modified,
deleted}</code> outputs when no patterns are specified (<a
href="https://redirect.github.com/tj-actions/changed-files/issues/1988 ">#1988</a>)
(<a
href="a5cf6aa30c ">a5cf6aa</a>)
- (Tonye Jack)</li>
</ul>
<h2><!-- raw HTML omitted -->🔄 Update</h2>
<ul>
<li>Updated README.md (<a
href="https://redirect.github.com/tj-actions/changed-files/issues/1989 ">#1989</a>)</li>
</ul>
<p>Co-authored-by: repo-ranger[bot] <!-- raw HTML omitted --> (<a
href="77af4bed28 ">77af4be</a>)
- (tj-actions[bot])</p>
<h2><!-- raw HTML omitted -->⚙️ Miscellaneous Tasks</h2>
<ul>
<li><strong>deps:</strong> Update dependency <code>@types/node</code>
to v20.11.27 (<a
href="15807c9c84 ">15807c9</a>)
- (renovate[bot])</li>
<li><strong>deps:</strong> Update peter-evans/create-pull-request action
to v6.0.2 (<a
href="dc458cf753 ">dc458cf</a>)
- (renovate[bot])</li>
<li><strong>deps:</strong> Update dependency <code>@types/lodash</code>
to v4.17.0 (<a
href="92ca3eebd0 ">92ca3ee</a>)
- (renovate[bot])</li>
<li><strong>deps:</strong> Update dependency
<code>@typescript-eslint/eslint-plugin</code> to v7.2.0 (<a
href="f591d0c7f0 ">f591d0c</a>)
- (renovate[bot])</li>
<li><strong>deps:</strong> Update dependency <code>@types/node</code>
to v20.11.26 (<a
href="35023362e2 ">3502336</a>)
- (renovate[bot])</li>
<li><strong>deps:</strong> Update dependency
<code>@typescript-eslint/parser</code> to v7.2.0 (<a
href="e436cb6d85 ">e436cb6</a>)
- (renovate[bot])</li>
<li><strong>deps:</strong> Lock file maintenance (<a
href="257d47dfba ">257d47d</a>)
- (renovate[bot])</li>
</ul>
<h2><!-- raw HTML omitted -->⬆️ Upgrades</h2>
<ul>
<li>Upgraded to v42.1.0 (<a
href="https://redirect.github.com/tj-actions/changed-files/issues/1977 ">#1977</a>)</li>
</ul>
<p>Co-authored-by: jackton1 <a
href="mailto:17484350+jackton1@users.noreply.github.com ">17484350+jackton1@users.noreply.github.com </a>
(<a
href="4918e11830 ">4918e11</a>)
- (tj-actions[bot])</p>
<h1><a
href="https://github.com/tj-actions/changed-files/compare/v42.0.7...v42.1.0 ">42.1.0</a>
- (2024-03-09)</h1>
<h2><!-- raw HTML omitted -->🚀 Features</h2>
<ul>
<li>Add matrix alias to simplify using outputs for matrix jobs (<a
href="https://redirect.github.com/tj-actions/changed-files/issues/1975 ">#1975</a>)
(<a
href="008ba8ceec ">008ba8c</a>)
- (Tonye Jack)</li>
</ul>
<h2><!-- raw HTML omitted -->🔄 Update</h2>
<ul>
<li>Updated README.md (<a
href="https://redirect.github.com/tj-actions/changed-files/issues/1976 ">#1976</a>)</li>
</ul>
<p>Co-authored-by: repo-ranger[bot] <!-- raw HTML omitted --> (<a
href="aa08304bd4 ">aa08304</a>)
- (tj-actions[bot])</p>
<h2><!-- raw HTML omitted -->⬆️ Upgrades</h2>
<ul>
<li>Upgraded to v42.0.7 (<a
href="https://redirect.github.com/tj-actions/changed-files/issues/1974 ">#1974</a>)</li>
</ul>
<p>Co-authored-by: jackton1 <a
href="mailto:17484350+jackton1@users.noreply.github.com ">17484350+jackton1@users.noreply.github.com </a>
(<a
href="fe6c3ea0ca ">fe6c3ea</a>)
- (tj-actions[bot])</p>
<h1><a
href="https://github.com/tj-actions/changed-files/compare/v42.0.6...v42.0.7 ">42.0.7</a>
- (2024-03-07)</h1>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="77af4bed28 "><code>77af4be</code></a>
Updated README.md (<a
href="https://redirect.github.com/tj-actions/changed-files/issues/1989 ">#1989</a>)</li>
<li><a
href="a5cf6aa30c "><code>a5cf6aa</code></a>
feat: add support for returning true for <code>any_{changed, modified,
deleted}</code> o...</li>
<li><a
href="15807c9c84 "><code>15807c9</code></a>
chore(deps): update dependency <code>@types/node</code> to
v20.11.27</li>
<li><a
href="dc458cf753 "><code>dc458cf</code></a>
chore(deps): update peter-evans/create-pull-request action to
v6.0.2</li>
<li><a
href="92ca3eebd0 "><code>92ca3ee</code></a>
chore(deps): update dependency <code>@types/lodash</code> to
v4.17.0</li>
<li><a
href="f591d0c7f0 "><code>f591d0c</code></a>
chore(deps): update dependency
<code>@typescript-eslint/eslint-plugin</code> to v7.2.0</li>
<li><a
href="35023362e2 "><code>3502336</code></a>
chore(deps): update dependency <code>@types/node</code> to
v20.11.26</li>
<li><a
href="e436cb6d85 "><code>e436cb6</code></a>
chore(deps): update dependency <code>@typescript-eslint/parser</code>
to v7.2.0</li>
<li><a
href="257d47dfba "><code>257d47d</code></a>
chore(deps): lock file maintenance</li>
<li><a
href="4918e11830 "><code>4918e11</code></a>
Upgraded to v42.1.0 (<a
href="https://redirect.github.com/tj-actions/changed-files/issues/1977 ">#1977</a>)</li>
<li>See full diff in <a
href="https://github.com/tj-actions/changed-files/compare/v42...v43 ">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores )
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions
</details>
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-03-18 09:43:02 +01:00
KotlinIsland
05b406080a
( 🎁 ) Add issue template search terms section ( #10352 )
...
- resolves #10350
Co-authored-by: KotlinIsland <kotlinisland@users.noreply.github.com >
2024-03-12 22:32:42 -05:00
dependabot[bot]
49eb97879a
Bump the actions group with 1 update ( #10334 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-03-11 09:24:59 +00:00
Charlie Marsh
7a675cd822
Remove Maturin pin ( #10284 )
...
## Summary
As of
https://github.com/pypa/gh-action-pypi-publish/releases/tag/v1.8.13 , all
relevant dependencies have been updated to support Metadata 2.2, so we
can remove our Maturin pin.
2024-03-07 19:42:22 -05:00
Charlie Marsh
b9264a5a11
Set maturin version in release.yaml ( #10257 )
...
See: https://github.com/astral-sh/uv/pull/2219
2024-03-06 21:50:40 +00:00
dependabot[bot]
ba4328226d
Bump the actions group with 1 update ( #10224 )
...
Bumps the actions group with 1 update:
[extractions/setup-just](https://github.com/extractions/setup-just ).
Updates `extractions/setup-just` from 1 to 2
<details>
<summary>Commits</summary>
<ul>
<li><a
href="dd310ad5a9 "><code>dd310ad</code></a>
This is 2.0.0</li>
<li><a
href="b88c09d1cb "><code>b88c09d</code></a>
Upgrade GitHub Actions</li>
<li><a
href="dcec242065 "><code>dcec242</code></a>
Upgrade dependencies</li>
<li><a
href="fbd91a81bd "><code>fbd91a8</code></a>
Use Node v20</li>
<li><a
href="502448742b "><code>5024487</code></a>
Build: just v1.23.0 (<a
href="https://redirect.github.com/extractions/setup-just/issues/15 ">#15</a>)</li>
<li><a
href="1b96160c16 "><code>1b96160</code></a>
doc: Fix invalid GHA syntax in github-token example (<a
href="https://redirect.github.com/extractions/setup-just/issues/12 ">#12</a>)</li>
<li>See full diff in <a
href="https://github.com/extractions/setup-just/compare/v1...v2 ">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores )
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions
</details>
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-03-04 10:01:07 +01:00
Alex Waygood
0421c41ff7
Add Alex Waygood as a CODEOWNER for flake8-pyi ( #10129 )
2024-02-26 10:25:46 +00:00
Micha Reiser
bd98d6884b
Upgrade upload/download artifact actions in release workflow ( #10105 )
2024-02-26 08:23:10 +01:00
Micha Reiser
36d8b03b5f
Upgrade upload/download artifact actions in CI.yaml workflow ( #10104 )
2024-02-23 21:36:28 +01:00
Micha Reiser
8c20f14e62
Set PowerPC Page Size to 64KB ( #10080 )
2024-02-23 08:32:21 +01:00
Micha Reiser
ee4efdba96
Fix ecosystem ( #10064 )
2024-02-20 16:54:50 +01:00
Micha Reiser
4ac19993cf
Add Micha as owner to formatter and parser ( #10048 )
2024-02-19 10:26:12 +00:00
dependabot[bot]
90f8e4baf4
Bump the actions group with 1 update ( #9943 )
2024-02-12 12:05:31 -05:00
Micha Reiser
341c2698a7
Run doctests as part of CI pipeline ( #9939 )
2024-02-12 10:18:58 +01:00
Charlie Marsh
af2cba7c0a
Migrate to nextest ( #9921 )
...
## Summary
We've had success with `nextest` in other projects, so lets migrate
Ruff.
The Linux tests look a little bit faster (from 2m32s down to 2m8s), the
Windows tests look a little bit slower but not dramatically so.
2024-02-10 18:58:56 +00:00
Micha Reiser
49c5e715f9
Filter out test rules in RuleSelector JSON schema ( #9901 )
2024-02-08 21:06:51 +00:00
Charlie Marsh
73902323d5
Revert "Use publicly available Apple Silicon runners ( #9726 )" ( #9834 )
...
## Summary
Sadly, the Apple Silicon runners use macOS 14 and produce binaries that
segfault when run on macOS 11 (at least), and possibly on macOS 12
and/or macOS 13.
macOS 11 is EOL, but it doesn't seem like a good tradeoff to speed up
our release builds at the expense of user support and compatibility.
This reverts commit f0066e1b89 .
Closes https://github.com/astral-sh/ruff/issues/9823 .
2024-02-05 11:24:51 -05:00