Commit 366551c
authored
⬆️🪝 Update patch versions (#826)
This PR contains the following updates:
| Package | Type | Update | Change |
[Age](https://docs.renovatebot.com/merge-confidence/) |
[Confidence](https://docs.renovatebot.com/merge-confidence/) |
|---|---|---|---|---|---|
|
[astral-sh/ruff-pre-commit](https://redirect.github.com/astral-sh/ruff-pre-commit)
| repository | patch | `v0.14.11` → `v0.14.13` |

|

|
|
[astral-sh/uv-pre-commit](https://redirect.github.com/astral-sh/uv-pre-commit)
| repository | patch | `0.9.24` → `0.9.26` |

|

|
| [ty](https://redirect.github.com/astral-sh/ty)
([changelog](https://redirect.github.com/astral-sh/ty/blob/main/CHANGELOG.md))
| dependency-groups | patch | `==0.0.11` → `==0.0.12` |

|

|
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](https://redirect.github.com/renovatebot/renovate/discussions/new)
if you have any questions.
---
### Release Notes
<details>
<summary>astral-sh/ruff-pre-commit (astral-sh/ruff-pre-commit)</summary>
###
[`v0.14.13`](https://redirect.github.com/astral-sh/ruff-pre-commit/releases/tag/v0.14.13)
[Compare
Source](https://redirect.github.com/astral-sh/ruff-pre-commit/compare/v0.14.12...v0.14.13)
See: <https://github.com/astral-sh/ruff/releases/tag/0.14.13>
###
[`v0.14.12`](https://redirect.github.com/astral-sh/ruff-pre-commit/releases/tag/v0.14.12)
[Compare
Source](https://redirect.github.com/astral-sh/ruff-pre-commit/compare/v0.14.11...v0.14.12)
See: <https://github.com/astral-sh/ruff/releases/tag/0.14.12>
</details>
<details>
<summary>astral-sh/uv-pre-commit (astral-sh/uv-pre-commit)</summary>
###
[`v0.9.26`](https://redirect.github.com/astral-sh/uv-pre-commit/releases/tag/0.9.26)
[Compare
Source](https://redirect.github.com/astral-sh/uv-pre-commit/compare/0.9.25...0.9.26)
See: <https://github.com/astral-sh/uv/releases/tag/0.9.26>
###
[`v0.9.25`](https://redirect.github.com/astral-sh/uv-pre-commit/releases/tag/0.9.25)
[Compare
Source](https://redirect.github.com/astral-sh/uv-pre-commit/compare/0.9.24...0.9.25)
See: <https://github.com/astral-sh/uv/releases/tag/0.9.25>
</details>
<details>
<summary>astral-sh/ty (ty)</summary>
###
[`v0.0.12`](https://redirect.github.com/astral-sh/ty/blob/HEAD/CHANGELOG.md#0012)
[Compare
Source](https://redirect.github.com/astral-sh/ty/compare/0.0.11...0.0.12)
Released on 2026-01-14.
##### Bug fixes
- Avoid panic that could occur when `cast`ing an object to a TypedDict
or union of TypedDicts
([#​22509](https://redirect.github.com/astral-sh/ruff/pull/22509))
- Fix incorrect narrowing for `if type(x) == y`
([#​22531](https://redirect.github.com/astral-sh/ruff/pull/22531))
- Fix stack overflow with recursive type aliases containing tuple types
([#​22543](https://redirect.github.com/astral-sh/ruff/pull/22543))
- `functools.total_ordering`: ensure the signatures of generated methods
reflect the signature of the user-provided method
([#​22496](https://redirect.github.com/astral-sh/ruff/pull/22496))
- Support `dataclass_transform` as a function call
([#​22378](https://redirect.github.com/astral-sh/ruff/pull/22378))
- Use the top materialization of classes for `if type(x) is y`
narrowing. For example, `if type(x) is tuple` will cause the type of `x`
to be intersected with `tuple[object, ...]` rather than `tuple[Unknown,
...]`.
([#​22553](https://redirect.github.com/astral-sh/ruff/pull/22553))
- Avoid emitting Liskov violations with respect to a grandparent class
if such violations could not be fixed without introducing Liskov
violations with respect to a parent class
([#​22484](https://redirect.github.com/astral-sh/ruff/pull/22484))
- Fix interaction between classmethod, contextmanager, and Self
([#​22407](https://redirect.github.com/astral-sh/ruff/pull/22407))
- Check contravariant type variable bounds contravariantly in
specialization inference
([#​22488](https://redirect.github.com/astral-sh/ruff/pull/22488))
- Fix false positive for bounded type parameters with NewType
([#​22542](https://redirect.github.com/astral-sh/ruff/pull/22542))
##### Type checking
- Add support for dynamic `type()` classes
([#​22291](https://redirect.github.com/astral-sh/ruff/pull/22291),
[#​22499](https://redirect.github.com/astral-sh/ruff/pull/22499),
[#​22537](https://redirect.github.com/astral-sh/ruff/pull/22537),
[#​22480](https://redirect.github.com/astral-sh/ruff/pull/22480))
- Add support for functional `namedtuple` creation
([#​22327](https://redirect.github.com/astral-sh/ruff/pull/22327),
[#​22573](https://redirect.github.com/astral-sh/ruff/pull/22573),
[#​22575](https://redirect.github.com/astral-sh/ruff/pull/22575),
[#​22574](https://redirect.github.com/astral-sh/ruff/pull/22574))
- Add a diagnostic for non-decorator uses of `final`
([#​22555](https://redirect.github.com/astral-sh/ruff/pull/22555))
- Add diagnostic to catch generic enums
([#​22482](https://redirect.github.com/astral-sh/ruff/pull/22482))
- Add diagnostics for `__init_subclass__` argument mismatch
([#​22185](https://redirect.github.com/astral-sh/ruff/pull/22185))
- Add diagnostics to validate `TypeIs` and `TypeGuard` definitions
([#​22300](https://redirect.github.com/astral-sh/ruff/pull/22300))
- Apply type narrowing to walrus targets
([#​22369](https://redirect.github.com/astral-sh/ruff/pull/22369))
- Detect invalid `@total_ordering` applications in non-decorator
contexts
([#​22486](https://redirect.github.com/astral-sh/ruff/pull/22486))
- Fix `@Todo` type for starred expressions
([#​22503](https://redirect.github.com/astral-sh/ruff/pull/22503))
- Improve disambiguation of types in diagnostics
([#​22547](https://redirect.github.com/astral-sh/ruff/pull/22547))
- Include type parameters in the display for generic `Callable` types
([#​22435](https://redirect.github.com/astral-sh/ruff/pull/22435))
- Infer `type[Unknown]` for calls to `type()` when overload evaluation
is ambiguous
([#​22569](https://redirect.github.com/astral-sh/ruff/pull/22569))
- Support assignment to unions of `TypedDict`s
([#​22294](https://redirect.github.com/astral-sh/ruff/pull/22294))
- Use the key and value parameter types as type context for
`__setitem__` dunder calls
([#​22148](https://redirect.github.com/astral-sh/ruff/pull/22148))
- Narrow the right-hand side of `==`, `!=`, `is` and `is not` conditions
when the left-hand side is not narrowable
([#​22511](https://redirect.github.com/astral-sh/ruff/pull/22511))
##### LSP server
- Fix `__file__` type in completions to show `str` instead of `str |
None` when the inferred type is `str`
([#​22510](https://redirect.github.com/astral-sh/ruff/pull/22510))
- Improve rendering of ReST directives in docstrings
([#​22512](https://redirect.github.com/astral-sh/ruff/pull/22512))
##### Contributors
- [@​eclbg](https://redirect.github.com/eclbg)
- [@​RasmusNygren](https://redirect.github.com/RasmusNygren)
- [@​carljm](https://redirect.github.com/carljm)
- [@​drbh](https://redirect.github.com/drbh)
- [@​AryanBagade](https://redirect.github.com/AryanBagade)
- [@​bxff](https://redirect.github.com/bxff)
- [@​ibraheemdev](https://redirect.github.com/ibraheemdev)
- [@​charliermarsh](https://redirect.github.com/charliermarsh)
- [@​AlexWaygood](https://redirect.github.com/AlexWaygood)
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "every weekend" (UTC), Automerge - At
any time (no schedule defined).
🚦 **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](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/munich-quantum-toolkit/qcec).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi43NC41IiwidXBkYXRlZEluVmVyIjoiNDIuNzQuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicHJlLWNvbW1pdCIsInB5dGhvbiJdfQ==-->
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>1 parent c01492c commit 366551c
3 files changed
+25
-25
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
66 | 66 | | |
67 | 67 | | |
68 | 68 | | |
69 | | - | |
| 69 | + | |
70 | 70 | | |
71 | 71 | | |
72 | 72 | | |
73 | 73 | | |
74 | 74 | | |
75 | | - | |
| 75 | + | |
76 | 76 | | |
77 | 77 | | |
78 | 78 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
390 | 390 | | |
391 | 391 | | |
392 | 392 | | |
393 | | - | |
| 393 | + | |
394 | 394 | | |
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
0 commit comments