[PR #4369] [MERGED] chore(deps): bump black from 24.4.2 to 24.8.0 in /backend #21476

Closed
opened 2026-04-20 03:32:27 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/4369
Author: @dependabot[bot]
Created: 8/5/2024
Status: Merged
Merged: 8/5/2024
Merged by: @tjbck

Base: devHead: dependabot/pip/backend/dev/black-24.8.0


📝 Commits (1)

  • d8498aa chore(deps): bump black from 24.4.2 to 24.8.0 in /backend

📊 Changes

1 file changed (+1 additions, -1 deletions)

View changed files

📝 backend/requirements.txt (+1 -1)

📄 Description

Bumps black from 24.4.2 to 24.8.0.

Release notes

Sourced from black's releases.

24.8.0

Stable style

  • Fix crash when # fmt: off is used before a closing parenthesis or bracket. (#4363)

Packaging

  • Packaging metadata updated: docs are explictly linked, the issue tracker is now also linked. This improves the PyPI listing for Black. (#4345)

Parser

  • Fix regression where Black failed to parse a multiline f-string containing another multiline string (#4339)
  • Fix regression where Black failed to parse an escaped single quote inside an f-string (#4401)
  • Fix bug with Black incorrectly parsing empty lines with a backslash (#4343)
  • Fix bugs with Black's tokenizer not handling \{ inside f-strings very well (#4422)
  • Fix incorrect line numbers in the tokenizer for certain tokens within f-strings (#4423)

Performance

  • Improve performance when a large directory is listed in .gitignore (#4415)

Blackd

  • Fix blackd (and all extras installs) for docker container (#4357)
Changelog

Sourced from black's changelog.

24.8.0

Stable style

  • Fix crash when # fmt: off is used before a closing parenthesis or bracket. (#4363)

Packaging

  • Packaging metadata updated: docs are explictly linked, the issue tracker is now also linked. This improves the PyPI listing for Black. (#4345)

Parser

  • Fix regression where Black failed to parse a multiline f-string containing another multiline string (#4339)
  • Fix regression where Black failed to parse an escaped single quote inside an f-string (#4401)
  • Fix bug with Black incorrectly parsing empty lines with a backslash (#4343)
  • Fix bugs with Black's tokenizer not handling \{ inside f-strings very well (#4422)
  • Fix incorrect line numbers in the tokenizer for certain tokens within f-strings (#4423)

Performance

  • Improve performance when a large directory is listed in .gitignore (#4415)

Blackd

  • Fix blackd (and all extras installs) for docker container (#4357)
Commits
  • b965c2a Prepare release 24.8.0 (#4426)
  • 9ccf279 Document find_project_root ignoring pyproject.toml without [tool.black]...
  • 14b6e61 fix: Enhace black efficiently to skip directories listed in .gitignore (#4415)
  • b1c4dd9 fix: respect braces better in f-string parsing (#4422)
  • 4b4ae43 Fix incorrect linenos on fstring tokens with escaped newlines (#4423)
  • 7fa1faf docs: fix the installation command of extra for blackd (#4413)
  • 8827acc Bump sphinx from 7.3.7 to 7.4.0 in /docs (#4404)
  • b0da11d Bump furo from 2024.5.6 to 2024.7.18 in /docs (#4409)
  • 721dff5 fix: avoid formatting backslash strings inside f-strings (#4401)
  • 7e2afc9 Update actions/checkout to v4 to stop node deprecation warnings (#4379)
  • Additional commits viewable in compare view

Dependabot compatibility score

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 commands and options

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/open-webui/open-webui/pull/4369 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 8/5/2024 **Status:** ✅ Merged **Merged:** 8/5/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `dev` ← **Head:** `dependabot/pip/backend/dev/black-24.8.0` --- ### 📝 Commits (1) - [`d8498aa`](https://github.com/open-webui/open-webui/commit/d8498aa2b0061535af426ff04a3c1d8c00e06ee3) chore(deps): bump black from 24.4.2 to 24.8.0 in /backend ### 📊 Changes **1 file changed** (+1 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `backend/requirements.txt` (+1 -1) </details> ### 📄 Description Bumps [black](https://github.com/psf/black) from 24.4.2 to 24.8.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/psf/black/releases">black's releases</a>.</em></p> <blockquote> <h2>24.8.0</h2> <h3>Stable style</h3> <ul> <li>Fix crash when <code># fmt: off</code> is used before a closing parenthesis or bracket. (<a href="https://redirect.github.com/psf/black/issues/4363">#4363</a>)</li> </ul> <h3>Packaging</h3> <ul> <li>Packaging metadata updated: docs are explictly linked, the issue tracker is now also linked. This improves the PyPI listing for Black. (<a href="https://redirect.github.com/psf/black/issues/4345">#4345</a>)</li> </ul> <h3>Parser</h3> <ul> <li>Fix regression where Black failed to parse a multiline f-string containing another multiline string (<a href="https://redirect.github.com/psf/black/issues/4339">#4339</a>)</li> <li>Fix regression where Black failed to parse an escaped single quote inside an f-string (<a href="https://redirect.github.com/psf/black/issues/4401">#4401</a>)</li> <li>Fix bug with Black incorrectly parsing empty lines with a backslash (<a href="https://redirect.github.com/psf/black/issues/4343">#4343</a>)</li> <li>Fix bugs with Black's tokenizer not handling <code>\{</code> inside f-strings very well (<a href="https://redirect.github.com/psf/black/issues/4422">#4422</a>)</li> <li>Fix incorrect line numbers in the tokenizer for certain tokens within f-strings (<a href="https://redirect.github.com/psf/black/issues/4423">#4423</a>)</li> </ul> <h3>Performance</h3> <ul> <li>Improve performance when a large directory is listed in <code>.gitignore</code> (<a href="https://redirect.github.com/psf/black/issues/4415">#4415</a>)</li> </ul> <h3><em>Blackd</em></h3> <ul> <li>Fix blackd (and all extras installs) for docker container (<a href="https://redirect.github.com/psf/black/issues/4357">#4357</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/psf/black/blob/main/CHANGES.md">black's changelog</a>.</em></p> <blockquote> <h2>24.8.0</h2> <h3>Stable style</h3> <ul> <li>Fix crash when <code># fmt: off</code> is used before a closing parenthesis or bracket. (<a href="https://redirect.github.com/psf/black/issues/4363">#4363</a>)</li> </ul> <h3>Packaging</h3> <ul> <li>Packaging metadata updated: docs are explictly linked, the issue tracker is now also linked. This improves the PyPI listing for Black. (<a href="https://redirect.github.com/psf/black/issues/4345">#4345</a>)</li> </ul> <h3>Parser</h3> <ul> <li>Fix regression where Black failed to parse a multiline f-string containing another multiline string (<a href="https://redirect.github.com/psf/black/issues/4339">#4339</a>)</li> <li>Fix regression where Black failed to parse an escaped single quote inside an f-string (<a href="https://redirect.github.com/psf/black/issues/4401">#4401</a>)</li> <li>Fix bug with Black incorrectly parsing empty lines with a backslash (<a href="https://redirect.github.com/psf/black/issues/4343">#4343</a>)</li> <li>Fix bugs with Black's tokenizer not handling <code>\{</code> inside f-strings very well (<a href="https://redirect.github.com/psf/black/issues/4422">#4422</a>)</li> <li>Fix incorrect line numbers in the tokenizer for certain tokens within f-strings (<a href="https://redirect.github.com/psf/black/issues/4423">#4423</a>)</li> </ul> <h3>Performance</h3> <ul> <li>Improve performance when a large directory is listed in <code>.gitignore</code> (<a href="https://redirect.github.com/psf/black/issues/4415">#4415</a>)</li> </ul> <h3><em>Blackd</em></h3> <ul> <li>Fix blackd (and all extras installs) for docker container (<a href="https://redirect.github.com/psf/black/issues/4357">#4357</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/psf/black/commit/b965c2a5026f8ba399283ba3e01898b012853c79"><code>b965c2a</code></a> Prepare release 24.8.0 (<a href="https://redirect.github.com/psf/black/issues/4426">#4426</a>)</li> <li><a href="https://github.com/psf/black/commit/9ccf279a17ff19cc51f62c60fc88ba46e615d202"><code>9ccf279</code></a> Document <code>find_project_root</code> ignoring <code>pyproject.toml</code> without <code>[tool.black]</code>...</li> <li><a href="https://github.com/psf/black/commit/14b6e619704e6d81749f0a23060750ee0a5fcc40"><code>14b6e61</code></a> fix: Enhace black efficiently to skip directories listed in .gitignore (<a href="https://redirect.github.com/psf/black/issues/4415">#4415</a>)</li> <li><a href="https://github.com/psf/black/commit/b1c4dd96d769cb3ac3c8fc057e8dc60907b84c17"><code>b1c4dd9</code></a> fix: respect braces better in f-string parsing (<a href="https://redirect.github.com/psf/black/issues/4422">#4422</a>)</li> <li><a href="https://github.com/psf/black/commit/4b4ae43e8b66a2eab2d41a73364745c2a4570287"><code>4b4ae43</code></a> Fix incorrect linenos on fstring tokens with escaped newlines (<a href="https://redirect.github.com/psf/black/issues/4423">#4423</a>)</li> <li><a href="https://github.com/psf/black/commit/7fa1faf83af513e09c44e029da573c6b0b2bd570"><code>7fa1faf</code></a> docs: fix the installation command of extra for blackd (<a href="https://redirect.github.com/psf/black/issues/4413">#4413</a>)</li> <li><a href="https://github.com/psf/black/commit/8827accf560c7be418000962565f1fd6fa7b01cb"><code>8827acc</code></a> Bump sphinx from 7.3.7 to 7.4.0 in /docs (<a href="https://redirect.github.com/psf/black/issues/4404">#4404</a>)</li> <li><a href="https://github.com/psf/black/commit/b0da11d370adb5730fd45594cc89b1dc816786ea"><code>b0da11d</code></a> Bump furo from 2024.5.6 to 2024.7.18 in /docs (<a href="https://redirect.github.com/psf/black/issues/4409">#4409</a>)</li> <li><a href="https://github.com/psf/black/commit/721dff549362f54930ecc038218dcc40e599a875"><code>721dff5</code></a> fix: avoid formatting backslash strings inside f-strings (<a href="https://redirect.github.com/psf/black/issues/4401">#4401</a>)</li> <li><a href="https://github.com/psf/black/commit/7e2afc9bfdc4ec4bc3297aaa16a62d575249a5e0"><code>7e2afc9</code></a> Update <code>actions/checkout</code> to v4 to stop node deprecation warnings (<a href="https://redirect.github.com/psf/black/issues/4379">#4379</a>)</li> <li>Additional commits viewable in <a href="https://github.com/psf/black/compare/24.4.2...24.8.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=black&package-manager=pip&previous-version=24.4.2&new-version=24.8.0)](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 this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-20 03:32:27 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#21476