Commit 4c4afda
authored
⬆️🪝 Update patch versions (#829)
This PR contains the following updates:
| Package | Type | Update | Change |
[Age](https://docs.renovatebot.com/merge-confidence/) |
[Confidence](https://docs.renovatebot.com/merge-confidence/) |
|---|---|---|---|---|---|
|
[adhtruong/mirrors-typos](https://redirect.github.com/adhtruong/mirrors-typos)
| repository | patch | `v1.42.0` → `v1.42.1` |

|

|
|
[astral-sh/ruff-pre-commit](https://redirect.github.com/astral-sh/ruff-pre-commit)
| repository | patch | `v0.14.13` → `v0.14.14` |

|

|
|
[henryiii/validate-pyproject-schema-store](https://redirect.github.com/henryiii/validate-pyproject-schema-store)
| repository | patch | `2026.01.10` → `2026.01.22` |

|

|
|
[rbubley/mirrors-prettier](https://redirect.github.com/rbubley/mirrors-prettier)
| repository | patch | `v3.8.0` → `v3.8.1` |

|

|
| [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.12` → `==0.0.13` |

|

|
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>adhtruong/mirrors-typos (adhtruong/mirrors-typos)</summary>
###
[`v1.42.1`](https://redirect.github.com/adhtruong/mirrors-typos/compare/v1.42.0...v1.42.1)
[Compare
Source](https://redirect.github.com/adhtruong/mirrors-typos/compare/v1.42.0...v1.42.1)
</details>
<details>
<summary>astral-sh/ruff-pre-commit (astral-sh/ruff-pre-commit)</summary>
###
[`v0.14.14`](https://redirect.github.com/astral-sh/ruff-pre-commit/releases/tag/v0.14.14)
[Compare
Source](https://redirect.github.com/astral-sh/ruff-pre-commit/compare/v0.14.13...v0.14.14)
See: <https://github.com/astral-sh/ruff/releases/tag/0.14.14>
</details>
<details>
<summary>henryiii/validate-pyproject-schema-store
(henryiii/validate-pyproject-schema-store)</summary>
###
[`v2026.01.22`](https://redirect.github.com/henryiii/validate-pyproject-schema-store/compare/2026.01.10...2026.01.22)
[Compare
Source](https://redirect.github.com/henryiii/validate-pyproject-schema-store/compare/2026.01.10...2026.01.22)
</details>
<details>
<summary>rbubley/mirrors-prettier (rbubley/mirrors-prettier)</summary>
###
[`v3.8.1`](https://redirect.github.com/rbubley/mirrors-prettier/compare/v3.8.0...v3.8.1)
[Compare
Source](https://redirect.github.com/rbubley/mirrors-prettier/compare/v3.8.0...v3.8.1)
</details>
<details>
<summary>astral-sh/ty (ty)</summary>
###
[`v0.0.13`](https://redirect.github.com/astral-sh/ty/blob/HEAD/CHANGELOG.md#0013)
[Compare
Source](https://redirect.github.com/astral-sh/ty/compare/0.0.12...0.0.13)
Released on 2026-01-21.
##### Bug fixes
- Fix `--force-exclude` when excluding entire directories
([#​22595](https://redirect.github.com/astral-sh/ruff/pull/22595))
- Fix missing syntax highlighting for aliased import names
([#​22675](https://redirect.github.com/astral-sh/ruff/pull/22675))
- Highlight interpolated-parts in t-strings
([#​22674](https://redirect.github.com/astral-sh/ruff/pull/22674))
- Fix the inferred MRO of functional namedtuple classes
([#​22722](https://redirect.github.com/astral-sh/ruff/pull/22722))
- Make special cases for subscript inference exhaustive, ensuring that
the special casing for tuple subscripts is applied when a union of
tuples or an alias to a tuple type is subscripted
([#​22035](https://redirect.github.com/astral-sh/ruff/pull/22035))
##### LSP server
- Improve completion suggestions inside class definitions
([#​22571](https://redirect.github.com/astral-sh/ruff/pull/22571))
- Improve performance of completions
([#​22630](https://redirect.github.com/astral-sh/ruff/pull/22630))
- Remove completion suggestions for redundant re-exports that share the
same top-most module
([#​22581](https://redirect.github.com/astral-sh/ruff/pull/22581))
##### Core type checking
- Add basic support for overloads in `ParamSpec`
([#​21946](https://redirect.github.com/astral-sh/ruff/pull/21946))
- Allow `...` as a default value for any parameter if the function is in
an `if TYPE_CHECKING` block
([#​22624](https://redirect.github.com/astral-sh/ruff/pull/22624))
- Allow `if type(x) is Y` narrowing for types other than class-literal
types
([#​22729](https://redirect.github.com/astral-sh/ruff/pull/22729))
- Avoid overload errors when detecting dataclass-on-tuple
([#​22687](https://redirect.github.com/astral-sh/ruff/pull/22687))
- Avoid reporting overload errors for successful union variants
([#​22688](https://redirect.github.com/astral-sh/ruff/pull/22688))
- Ban `NewType`s with generic bases
([#​22653](https://redirect.github.com/astral-sh/ruff/pull/22653))
- Fix PEP 695 type aliases not expanding in overload resolution
([#​22589](https://redirect.github.com/astral-sh/ruff/pull/22589))
- Fix the return type for synthesized `NamedTuple.__new__` methods
([#​22625](https://redirect.github.com/astral-sh/ruff/pull/22625))
- Emit diagnostics for `NamedTuple`, `TypedDict`, `Enum` or `Protocol`
classes decorated with `@dataclass`
([#​22672](https://redirect.github.com/astral-sh/ruff/pull/22672))
- Emit `invalid-type-form` diagnostics for stringified annotations where
the quoted expression is invalid
([#​22752](https://redirect.github.com/astral-sh/ruff/pull/22752))
- Infer the implicit type of `cls` in `__new__` methods
([#​22584](https://redirect.github.com/astral-sh/ruff/pull/22584))
- Make `ModuleType` and `object` attributes available on namespace
packages
([#​22606](https://redirect.github.com/astral-sh/ruff/pull/22606))
- Make `NamedTuple(...)` and `namedtuple(...)` calls stricter
([#​22601](https://redirect.github.com/astral-sh/ruff/pull/22601))
- Narrow on bool and byte subscripts
([#​22684](https://redirect.github.com/astral-sh/ruff/pull/22684))
- Narrow on negative subscript indexing
([#​22682](https://redirect.github.com/astral-sh/ruff/pull/22682))
- Override `__file__` to `str` when applicable on imported modules
([#​22333](https://redirect.github.com/astral-sh/ruff/pull/22333))
- Add bidirectional inference for comprehensions
([#​22564](https://redirect.github.com/astral-sh/ruff/pull/22564))
- Recognize string-literal types as subtypes of
`Sequence[Literal[chars]]`
([#​22415](https://redirect.github.com/astral-sh/ruff/pull/22415))
- Add right-hand-side narrowing for `if Foo is type(x)` expressions
([#​22608](https://redirect.github.com/astral-sh/ruff/pull/22608))
- Add simple syntactic validation for the right-hand side of PEP-613
type aliases
([#​22652](https://redirect.github.com/astral-sh/ruff/pull/22652))
- Add support for passing `typename` and `field_names` by keyword
argument to `collections.namedtuple()` calls
([#​22660](https://redirect.github.com/astral-sh/ruff/pull/22660))
- Add support for starred unpacking in class bases
([#​22591](https://redirect.github.com/astral-sh/ruff/pull/22591))
- Validate constructor arguments when a class is used as a decorator
([#​22377](https://redirect.github.com/astral-sh/ruff/pull/22377))
- Validate field names for `typing.NamedTuple(...)`
([#​22599](https://redirect.github.com/astral-sh/ruff/pull/22599))
- Add diagnostic on overridden `__setattr__` and `__delattr__` in frozen
dataclasses
([#​21430](https://redirect.github.com/astral-sh/ruff/pull/21430))
- Fix unary operators on `NewType`s of `float` or `complex`
([#​22605](https://redirect.github.com/astral-sh/ruff/pull/22605))
##### Configuration
- Support overriding `respect-type-ignore-comments`
([#​22615](https://redirect.github.com/astral-sh/ruff/pull/22615))
##### Diagnostics
- Don't add a subdiagnostic pointing to the TypeVar definition if the
TypeVar is `Self`
([#​22646](https://redirect.github.com/astral-sh/ruff/pull/22646))
- Show final search path instead of "and 1 more paths"
([#​22776](https://redirect.github.com/astral-sh/ruff/pull/22776))
- Group `type[]` elements together when displaying union types
([#​22592](https://redirect.github.com/astral-sh/ruff/pull/22592))
##### Performance
- Cache `ClassType::nearest_disjoint_base`
([#​22065](https://redirect.github.com/astral-sh/ruff/pull/22065))
##### Other changes
- Sync vendored typeshed stubs
([#​22590](https://redirect.github.com/astral-sh/ruff/pull/22590),
[Typeshed
diff](https://redirect.github.com/python/typeshed/compare/d1d5fe58664b30a0c2dde3cd5c3dc8091f0f16ae...cd8b26b0ceef26cd84ab614088140d48680ac7f7)
##### Contributors
- [@​bxff](https://redirect.github.com/bxff)
- [@​jhartum](https://redirect.github.com/jhartum)
- [@​thejchap](https://redirect.github.com/thejchap)
- [@​AlexWaygood](https://redirect.github.com/AlexWaygood)
- [@​charliermarsh](https://redirect.github.com/charliermarsh)
- [@​RasmusNygren](https://redirect.github.com/RasmusNygren)
- [@​mswart](https://redirect.github.com/mswart)
- [@​MatthewMckee4](https://redirect.github.com/MatthewMckee4)
- [@​11happy](https://redirect.github.com/11happy)
- [@​ibraheemdev](https://redirect.github.com/ibraheemdev)
- [@​sinon](https://redirect.github.com/sinon)
- [@​MichaReiser](https://redirect.github.com/MichaReiser)
- [@​carljm](https://redirect.github.com/carljm)
- [@​BurntSushi](https://redirect.github.com/BurntSushi)
- [@​dhruvmanila](https://redirect.github.com/dhruvmanila)
- [@​oconnor663](https://redirect.github.com/oconnor663)
- [@​zanieb](https://redirect.github.com/zanieb)
</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:eyJjcmVhdGVkSW5WZXIiOiI0Mi45Mi4xIiwidXBkYXRlZEluVmVyIjoiNDIuOTIuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicHJlLWNvbW1pdCIsInB5dGhvbiJdfQ==-->
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 e67ab73 commit 4c4afda
3 files changed
+26
-27
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
72 | 72 | | |
73 | 73 | | |
74 | 74 | | |
75 | | - | |
| 75 | + | |
76 | 76 | | |
77 | 77 | | |
78 | 78 | | |
| |||
102 | 102 | | |
103 | 103 | | |
104 | 104 | | |
105 | | - | |
| 105 | + | |
106 | 106 | | |
107 | 107 | | |
108 | 108 | | |
| |||
120 | 120 | | |
121 | 121 | | |
122 | 122 | | |
123 | | - | |
| 123 | + | |
124 | 124 | | |
125 | 125 | | |
126 | 126 | | |
| |||
150 | 150 | | |
151 | 151 | | |
152 | 152 | | |
153 | | - | |
| 153 | + | |
154 | 154 | | |
155 | 155 | | |
156 | 156 | | |
| |||
| 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