chore(deps-dev): update ruff requirement from ^0.6 to ^0.13 #186
Annotations
2 errors and 4 warnings
|
update
HttpError: <html>
<head><title>502 Bad Gateway</title></head>
<body>
<center><h1>502 Bad Gateway</h1></center>
<hr><center>nginx</center>
</body>
</html>
at /home/runner/work/_actions/release-drafter/release-drafter/v6/dist/index.js:7146:21
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
at async Job.doExecute (/home/runner/work/_actions/release-drafter/release-drafter/v6/dist/index.js:61885:18)
{
name: 'AggregateError',
event: {
id: '17766920195',
name: 'pull_request',
payload: {
action: 'edited',
changes: {
body: {
from: '[//]: # (dependabot-start)\n' +
'⚠️ **Dependabot is rebasing this PR** ⚠️ \n' +
'\n' +
"Rebasing might not happen immediately, so don't worry if this takes some time.\n" +
'\n' +
'Note: if you make any changes to this PR yourself, they will take precedence over the rebase.\n' +
'\n' +
'---\n' +
'\n' +
'[//]: # (dependabot-end)\n' +
'\n' +
'Updates the requirements on [ruff](https://github.com/astral-sh/ruff) to permit the latest version.\n' +
'<details>\n' +
'<summary>Release notes</summary>\n' +
`<p><em>Sourced from <a href="https://github.com/astral-sh/ruff/releases">ruff's releases</a>.</em></p>\n` +
'<blockquote>\n' +
'<h2>0.13.0</h2>\n' +
'<h2>Release Notes</h2>\n' +
'<p>Check out the <a href="https://astral.sh/blog/ruff-v0.13.0">blog post</a> for a migration guide and overview of the changes!</p>\n' +
'<h3>Breaking changes</h3>\n' +
'<ul>\n' +
'<li>\n' +
'<p><strong>Several rules can now add <code>from __future__ import annotations</code> automatically</strong></p>\n' +
'<p><code>TC001</code>, <code>TC002</code>, <code>TC003</code>, <code>RUF013</code>, and <code>UP037</code> now add <code>from __future__ import annotations</code> as part of their fixes when the <code>lint.future-annotations</code> setting is enabled. This allows the rules to move more imports into <code>TYPE_CHECKING</code> blocks (<code>TC001</code>, <code>TC002</code>, and <code>TC003</code>), use PEP 604 union syntax on Python versions before 3.10 (<code>RUF013</code>), and unquote more annotations (<code>UP037</code>).</p>\n' +
'</li>\n' +
'<li>\n' +
'<p><strong>Full module paths are now used to verify first-party modules</strong></p>\n' +
'<p>Ruff now checks that the full path to a module exists on disk before categorizing it as a first-party import. This change makes first-party import detection more accurate, helping to avoid false positives on local directories with the same name as a third-party dependency, for example. See the <a href="https://docs.astral.sh/ruff/faq/#how-does-ruff-determine-which-of-my-imports-are-first-party-third-party-etc">FAQ section</a> on import categorization for more details.</p>\n' +
'</li>\n' +
'<li>\n' +
'<p><strong>Deprecated rules must now be selected by exact rule code</strong></p>\n' +
"<p>Ruff will no longer activate deprecated rules selected by their group name or prefix. As noted below, the two remaining deprecated rules were also removed in this release, so this won't affect any current rules, but it will still affect any deprecations in the future.</p>\n" +
'</li>\n' +
'<li>\n' +
'<p><strong>The deprecated macOS configuration directory fallback has been removed</strong></p>\n' +
'<p>Ruff will no longer look for a user-level configuration file at <code>~/Library/Application Support/ruff/ruff.toml</code> on macOS. This feature was deprecated in v0.5 in favor of using the <a href="https://specifications.freedesktop.org/basedir-spec/latest/">XDG specification</a> (usually resolving to <code>~/.config/ruff/ruff.toml</code>), like on Linux. The
|
|
update
<html>
<head><title>502 Bad Gateway</title></head>
<body>
<center><h1>502 Bad Gateway</h1></center>
<hr><center>nginx</center>
</body>
</html>
{
name: 'HttpError',
id: '17766920195',
status: 502,
response: {
url: 'https://api.github.com/graphql',
status: 502,
headers: {
'content-length': '150',
'content-type': 'text/html',
date: 'Tue, 16 Sep 2025 13:12:42 GMT',
server: 'github.com',
vary: 'Accept-Encoding, Accept, X-Requested-With',
'x-github-request-id': '1840:1DA957:361F583:377CC82:68C96240'
},
data: '<html>\r\n' +
'<head><title>502 Bad Gateway</title></head>\r\n' +
'<body>\r\n' +
'<center><h1>502 Bad Gateway</h1></center>\r\n' +
'<hr><center>nginx</center>\r\n' +
'</body>\r\n' +
'</html>\r\n'
},
request: {
method: 'POST',
url: 'https://api.github.com/graphql',
headers: {
accept: 'application/vnd.github.v3+json',
'user-agent': 'probot/12.4.0 octokit-core.js/3.6.0 Node.js/20.19.4 (linux; x64)',
'x-github-delivery': '17766920195',
authorization: 'token [REDACTED]',
'content-type': 'application/json; charset=utf-8'
},
body: '{"query":"\\n query findCommitsWithAssociatedPullRequests(\\n $name: String!\\n $owner: String!\\n $targetCommitish: String!\\n $withPullRequestBody: Boolean!\\n $withPullRequestURL: Boolean!\\n $since: GitTimestamp\\n $after: String\\n $withBaseRefName: Boolean!\\n $withHeadRefName: Boolean!\\n $pullRequestLimit: Int!\\n ) {\\n repository(name: $name, owner: $owner) {\\n object(expression: $targetCommitish) {\\n ... on Commit {\\n history(first: 100, since: $since, after: $after) {\\n totalCount\\n pageInfo {\\n hasNextPage\\n endCursor\\n }\\n nodes {\\n id\\n committedDate\\n message\\n author {\\n name\\n user {\\n login\\n }\\n }\\n associatedPullRequests(first: $pullRequestLimit) {\\n nodes {\\n title\\n number\\n url @include(if: $withPullRequestURL)\\n body @include(if: $withPullRequestBody)\\n author {\\n login\\n __typename\\n url\\n }\\n baseRepository {\\n nameWithOwner\\n }\\n mergedAt\\n isCrossRepository\\n labels(first: 100) {\\n nodes {\\n name\\n }\\n }\\n merged\\n baseRefName @include(if: $withBaseRefName)\\n headRefName @include(if: $withHeadRefName)\\n }\\n }\\n }\\n }\\n }\\n }\\n }\\n }\\n","variables":{"name":"diff-risk-dashboard","owner":"CoderDeltaLAN","targetCommitish":"refs/pull/3/merge","withPullRequestBody":false,"withPullRequestURL":false,"withBaseRefName":false,"withHeadRefName":false,"pullRequestLimit":5,"since":"2025-09-13T14:26:49Z"}}',
request: { retryCount: 3, retries: 3, retryAfter: 16 }
},
event: {
id: '17766920195',
name: 'pull_request',
payload: {
action: 'edited',
changes: {
body: {
from: '[//]: # (dependabot-start)\n' +
'⚠️ **Dependabot is rebasing this PR** ⚠️ \n' +
'\n' +
"Rebasing might not happen immediately, so don't worry if this takes some time.\n" +
'\n' +
'Note: if you make any changes to this PR yourself, they will take precedence over the rebase.\n' +
'\n' +
'---\n' +
'\n' +
'[//]: # (dependabot-end)\n' +
'\n' +
'Updates the requirements on [ruff](https://github.com/astral-sh/ruff) to per
|
|
update
"pull_request_target.edited" is not a known webhook name (https://developer.github.com/v3/activity/events/types/)
|
|
update
"pull_request_target.synchronize" is not a known webhook name (https://developer.github.com/v3/activity/events/types/)
|
|
update
"pull_request_target.reopened" is not a known webhook name (https://developer.github.com/v3/activity/events/types/)
|
|
update
"pull_request_target.opened" is not a known webhook name (https://developer.github.com/v3/activity/events/types/)
|