Skip to content

chore(deps): update dependency ty to v0.0.15#301

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/ty-0.x
Open

chore(deps): update dependency ty to v0.0.15#301
renovate[bot] wants to merge 1 commit intomainfrom
renovate/ty-0.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 26, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
ty (changelog) ==0.0.1a27==0.0.15 age confidence

Release Notes

astral-sh/ty (ty)

v0.0.15

Compare Source

Released on 2026-02-04.

Bug fixes
  • Add support for resolving imports of packages installed into Debian/Ubuntu dist-packages directories (#​22466)
  • Avoid not-iterable false positives when iterating over an instance of an intersection type with only negated elements (#​22089)
  • Fix support for stringized annotations in very large files (#​22913)
  • Don't emit Liskov diagnostics for methods with mangled names (#​23062)
  • Enforce that a Final symbol cannot be reassigned even after a conditional binding (#​22986)
  • Fix TypedDict construction from existing TypedDict values (#​22904)
  • Fix Self resolution for classes nested within methods (#​22964)
  • Fix bidirectional inference with PEP 695 union type aliases (#​22988)
  • Fix edge-case bugs when narrowing tagged unions in match statements (#​22870)
  • Fix false-positive diagnostics when iterating over an instance of an intersection that includes a TypeVar of which the upper bound is a union where the union includes a non-iterable type (#​22117)
  • Fix lookup of __contains__ to respect descriptors (#​23056)
  • Fix narrowing of nonlocal variables with conditional assignments (#​22966)
  • Fix several bugs that could affect NewTypes of NewTypes of float (#​22997)
  • Fix several type narrowing bugs involving PEP-695 type aliases (#​22894)
  • Fix spurious query cycles in decorated functions with parameter defaults, for improved performance and improved determinism (#​23014)
  • Fix unary and comparison operators for TypeVars with union bounds (#​22925)
  • Understand functions as method descriptors even if they are decorated with a decorator annotated as returning a PEP-695 alias to a Callable type (#​22902)
  • dataclass_transform: Fix visibility of field specifiers when models are nested inside methods (#​23069)
LSP server
  • Fix hover showing Unknown for bare Final instance attributes (#​23003)
  • Improve support for goto-type, goto-declaration, hover, and highlighting of string annotations (#​22878)
  • Include setters and deleters when renaming properties (#​22999)
  • Show type qualifiers like Final in on-hover hints (#​23005)
Configuration
  • Add new unused-type-ignore-comment rule (#​22790)
  • Add a mechanism to ignore/warn/select all rules (#​22832)
  • Support multiple workspace folders in a single ty LSP server instance (#​22953)
  • Only add ./src as a search path if ./src/__init__.py(i) does not exist (#​22851)
Type checking
  • Add a diagnostic detecting if a variable is declared as Final but never has any bindings (#​23001)
  • Add a diagnostic detecting overridden comparison dunder methods on order=True dataclasses (#​22689)
  • Add a hint to invalid-argument-type and invalid-assignment diagnostics if a variable is annotated with a type from the numbers module (#​22931, #​22938)
  • Add diagnostic hint on unresolved-reference to suggest using "list" instead of "List" (#​22827)
  • Add new diagnostic for invalid dataclass field orders (#​19825)
  • Allow a subclass method with a positional-only parameter to override a superclass method without that parameter if the parameter in the subclass method has a default value (#​23037)
  • Allow self-referential imports outside the global scope (#​22963)
  • Ban ... in odd places inside tuple specializations (#​22889)
  • Ban Required, NotRequired and ReadOnly in parameter annotations (#​22888)
  • Ban legacy TypeVar bounds or constraints from containing type variables (#​22949)
  • Ban multiple unpacked variadic tuples in a tuple specialization (#​22884)
  • Detect generic Callables in the return type of function signatures (#​22954)
  • Detect invalid isinstance() and issubclass() calls against TypedDict classes (#​22887)
  • Detect invalid issubclass() calls against Protocol classes with non-method members (#​22896)
  • Detect invalid attempts to subclass Protocol[] and Generic[] simultaneously (#​22948)
  • Emit a diagnostic on incorrect applications of the legacy convention for specifying positional-only parameters (#​22943)
  • Emit an error if a TypeVarTuple is used to subscript Generic or Protocol without being unpacked (#​22952)
  • Fallback to metaclass __getattr__ or __getattribute__ when looking up attributes on class objects (#​22985)
  • Fix a bug where an overridden type in a dataclass subclass would not be respected if the dataclass subclass field had a default value but the superclass field did not (#​22965)
  • Improve bidirectional type inference involving PEP-695 type aliases (#​22989)
  • Improve detection of invalid NewTypes with generic bases (#​22961)
  • Improve reachability analysis when evaluating the truthiness of expressions that involve variables that may not be bound in all code paths (#​22971)
  • Improve the error message if ** is used with a non-mapping in the context of a call to an overloaded function (#​22921)
  • Infer ParamSpec from class constructors for callable protocols (#​22853)
  • Move the location of some invalid-overload diagnostics (#​22933)
  • Point to an overload with an invalid @final decorator when emitting invalid-overload errors for invalid @final decorators (#​22893)
  • Avoid false positives when iterating over an instance of an intersection with only negated elements by preserving "pure negation" types in descriptor lookups (#​22907)
  • Promote Literal types when inferring elements for very large unannotated tuples, for improved performance (#​22841)
  • Recognize functions with stub bodies in Protocol classes as implicitly abstract (#​22838)
  • Reduce false positives involving heterogeneous dicts by tracking dictionary literal keys as individual places (#​22882)
  • Reduce false positives when subscripting classes generic over TypeVarTuples (#​22950)
  • Remove special handling for Any() in match class patterns (#​23011)
  • Support type[None] in type expressions (#​22892)
  • Support legacy namespace packages declared using pkg_resources.declare_namespace (#​22987)
  • Sync vendored typeshed stubs (#​23006), Typeshed diff
  • Validate signatures of dataclass __post_init__ methods (#​22730)
Contributors

v0.0.14

Compare Source

Released on 2026-01-26.

Bug fixes
  • Consider keyword arguments when unpacking a variadic argument (#​22796)
  • Fix binary operator false-positive for constrained TypeVars (#​22782)
  • Fix docstring rendering for literal blocks after doctests (#​22676)
  • Fix false-positive unsupported-operator for "symmetric" TypeVars (#​22756)
  • Fix panic when overriding a final method using an assignment (#​22831)
  • Fix unary operator false-positive for constrained TypeVars (#​22783)
  • Fix generic functions with a generic (ParamSpec) decorator (#​22544)
  • Fix memo.changed_at assertion panics (#​22498)
LSP server
  • Look up attributes on metaclasses for Go to Definition (#​22758)
  • Suppress type inlay hints for leading-underscore assignments (#​22855)
Configuration
  • Add allowed-unresolved-imports setting (#​22800)
Other changes
  • Add assert-type-unspellable-subtype diagnostic, for failed assert_type() where the actual type is a subtype of the named type that can't be spelled in a type expression (#​22815)
  • Add a new empty-body return code for functions with stub bodies that have non-None return annotations (#​22846)
  • Add diagnostic disambiguation for different type aliases with the same name (#​22852)
  • Add support for dict literals and dict() calls as default values for parameters with TypedDict types (#​22161)
  • Add support for subscripts on intersections (#​22654)
  • Avoid duplicate syntax errors for await outside functions (#​22826)
  • Emit an error if the same type parameter appears more than once in a Generic[] subscript (#​22738)
  • Emit diagnostic for unimplemented abstract method on @​final class (#​22753)
  • Fix GitLab Code Quality output format for empty diagnostics (#​22833)
  • Fix assignment in decorated method causing Unknown fallback (#​22778)
  • Fix false negative when using a non-runtime-checkable protocol in a match class pattern (#​22836)
  • Improve completion rankings for raise-from/except contexts (#​22775)
  • Improve invalid assignment diagnostics with type context (#​22643)
  • Improve support for kwarg splats in dictionary literals (#​22781)
  • Infer TypedDict types with >=1 required key as being always truthy (#​22808)
  • Point to an overload with an invalid @final decoator when emitting invalid-overload errors for invalid @final decorators (#​22812)
  • Require both *args and **kwargs when calling a ParamSpec callable (#​22820)
  • Stricter validation of TypedDict definitions (#​22811)
  • Support recursive and stringified annotations in functional typing.NamedTuples (#​22718)
  • Support solving generics involving PEP 695 type aliases (#​22678)
  • Use a more lenient fallback type for failed namedtuple() and NamedTuple calls (#​22765)
  • Use type context from augmented assignment dunder calls (#​22540)
  • Check that starred arguments in function calls are iterable (#​22805)
Contributors

v0.0.13

Compare Source

Released on 2026-01-21.

Bug fixes
  • Fix --force-exclude when excluding entire directories (#​22595)
  • Fix missing syntax highlighting for aliased import names (#​22675)
  • Highlight interpolated-parts in t-strings (#​22674)
  • Fix the inferred MRO of functional namedtuple classes (#​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)
LSP server
  • Improve completion suggestions inside class definitions (#​22571)
  • Improve performance of completions (#​22630)
  • Remove completion suggestions for redundant re-exports that share the same top-most module (#​22581)
Core type checking
  • Add basic support for overloads in ParamSpec (#​21946)
  • Allow ... as a default value for any parameter if the function is in an if TYPE_CHECKING block (#​22624)
  • Allow if type(x) is Y narrowing for types other than class-literal types (#​22729)
  • Avoid overload errors when detecting dataclass-on-tuple (#​22687)
  • Avoid reporting overload errors for successful union variants (#​22688)
  • Ban NewTypes with generic bases (#​22653)
  • Fix PEP 695 type aliases not expanding in overload resolution (#​22589)
  • Fix the return type for synthesized NamedTuple.__new__ methods (#​22625)
  • Emit diagnostics for NamedTuple, TypedDict, Enum or Protocol classes decorated with @dataclass (#​22672)
  • Emit invalid-type-form diagnostics for stringified annotations where the quoted expression is invalid (#​22752)
  • Infer the implicit type of cls in __new__ methods (#​22584)
  • Make ModuleType and object attributes available on namespace packages (#​22606)
  • Make NamedTuple(...) and namedtuple(...) calls stricter (#​22601)
  • Narrow on bool and byte subscripts (#​22684)
  • Narrow on negative subscript indexing (#​22682)
  • Override __file__ to str when applicable on imported modules (#​22333)
  • Add bidirectional inference for comprehensions (#​22564)
  • Recognize string-literal types as subtypes of Sequence[Literal[chars]] (#​22415)
  • Add right-hand-side narrowing for if Foo is type(x) expressions (#​22608)
  • Add simple syntactic validation for the right-hand side of PEP-613 type aliases (#​22652)
  • Add support for passing typename and field_names by keyword argument to collections.namedtuple() calls (#​22660)
  • Add support for starred unpacking in class bases (#​22591)
  • Validate constructor arguments when a class is used as a decorator (#​22377)
  • Validate field names for typing.NamedTuple(...) (#​22599)
  • Add diagnostic on overridden __setattr__ and __delattr__ in frozen dataclasses (#​21430)
  • Fix unary operators on NewTypes of float or complex (#​22605)
Configuration
  • Support overriding respect-type-ignore-comments (#​22615)
Diagnostics
  • Don't add a subdiagnostic pointing to the TypeVar definition if the TypeVar is Self (#​22646)
  • Show final search path instead of "and 1 more paths" (#​22776)
  • Group type[] elements together when displaying union types (#​22592)
Performance
  • Cache ClassType::nearest_disjoint_base (#​22065)
Other changes
Contributors

v0.0.12

Compare Source

Released on 2026-01-14.

Bug fixes
  • Avoid panic that could occur when casting an object to a TypedDict or union of TypedDicts (#​22509)
  • Fix incorrect narrowing for if type(x) == y (#​22531)
  • Fix stack overflow with recursive type aliases containing tuple types (#​22543)
  • functools.total_ordering: ensure the signatures of generated methods reflect the signature of the user-provided method (#​22496)
  • Support dataclass_transform as a function call (#​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)
  • 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)
  • Fix interaction between classmethod, contextmanager, and Self (#​22407)
  • Check contravariant type variable bounds contravariantly in specialization inference (#​22488)
  • Fix false positive for bounded type parameters with NewType (#​22542)
Core type checking
  • Add support for dynamic type() classes (#​22291, #​22499, #​22537, #​22480)
  • Add support for functional namedtuple creation (#​22327, #​22573, #​22575, #​22574)
  • Add a diagnostic for non-decorator uses of final (#​22555)
  • Add diagnostic to catch generic enums (#​22482)
  • Add diagnostics for __init_subclass__ argument mismatch (#​22185)
  • Add diagnostics to validate TypeIs and TypeGuard definitions (#​22300)
  • Apply type narrowing to walrus targets (#​22369)
  • Detect invalid @total_ordering applications in non-decorator contexts (#​22486)
  • Fix @Todo type for starred expressions (#​22503)
  • Improve disambiguation of types in diagnostics (#​22547)
  • Include type parameters in the display for generic Callable types (#​22435)
  • Infer type[Unknown] for calls to type() when overload evaluation is ambiguous (#​22569)
  • Support assignment to unions of TypedDicts (#​22294)
  • Use the key and value parameter types as type context for __setitem__ dunder calls (#​22148)
  • Narrow the right-hand side of ==, !=, is and is not conditions when the left-hand side is not narrowable (#​22511)
LSP server
  • Fix __file__ type in completions to show str instead of str | None when the inferred type is str (#​22510)
  • Improve rendering of ReST directives in docstrings (#​22512)
Contributors

v0.0.11

Compare Source

Released on 2026-01-09.

Bug fixes
  • Fix super() with TypeVar-annotated self and cls parameter (#​22208)
  • Only consider fully static pivots when deriving transitive constraints (#​22444)
LSP server
  • Don't show diagnostics for excluded files (#​22455)
  • Fix goto definition for relative imports in third-party files (#​22457)
  • Improve completion ranking based on origin and exact match (#​22460)
  • Rank top-level module symbols above most other symbols (#​22465)
Configuration
  • Enable unused-ignore-comment by default (#​22474)
Performance
  • Improve UnionBuilder performance by changing Type::is_subtype_of calls to Type::is_redundant_with (#​22337)
  • Optimize union building for unions with many enum-literal members (#​22363)-
Other changes
  • Declare support for Python 3.14 (#​2407)
  • Remove dark-mode handling from PyPI-uploaded README (#​2422)
Contributors

v0.0.10

Compare Source

Released on 2026-01-07.

Bug fixes
  • Fix stack overflow due to too small stack size (#​22433)
  • Fix stale semantic tokens after opening the same document with new content (#​22414)
  • Fix handling of ParamSpec in overloaded functions (#​22416)
  • Fix comparisons and arithmetic with NewTypes of float (#​22105)
  • Fix several issues with unannotated function return types (#​22425)
  • Fix handling of subclasses in Callables (#​22411)
LSP server
  • Add support for explicit markdown code fences in docstring rendering (#​22373, #​22408)
  • Offer completions for T when a value has type Unknown | T (#​22436)
  • Sort keyword argument completions higher (#​22297)
Core type checking
  • Add support for @total_ordering (#​22181, #​22183)
  • Better simplification of intersections of tuples (#​22094)
  • Support comparisons between variable-length tuples (#​21824)
  • Emit diagnostics for method definitions and other invalid statements in TypedDict class bodies (#​22351)
  • Improve type-narrowing in calls to len() (#​22330)
CLI
Configuration
  • include = ["myscript"] will now check myscript even though it doesn't have a Python extension (#​22243)
Performance
  • Optimize intersections with a single negated element (#​22344)
  • Optimize negated types (#​22402)
Documentation
  • Link to Callable __name__ FAQ directly from unresolved-attribute diagnostic (#​22437)
Contributors

v0.0.9

Compare Source

Released on 2026-01-05.

Bug fixes
  • Emit a diagnostic if a class decorator is not a callable accepting a type (#​22375)
  • Fix exhaustiveness inference for unions that include enums (#​22290)
Core type checking
  • Support typing.TypeGuard (#​20974)
  • Treat __setattr__ as fallback-only (#​22014)
  • Don't expand type aliases via type mappings unless necessary. This means that the displayed signature of a bound methods will no longer eagerly expand type aliases into their aliased types (#​22241)
  • Narrow TypedDict unions with not in (#​22349)
  • Don't including property in subclasses properties (#​22088)
  • Narrow tagged unions of TypedDicts in match statements (#​22299)
  • Teach bidirectional inference about subtyping. This allows x to be inferred as list[int] for x: Iterable[int] = [42] (#​21930)
  • Support narrowing for tagged unions of tuples where one element of the tuple is a Literal type (#​22303)
LSP server
  • Add autocomplete suggestions for keyword arguments in class statements (#​22110)
  • Avoid showing misleading inlay hint for unpacked tuple arguments (#​22286)
Other changes
Contributors

v0.0.8

Compare Source

Released on 2025-12-29.

Breaking changes
  • Rename non-subscriptable rule to not-subscriptable (#​22193)
Core type checking
  • Promote float and complex when promoting literals (#​22215)
  • Callable type of a type object is not function-like (#​22226)
  • Fix and simplify callable type materializations (#​22213)
LSP server
  • Add option to disable syntax errors (#​22217)
  • Fix completion in decorators with missing declaration (#​22177)
  • Better completions context detection when typing in decorator positions (#​22224)
  • Limit the returned completions to reduce lag (#​22240)
Diagnostics
  • Improve wording of unsupported-base sub-diagnostic (#​22194)
  • Preserve the invalid assignment diagnostic message when implicitly shadowing a definition (#​22219)
Other changes
  • Update docker image to use alpine 3.23 and trixie (#​2217)
Contributors

v0.0.7

Compare Source

Released on 2025-12-24.

Bug fixes
  • Fix classification of modules in import x as y for semantic syntax highlighting (#​22175)
  • Fix module resolution on network drives (#​22173)
  • Render the entire diagnostic message in all output formats (#​22164)
Other changes
  • Add a dedicated diagnostic for TypedDict deletions (#​22123)
  • Check __delitem__ instead of __getitem__ for del x[k] (#​22121)
  • Fix @staticmethod combined with other decorators incorrectly binding self (#​22128)
  • Fix implementation of Top[Callable[..., object]] (#​22145)
  • Improve diagnostic when callable is used in a type expression instead of collections.abc.Callable or typing.Callable (#​22180)
  • Improve diagnostic when a user tries to access a function attribute on a Callable type (#​22182)
  • Include the specialization of a generic TypedDict as part of its display (#​22174)
  • Support tuple narrowing based on member checks (#​22167)
  • Synthesize __delitem__ for TypedDict to allow deleting non-required keys (#​22122)
Contributors

v0.0.6

Compare Source

Released on 2025-12-23.

Bug fixes
  • FIx panic from unexpanded type aliases in implicit tuple aliases (#​22015)
  • Support type[T] where T is a type alias to a union of types (#​22115)
  • Support == narrowing for tuples in unions with disjoint types (#​22129)
  • Respect debug text interpolation in f-strings (#​22151)
  • Fix panic from unstable union-type ordering in fixed-point iteration (#​22070)
LSP server
  • Add ty.configuration and ty.configurationFile options (#​22053)
  • Add diagnosticMode: off to disable diagnostics while retaining Go To Definition, etc. (#​22073)
  • Set flag to avoid type[T@f] being inserted when you double-click on the inlay (#​22139)
  • Use Markdown for completions documentation if the LSP client supports it (#​21752)
CLI
  • Abort printing diagnostics when pressing Ctrl+C (#​22083)
Configuration
  • Add respect-type-ignore-comments configuration option (#​22137)
  • Support custom builtins via __builtins__.pyi (#​22021)
Other changes
  • Bind self with instance in __get__ (#​22155)
  • Support type inference between protocol instances (#​22120)
  • Synthesize a precise _fields attribute for NamedTuples (#​22163)
  • Synthesize a precise _replace method for NamedTuples (#​22153)
  • Narrow "tagged unions" of TypedDicts (#​22104)
Contributors

v0.0.5

Compare Source

Released on 2025-12-20.

Bug fixes
  • Fix debug-mode server panic when a user typed a class definition by ensuring class arguments are visited in source order for semantic tokens (#​22063)
LSP server
  • Classify docstrings in semantic tokens during syntax highlighting (#​22031)
CLI
  • Add --force-exclude option (#​22076)
  • Only clear output between two successful checks (#​22078)
Other changes
  • Add support for dict(...) calls in TypedDict contexts (#​22113)
  • Speedup bidirectional type-checking involving large unions by avoiding narrowing on non-generic calls (#​22102)
  • Simplify inferred types by avoiding storing multi-inference attempts (#​22062, #​22103)
  • Improve union builder performance (#​22048)
  • Only prefer declared types in non-covariant positions (#​22068)
  • Respect intersections in iterations (#​21965)
  • Sync vendored typeshed stubs (#​22091). Typeshed diff
  • Understand that the type of X on an enum class will be int if X is defined using enum.nonmember in the class definition (#​22025)
Contributors

v0.0.4

Compare Source

Released on 2025-12-18.

LSP server
  • Add support for attribute docstrings (#​22036)
  • Correctly encode multiline tokens for clients not supporting multiline tokens (#​22033)
  • Autocompletions: Don't suggest keyword statements when only expressions are valid (#​22002)
  • Fix goto-declaration on the right-hand side of from module import submodule (#​22042)
  • Fix some configuration panics in the LSP (#​22040)
  • Gracefully handle client requests that can't be deserialized (#​22051)
Other changes
  • Improve performance for large match statements (#​22045)
  • Disable possibly-missing-imports by default (#​22041)
  • Implement disjointness for TypedDicts, significantly speeding up checking of code that uses pydantic (#​22044)
Contributors

v0.0.3

Compare Source

Released on 2025-12-17.

LSP server
  • Improve rendering of signatures in hovers (#​22007)
Core type checking
  • Apply narrowing to len calls based on argument size (#​22026)
  • Don't add identical lower/upper bounds multiple times when inferring specializations (#​22030)
  • Improve unsupported-base and invalid-super-argument diagnostics to avoid extremely long lines when encountering verbose types (#​22022)
  • Improve disambiguation of types in many cases (#​22019)
  • Respect deferred values in keyword arguments etc. for .pyi files (#​22029)
  • Handle field specifier functions that accept **kwargs and recognize metaclass-based transformers as instances of DataclassInstance (#​22018)
Contributors

v0.0.2

Released on 2025-12-16.

This is the first Beta release of ty, which we're now ready to recommend to motivated users for
production use. See our blog post for more details.

LSP server
  • Improve display of completions to show actual insertion text (#​21988)
  • Improve highlighting of special type syntax in hovers (#​22005)
  • Improve syntax highlighting of constants (#​22006)
Core type checking
  • Infer precise types for isinstance(…) calls involving type variables (#​21999)
  • Infer TypeVar specializations for Callable types (#​21551)
  • Propagate classmethod-ness through decorators returning Callables (#​21958)
  • Improve rendering of default values for function args (#​22010)
  • Don't use implicit superclass annotation when converting a class constructor into a Callable (#​22011)
Other
  • Type checking performance improvement (#​22000)
Contributors

v0.0.1

Released on 2026-01-26.

Bug fixes
  • Consider keyword arguments when unpacking a variadic argument (#​22796)
  • Fix binary operator false-positive for constrained TypeVars (#​22782)
  • Fix docstring rendering for literal blocks after doctests (#​22676)
  • Fix false-positive unsupported-operator for "symmetric" TypeVars (#​22756)
  • Fix panic when overriding a final method using an assignment (#​22831)
  • Fix unary operator false-positive for constrained TypeVars (#​22783)
  • Fix generic functions with a generic (ParamSpec) decorator (#​22544)
  • Fix memo.changed_at assertion panics (#​22498)
LSP server
  • Look up attributes on metaclasses for Go to Definition (#​22758)
  • Suppress type inlay hints for leading-underscore assignments (#​22855)
Configuration
  • Add allowed-unresolved-imports setting (#​22800)
Other changes
  • Add assert-type-unspellable-subtype diagnostic, for failed assert_type() where the actual type is a subtype of the named type that can't be spelled in a type expression (#​22815)
  • Add a new empty-body return code for functions with stub bodies that have non-None return annotations (#​22846)
  • Add diagnostic disambiguation for different type aliases w

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

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

@renovate renovate bot enabled auto-merge (squash) November 26, 2025 02:26
@renovate renovate bot force-pushed the renovate/ty-0.x branch from 98877b7 to 17808a8 Compare November 27, 2025 01:07
@renovate renovate bot changed the title chore(deps): update dependency ty to v0.0.1a28 chore(deps): update dependency ty to v0.0.1a29 Nov 28, 2025
@renovate renovate bot force-pushed the renovate/ty-0.x branch 9 times, most recently from 0104528 to 9ec22ac Compare December 3, 2025 17:27
@renovate renovate bot changed the title chore(deps): update dependency ty to v0.0.1a29 chore(deps): update dependency ty to v0.0.1a30 Dec 3, 2025
@renovate renovate bot force-pushed the renovate/ty-0.x branch 2 times, most recently from 7536ac6 to 588db4c Compare December 4, 2025 09:14
@renovate renovate bot changed the title chore(deps): update dependency ty to v0.0.1a30 chore(deps): update dependency ty to v0.0.1a31 Dec 4, 2025
@renovate renovate bot force-pushed the renovate/ty-0.x branch 4 times, most recently from 7f69813 to a98c654 Compare December 6, 2025 02:14
@renovate renovate bot changed the title chore(deps): update dependency ty to v0.0.1a31 chore(deps): update dependency ty to v0.0.1a32 Dec 6, 2025
@renovate renovate bot force-pushed the renovate/ty-0.x branch 5 times, most recently from 5421c94 to 3f40286 Compare December 10, 2025 03:39
@renovate renovate bot changed the title chore(deps): update dependency ty to v0.0.1a32 chore(deps): update dependency ty to v0.0.1a33 Dec 10, 2025
@renovate renovate bot force-pushed the renovate/ty-0.x branch 3 times, most recently from d5da755 to 56edc35 Compare December 12, 2025 14:52
@renovate renovate bot force-pushed the renovate/ty-0.x branch 3 times, most recently from cba9c97 to 00d73d5 Compare January 15, 2026 01:28
@renovate renovate bot changed the title chore(deps): update dependency ty to v0.0.11 chore(deps): update dependency ty to v0.0.12 Jan 15, 2026
@renovate renovate bot force-pushed the renovate/ty-0.x branch 8 times, most recently from db9c0a3 to e80429b Compare January 21, 2026 17:09
@renovate renovate bot changed the title chore(deps): update dependency ty to v0.0.12 chore(deps): update dependency ty to v0.0.13 Jan 21, 2026
@renovate renovate bot force-pushed the renovate/ty-0.x branch 8 times, most recently from 5a26139 to 21db7e4 Compare January 27, 2026 01:06
@renovate renovate bot changed the title chore(deps): update dependency ty to v0.0.13 chore(deps): update dependency ty to v0.0.14 Jan 27, 2026
@renovate renovate bot force-pushed the renovate/ty-0.x branch 4 times, most recently from 534781d to 1f2f8e3 Compare February 2, 2026 23:34
@renovate renovate bot force-pushed the renovate/ty-0.x branch from 1f2f8e3 to a8d3d0a Compare February 4, 2026 00:57
@renovate renovate bot force-pushed the renovate/ty-0.x branch from a8d3d0a to 97c8adc Compare February 5, 2026 02:12
@renovate renovate bot changed the title chore(deps): update dependency ty to v0.0.14 chore(deps): update dependency ty to v0.0.15 Feb 5, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants