Skip to content

Bump the "dependencies" group with 2 updates across multiple ecosystems - #264

Merged
kattni merged 1 commit into
mainfrom
dependabot/dependencies-01d0fecf48
Aug 9, 2026
Merged

Bump the "dependencies" group with 2 updates across multiple ecosystems#264
kattni merged 1 commit into
mainfrom
dependabot/dependencies-01d0fecf48

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 9, 2026

Copy link
Copy Markdown
Contributor

Bumps the dependencies group with 2 updates: ruff and translate-toolkit.

Updates ruff from 0.16.0 to 0.16.1

Release notes

Sourced from ruff's releases.

0.16.1

Release Notes

Released on 2026-07-30.

Preview features

  • Add an option to opt out of human-readable names (#27160)
  • [flake8-pytest-style] Make fixes safe by default and unsafe only when comments are present (PT018) (#27201)
  • [pyupgrade] Skip fix when a defaulted TypeVar precedes a non-defaulted one (UP040, UP046, UP047) (#27133)
  • [ruff] Fix false positive with unpacked arguments (RUF065) (#26959)

Bug fixes

  • Bump gen-lsp-types to gracefully handle unknown enumeration values in LSP messages (#27230)
  • [flake8-bugbear] Mark range as immutable (B008) (#27247)
  • [flake8-comprehensions] NFKC-normalize keyword names in C408 fix (#26813)
  • [flake8-return] Fix false positive when variable is read in finally clause (RET504) (#25441)
  • [pydocstyle] Skip section detection inside RST directive bodies (D214, D405, D413) (#23635)
  • [refurb] Parenthesize yield arguments in the FURB192 fix (#27192)

Rule changes

  • [flake8-pytest-style] Mark PT022 fixes as unsafe (#26440)
  • [refurb] Mark fixes that remove unknown separators as unsafe (FURB105) (#27200)

Server

  • Fix indexing of excluded nested Ruff workspaces (#27303)
  • Lint TOML files in the LSP (#26862)

Documentation

  • Cover pycon Markdown formatting (#27153)
  • [flake8-bandit] Document TYPE_CHECKING exception (S101) (#27004)
  • [flake8-import-conventions] Document that extend-aliases can override default aliases (#27191)
  • [pylint] Add missing fix safety gotchas for non-augmented-assignment (PLR6104) (#27250)

Other changes

  • Reduce syntax error noise by swallowing dedents like indents (#27170)
  • Vendor latest annotate-snippets (#27033)

Contributors

... (truncated)

Changelog

Sourced from ruff's changelog.

0.16.1

Released on 2026-07-30.

Preview features

  • Add an option to opt out of human-readable names (#27160)
  • [flake8-pytest-style] Make fixes safe by default and unsafe only when comments are present (PT018) (#27201)
  • [pyupgrade] Skip fix when a defaulted TypeVar precedes a non-defaulted one (UP040, UP046, UP047) (#27133)
  • [ruff] Fix false positive with unpacked arguments (RUF065) (#26959)

Bug fixes

  • Bump gen-lsp-types to gracefully handle unknown enumeration values in LSP messages (#27230)
  • [flake8-bugbear] Mark range as immutable (B008) (#27247)
  • [flake8-comprehensions] NFKC-normalize keyword names in C408 fix (#26813)
  • [flake8-return] Fix false positive when variable is read in finally clause (RET504) (#25441)
  • [pydocstyle] Skip section detection inside RST directive bodies (D214, D405, D413) (#23635)
  • [refurb] Parenthesize yield arguments in the FURB192 fix (#27192)

Rule changes

  • [flake8-pytest-style] Mark PT022 fixes as unsafe (#26440)
  • [refurb] Mark fixes that remove unknown separators as unsafe (FURB105) (#27200)

Server

  • Fix indexing of excluded nested Ruff workspaces (#27303)
  • Lint TOML files in the LSP (#26862)

Documentation

  • Cover pycon Markdown formatting (#27153)
  • [flake8-bandit] Document TYPE_CHECKING exception (S101) (#27004)
  • [flake8-import-conventions] Document that extend-aliases can override default aliases (#27191)
  • [pylint] Add missing fix safety gotchas for non-augmented-assignment (PLR6104) (#27250)

Other changes

  • Reduce syntax error noise by swallowing dedents like indents (#27170)
  • Vendor latest annotate-snippets (#27033)

Contributors

... (truncated)

Commits
  • 80790b3 Bump 0.16.1 (#27330)
  • 63830f3 [ty] Borrow from constraint set storage less often (#27328)
  • f40dca9 [ty] Preserve forwarded expanded-variadic diagnostic sources (#27266)
  • 0d80497 Lint TOML files in the LSP (#26862)
  • d91586b Update prek dependencies (#27293)
  • 7da4b8b [ty] Respect bounds and constraints in generic materializations (#27228)
  • b20daf7 [ty] refactor: add helper function to send partial results (#27249)
  • 4d4c8fa [ty] Emit diagnostic when specializing a non-generic class (#26883)
  • 7c3e2db [ty] Fix enum class container assignability (#27318)
  • d5ef97f [flake8-return] Fix false positive when variable is read in finally claus...
  • Additional commits viewable in compare view

Updates translate-toolkit from 3.19.15 to 3.19.17

Release notes

Sourced from translate-toolkit's releases.

3.19.17

Released on 31 July 2026

This release contains bug fixes.

Changes

Formats and Converters

  • catkeys
    • Omit untranslated units when serializing catalogs
  • DTD
    • Preserve apostrophe entities during round trips
  • Markdown
    • Avoid applying stale YAML folded scalar offsets to translated content
  • RC
    • Preserve inline comments next to their original controls in po2rc
  • TS
    • Preserve disambiguation, developer guidance, and translator comment types during PO conversion

Other

  • Handle source changes from scalar values to nested containers without serialization errors

Contributors

This release was made possible by the following contributors:

Michal Čihař

3.19.16

Released on 30 July 2026

This release contains improvements and bug fixes.

Changes

Formats and Converters

  • Markdown and MDX
    • Preserve explicit heading IDs outside translatable content
    • Retain compatibility with existing catalogs that include heading IDs
  • ODF
    • Add odf2po and po2odf converters
    • Support translation of styles, metadata, and embedded ODF objects
    • Preserve package members and metadata when creating translated documents

... (truncated)

Commits
  • 313f2cc chore: release 3.19.17
  • 0411fb6 fix(dtd): round-trip apostrophe entities
  • 50e6b42 fix(markdown): avoid stale folded scalar offsets
  • 237dfcf fix(ts): preserve comment types in PO conversion
  • 5ee5bea fix(catkeys): omit untranslated units
  • 7bd9ae3 fix(po2rc): preserve inline RC comments
  • 3744946 fix(storage): handle scalar container transitions
  • 3fc5809 chore: bump version to 3.19.16
  • ccf2eff fix(placeables): recognise XML tags with unquoted attribute values
  • 894b64f fix(po2xliff): propagate target language from PO header (#6459)
  • Additional commits viewable in compare view

Bumps the dependencies group with 3 updates: https://github.com/astral-sh/ruff-pre-commit, https://github.com/rvben/rumdl-pre-commit and https://github.com/zizmorcore/zizmor-pre-commit.

Updates https://github.com/astral-sh/ruff-pre-commit from v0.16.0 to 0.16.1

Release notes

Sourced from https://github.com/astral-sh/ruff-pre-commit's releases.

v0.16.1

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

Commits

Updates https://github.com/rvben/rumdl-pre-commit from v0.2.43 to 0.2.48

Release notes

Sourced from https://github.com/rvben/rumdl-pre-commit's releases.

v0.2.48

See: https://github.com/rvben/rumdl/releases/tag/v0.2.48

v0.2.47

See: https://github.com/rvben/rumdl/releases/tag/v0.2.47

v0.2.46

See: https://github.com/rvben/rumdl/releases/tag/v0.2.46

v0.2.45

See: https://github.com/rvben/rumdl/releases/tag/v0.2.45

v0.2.44

See: https://github.com/rvben/rumdl/releases/tag/v0.2.44

Commits

Updates https://github.com/zizmorcore/zizmor-pre-commit from v1.28.0 to 1.29.0

Release notes

Sourced from https://github.com/zizmorcore/zizmor-pre-commit's releases.

v1.29.0

New Features 🌈🔗

  • zizmor now has experimental support for auditing pre-commit inputs, meaning both pre-commit configuration and hook definitions (#2209)

  • New audit: insecure-url-scheme detects usages of insecure (i.e. plaintext) protocols when making network requests. The initial version of this audit is limited to pre-commit inputs only (#2228)

  • zizmor now supports GitHub's "self-repository" reference syntax for local actions, e.g. uses: $/foo/bar instead of a manual checkout and uses: ./foo/bar (#2248)

Changes ⚠️🔗

Removals 🌅🔗

  • --collect=workflows-only and --collect=actions-only have been fully removed. Use --collect=workflows and --collect=actions for the replacement behavior (#2242)

Bug Fixes 🐛🔗

  • Fixed a bug where zizmor would reject a valid workflow definition for containing a literal jobs..outputs. value for being a non-string (#2220)

  • Fixed a bug where the github-app audit would incorrectly flag some usages as needing a repositories: key, despite requesting organization-level-only permissions (#2227)

  • Fixed a class of bugs where zizmor would discover the user's configuration in unintuitive ways. When auditing from a Git repository, zizmor now uses the repository root to discover configuration consistently (#2234)

Commits

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 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

Bumps the dependencies group with 2 updates: [ruff](https://github.com/astral-sh/ruff) and [translate-toolkit](https://github.com/translate/translate).


Updates `ruff` from 0.16.0 to 0.16.1
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.16.0...0.16.1)

Updates `translate-toolkit` from 3.19.15 to 3.19.17
- [Release notes](https://github.com/translate/translate/releases)
- [Changelog](https://github.com/translate/translate/blob/master/docs/history.rst)
- [Commits](translate/translate@3.19.15...3.19.17)
Bump the dependencies group with 3 updates

Bumps the dependencies group with 3 updates: [https://github.com/astral-sh/ruff-pre-commit](https://github.com/astral-sh/ruff-pre-commit), [https://github.com/rvben/rumdl-pre-commit](https://github.com/rvben/rumdl-pre-commit) and [https://github.com/zizmorcore/zizmor-pre-commit](https://github.com/zizmorcore/zizmor-pre-commit).


Updates `https://github.com/astral-sh/ruff-pre-commit` from v0.16.0 to 0.16.1
- [Release notes](https://github.com/astral-sh/ruff-pre-commit/releases)
- [Commits](astral-sh/ruff-pre-commit@v0.16.0...v0.16.1)

Updates `https://github.com/rvben/rumdl-pre-commit` from v0.2.43 to 0.2.48
- [Release notes](https://github.com/rvben/rumdl-pre-commit/releases)
- [Commits](rvben/rumdl-pre-commit@v0.2.43...v0.2.48)

Updates `https://github.com/zizmorcore/zizmor-pre-commit` from v1.28.0 to 1.29.0
- [Release notes](https://github.com/zizmorcore/zizmor-pre-commit/releases)
- [Commits](zizmorcore/zizmor-pre-commit@v1.28.0...v1.29.0)

---
updated-dependencies:
- dependency-name: ruff
  dependency-version: 0.16.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: translate-toolkit
  dependency-version: 3.19.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: https://github.com/astral-sh/ruff-pre-commit
  dependency-version: 0.16.1
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: https://github.com/rvben/rumdl-pre-commit
  dependency-version: 0.2.48
  dependency-type: direct:production
  dependency-group: dependencies
- dependency-name: https://github.com/zizmorcore/zizmor-pre-commit
  dependency-version: 1.29.0
  dependency-type: direct:production
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Aug 9, 2026
@kattni
kattni merged commit e1abcaf into main Aug 9, 2026
5 checks passed
@kattni
kattni deleted the dependabot/dependencies-01d0fecf48 branch August 9, 2026 21:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant