Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 8, 2025

This PR contains the following updates:

Package Type Update Change Pending Age Confidence
astral-sh/ruff-pre-commit repository patch v0.14.7 -> v0.14.8 age confidence
astral-sh/uv-pre-commit repository patch 0.9.13 -> 0.9.16 0.9.17 age confidence
black (changelog) minor ==25.11.0 -> ==25.12.0 age confidence
black (changelog) dependency-groups minor 25.11.0 -> 25.12.0 age confidence
black (changelog) project.dependencies minor 25.11.0 -> 25.12.0 age confidence
ipython dependency-groups minor 9.7.0 -> 9.8.0 age confidence
platformdirs (changelog) patch ==4.5.0 -> ==4.5.1 age confidence
tombi-toml/tombi-pre-commit repository patch v0.7.0 -> v0.7.4 age confidence
lockFileMaintenance All locks refreshed
prettier (source) devDependencies patch 3.7.2 -> 3.7.4 age confidence
pytest (changelog) dependency-groups patch 9.0.1 -> 9.0.2 age confidence

Note: The pre-commit manager in Renovate is not supported by the pre-commit maintainers or community. Please do not report any problems there, instead create a Discussion in the Renovate repository if you have any questions.


Release Notes

astral-sh/ruff-pre-commit (astral-sh/ruff-pre-commit)

v0.14.8

Compare Source

See: https://github.com/astral-sh/ruff/releases/tag/0.14.8

astral-sh/uv-pre-commit (astral-sh/uv-pre-commit)

v0.9.16

Compare Source

See: https://github.com/astral-sh/uv/releases/tag/0.9.16

v0.9.15

Compare Source

See: https://github.com/astral-sh/uv/releases/tag/0.9.15

v0.9.14

Compare Source

See: https://github.com/astral-sh/uv/releases/tag/0.9.14

psf/black (black)

v25.12.0

Compare Source

Highlights
  • Black no longer supports running with Python 3.9 (#​4842)
Stable style
  • Fix bug where comments preceding # fmt: off/# fmt: on blocks were incorrectly
    removed, particularly affecting Jupytext's # %% [markdown] comments (#​4845)
  • Fix crash when multiple # fmt: skip comments are used in a multi-part if-clause, on
    string literals, or on dictionary entries with long lines (#​4872)
  • Fix possible crash when fmt: directives aren't on the top level (#​4856)
Preview style
  • Fix fmt: skip skipping the line after instead of the line it's on (#​4855)
  • Remove unnecessary parentheses from the left-hand side of assignments while preserving
    magic trailing commas and intentional multiline formatting (#​4865)
  • Fix fix_fmt_skip_in_one_liners crashing on with statements (#​4853)
  • Fix fix_fmt_skip_in_one_liners crashing on annotated parameters (#​4854)
  • Fix new lines being added after imports with # fmt: skip on them (#​4894)
Packaging
  • Releases now include arm64 Windows binaries and wheels (#​4814)
Integrations
  • Add output-file input to GitHub Action psf/black to write formatter output to a
    file for artifact capture and log cleanliness (#​4824)
ipython/ipython (ipython)

v9.8.0

Compare Source

tox-dev/platformdirs (platformdirs)

v4.5.1

Compare Source

What's Changed

Full Changelog: tox-dev/platformdirs@4.5.0...4.5.1

tombi-toml/tombi-pre-commit (tombi-toml/tombi-pre-commit)

v0.7.4

Compare Source

See: https://github.com/tombi-toml/tombi/releases/tag/v0.7.4

v0.7.3

Compare Source

See: https://github.com/tombi-toml/tombi/releases/tag/v0.7.3

v0.7.2

Compare Source

See: https://github.com/tombi-toml/tombi/releases/tag/v0.7.2

v0.7.1

Compare Source

See: https://github.com/tombi-toml/tombi/releases/tag/v0.7.1

prettier/prettier (prettier)

v3.7.4

Compare Source

diff

LWC: Avoid quote around interpolations (#​18383 by @​kovsu)
<!-- Input -->
<div foo={bar}>   </div>

<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>

<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>
TypeScript: Fix comment inside union type gets duplicated (#​18393 by @​fisker)
// Input
type Foo = (/** comment */ a | b) | c;

// Prettier 3.7.3
type Foo = /** comment */ (/** comment */ a | b) | c;

// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;
TypeScript: Fix unstable comment print in union type comments (#​18395 by @​fisker)
// Input
type X = (A | B) & (
  // comment
  A | B
);

// Prettier 3.7.3 (first format)
type X = (A | B) &
  (// comment
  A | B);

// Prettier 3.7.3 (second format)
type X = (
  | A
  | B // comment
) &
  (A | B);

// Prettier 3.7.4
type X = (A | B) &
  // comment
  (A | B);

v3.7.3

Compare Source

diff

API: Fix prettier.getFileInfo() change that breaks VSCode extension (#​18375 by @​fisker)

An internal refactor accidentally broke the VSCode extension plugin loading.

pytest-dev/pytest (pytest)

v9.0.2

Compare Source

pytest 9.0.2 (2025-12-06)

Bug fixes

  • #​13896: The terminal progress feature added in pytest 9.0.0 has been disabled by default, except on Windows, due to compatibility issues with some terminal emulators.

    You may enable it again by passing -p terminalprogress. We may enable it by default again once compatibility improves in the future.

    Additionally, when the environment variable TERM is dumb, the escape codes are no longer emitted, even if the plugin is enabled.

  • #​13904: Fixed the TOML type of the tmp_path_retention_count settings in the API reference from number to string.

  • #​13946: The private config.inicfg attribute was changed in a breaking manner in pytest 9.0.0.
    Due to its usage in the ecosystem, it is now restored to working order using a compatibility shim.
    It will be deprecated in pytest 9.1 and removed in pytest 10.

  • #​13965: Fixed quadratic-time behavior when handling unittest subtests in Python 3.10.

Improved documentation

  • #​4492: The API Reference now contains cross-reference-able documentation of pytest's command-line flags <command-line-flags>.

Configuration

📅 Schedule: Branch creation - "before 4am on monday" in timezone UTC, Automerge - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) in timezone UTC.

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@ssbarnea ssbarnea disabled auto-merge December 10, 2025 11:51
@ssbarnea ssbarnea merged commit 6aec17d into main Dec 10, 2025
20 of 22 checks passed
@ssbarnea ssbarnea deleted the renovate/all branch December 10, 2025 11:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

Archived in project

Development

Successfully merging this pull request may close these issues.

2 participants