-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update dependency pyright to ^1.1.392 #2661
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
renovate
bot
added
the
changelog:skip
Don't include this pull request in the release change log
label
Nov 13, 2024
github-actions
bot
added
the
dependencies
Pull request that updates a dependency file
label
Nov 13, 2024
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #2661 +/- ##
==========================================
- Coverage 90.31% 90.30% -0.01%
==========================================
Files 256 256
Lines 15820 15820
==========================================
- Hits 14288 14287 -1
- Misses 1532 1533 +1 ☔ View full report in Codecov by Sentry. |
renovate
bot
force-pushed
the
renovate/pyright-1.x
branch
8 times, most recently
from
November 21, 2024 20:57
22c2779
to
d693db3
Compare
renovate
bot
force-pushed
the
renovate/pyright-1.x
branch
8 times, most recently
from
December 4, 2024 04:39
2720fe4
to
0204da4
Compare
renovate
bot
changed the title
Update dependency pyright to ^1.1.389
Update dependency pyright to ^1.1.390
Dec 4, 2024
renovate
bot
force-pushed
the
renovate/pyright-1.x
branch
4 times, most recently
from
December 4, 2024 19:02
5596932
to
0e92515
Compare
renovate
bot
force-pushed
the
renovate/pyright-1.x
branch
5 times, most recently
from
December 13, 2024 16:45
0cff833
to
ccb4864
Compare
renovate
bot
force-pushed
the
renovate/pyright-1.x
branch
from
December 18, 2024 02:36
ccb4864
to
068ccb1
Compare
renovate
bot
changed the title
Update dependency pyright to ^1.1.390
Update dependency pyright to ^1.1.391
Dec 18, 2024
renovate
bot
force-pushed
the
renovate/pyright-1.x
branch
4 times, most recently
from
December 18, 2024 18:27
976f6e7
to
b5ed5b1
Compare
renovate
bot
force-pushed
the
renovate/pyright-1.x
branch
11 times, most recently
from
January 8, 2025 19:25
8c58ad2
to
1d0700a
Compare
renovate
bot
force-pushed
the
renovate/pyright-1.x
branch
from
January 15, 2025 01:24
1d0700a
to
7df93df
Compare
renovate
bot
changed the title
Update dependency pyright to ^1.1.391
Update dependency pyright to ^1.1.392
Jan 15, 2025
renovate
bot
force-pushed
the
renovate/pyright-1.x
branch
4 times, most recently
from
January 20, 2025 16:18
cea4fed
to
7cfa2bf
Compare
renovate
bot
force-pushed
the
renovate/pyright-1.x
branch
from
January 20, 2025 16:41
7cfa2bf
to
1c25176
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
changelog:skip
Don't include this pull request in the release change log
dependencies
Pull request that updates a dependency file
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^1.1.388
->^1.1.392
Release Notes
Microsoft/pyright (pyright)
v1.1.392
: Published 1.1.392Compare Source
Bug Fixes:
Concatenate
andParamSpec
.extraPaths
configuration option within an execution extending rather than overriding theextraPaths
provided in the top-level config.__getitem__
,__setitem__
and__delitem__
magic method modeling to handle descriptor objects.Self
.__new__
and__init__
with differing bidirectional type inference contexts.Behavior Changes:
list
,dict
andtype
rather than their deprecated uppercase counterparts now that Python 3.8 is EOL'ed.issubclass
in the negative ("else") case when the subject type istype
orAny
.Enhancements:
cast
call.__aexit__
is awaitable and improved error messages for the case where__enter__
, etc. are present but have incorrect signatures.v1.1.391
: Published 1.1.391Compare Source
Bug Fixes:
Self
is errantly specialized.ClassVar
andFinal
qualifier are both used on the same dataclass attribute.--verifytypes
is used and a subclass overrides an attribute that is generic in the base class.__add__
is implemented with a descriptor object.--verifytypes
while targeting a submodule within a package and that submodule is a single-file module.isinstance
type narrowing logic that affects the case where the filter type is a metaclass.Enhancements:
except
clause.reportUnnecessaryComparison
rule for simple wildcard patterns in acase
clause.v1.1.390
: Published 1.1.390Compare Source
Bug Fixes:
x in y
pattern wherey
is a container type whose element type isUnknown
orAny
.Callable[..., T]
form.__getitem__
is set to a callable object.--verifytypes
command.Enhancements:
\u
and\N
escapes within bytes literals, which are illegal.Final
annotation in a dataclass entry that has a default value assigned to it.Final
variable from another module and then attempting to overwrite it.Final
variable declared by the builtins module or some other chained file.slice
class type arguments for slice expressions.ClassVar
qualifier within aNamedTuple
orTypedDict
attribute annotation.Behavior Changes:
ExceptionGroup
rather thanBaseExceptionGroup
.v1.1.389
: Published 1.1.389Compare Source
Bug Fixes:
|
union operator creates a union of generic types. These types should be specialized with default type arguments.None
.match
statement uses a pattern with a target expression that overwrites the subject expression.reportUnknownArgumentType
error if the argument is an expression involving an__init__
parameter in an unannotated (pseudo-generic) class.type(A)
as a base class or a metaclass in a class definition.TypeAliasType
call to create a public symbol in a "py.typed" library.Enhancements:
except*
clause to report invalid usage that is flagged as a syntax error at runtime.await
keyword in a lambda.await
andasync
within list, set and dictionary comprehensions within a non-async function.x
is a TypeVar.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.
This PR was generated by Mend Renovate. View the repository job log.