-
Notifications
You must be signed in to change notification settings - Fork 9
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
Lock file maintenance poetry all non-major dependencies #3302
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3302 +/- ##
=======================================
Coverage 81.84% 81.84%
=======================================
Files 276 276
Lines 9550 9550
Branches 450 450
=======================================
Hits 7816 7816
Misses 1615 1615
Partials 119 119 ☔ View full report in Codecov by Sentry. |
59b5d41
to
311656c
Compare
68f70aa
to
492a769
Compare
⚠ Artifact update problemRenovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens:
The artifact failure details are included below: File name: sfms/poetry.lock
|
492a769
to
ef095dd
Compare
ef095dd
to
b7f199a
Compare
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. ⚠ Warning: custom changes will be lost. |
Quality Gate passedKudos, no new issues were introduced! 0 New issues |
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Conor Brady <con.brad@gmail.com>
This PR contains the following updates:
2.3.4
->2.9.0
1.13.0
->1.13.1
0.105.0
->0.108.0
0.14.2
->0.14.3
0.14.1
->0.14.2
3.0.2
->3.0.3
^0.25.0
->^0.26.0
1.26.2
->1.26.3
2.13.9
->2.17.7
7.4.3
->7.4.4
7.0.1
->7.4.4
7.4.3
->7.4.4
0.1.8
->0.1.11
1.8.5.post1
->1.8.5
1.4.50
->1.4.51
>=3.6.8,<=3.6.15
->>=3.10.0,<=3.10.0
3.6
->3.8
3.5.14
->3.5.15
69.0.2
->69.0.3
2.0.23
->2.0.25
0.24.0.post1
->0.25.0
🔧 This Pull Request updates lock files to use the latest dependency versions.
Release Notes
aio-libs/aiobotocore (aiobotocore)
v2.9.0
Compare Source
What's Changed
get_object
by @grigoriev-semyon in https://github.com/aio-libs/aiobotocore/pull/1062botocore
by @jakob-keller in https://github.com/aio-libs/aiobotocore/pull/1063New Contributors
Full Changelog: aio-libs/aiobotocore@2.8.0...2.9.0
v2.8.0
: aiobotocore 2.8.0Compare Source
What's Changed
flake8-formatter-abspath
by @jakob-keller in https://github.com/aio-libs/aiobotocore/pull/1051aiobotocore.session.Session
symbol by @jakob-keller in https://github.com/aio-libs/aiobotocore/pull/1047botocore
by @jakob-keller in https://github.com/aio-libs/aiobotocore/pull/1048botocore
by @jakob-keller in https://github.com/aio-libs/aiobotocore/pull/1057New Contributors
Full Changelog: aio-libs/aiobotocore@2.7.0...2.8.0
v2.7.0
: aiobotocore 2.7.0Compare Source
What's Changed
botocore
andurllib3 2.0
by @jakob-keller in https://github.com/aio-libs/aiobotocore/pull/1037New Contributors
Full Changelog: aio-libs/aiobotocore@2.6.0...2.7.0
v2.6.0
: aiobotocore 2.6.0Compare Source
What's Changed
Full Changelog: aio-libs/aiobotocore@2.5.4...2.6.0
v2.5.4
: aiobotocore 2.5.4Compare Source
What's Changed
__aenter__
#1031 by @thehesiod in https://github.com/aio-libs/aiobotocore/pull/1032Full Changelog: aio-libs/aiobotocore@2.5.3...2.5.4
v2.5.3
: aiobotocore 2.5.3Compare Source
What's Changed
New Contributors
Full Changelog: aio-libs/aiobotocore@2.5.2...2.5.3
v2.5.2
: aiobotocore 2.5.2Compare Source
What's Changed
Full Changelog: aio-libs/aiobotocore@2.5.1...2.5.2
v2.5.1
: aiobotocore 2.5.1Compare Source
What's Changed
Full Changelog: aio-libs/aiobotocore@2.5.0...2.5.1
v2.5.0
: aiobotocore 2.5.0Compare Source
What's Changed
New Contributors
Full Changelog: aio-libs/aiobotocore@2.4.2...2.5.0
v2.4.2
: aiobotocore 2.4.2Compare Source
What's Changed
Full Changelog: aio-libs/aiobotocore@2.4.1...2.4.2
v2.4.1
: aiobotocore 2.4.1Compare Source
What's Changed
New Contributors
Full Changelog: aio-libs/aiobotocore@2.4.0...2.4.1
v2.4.0
: aiobotocore 2.4.0Compare Source
What's Changed
New Contributors
Full Changelog: aio-libs/aiobotocore@2.3.4...2.4.0
tiangolo/fastapi (fastapi)
v0.108.0
Compare Source
Upgrades
>=0.29.0,<0.33.0
, update docs and usage of templates with new Starlette arguments. PR #10846 by @tiangolo.v0.107.0
Compare Source
Upgrades
Docs
v0.106.0
Compare Source
Breaking Changes
Using resources from dependencies with
yield
in background tasks is no longer supported.This change is what supports the new features, read below. 🤓
Dependencies with
yield
,HTTPException
and Background TasksDependencies with
yield
now can raiseHTTPException
and other exceptions afteryield
. 🎉Read the new docs here: Dependencies with
yield
andHTTPException
.Before FastAPI 0.106.0, raising exceptions after
yield
was not possible, the exit code in dependencies withyield
was executed after the response was sent, so Exception Handlers would have already run.This was designed this way mainly to allow using the same objects "yielded" by dependencies inside of background tasks, because the exit code would be executed after the background tasks were finished.
Nevertheless, as this would mean waiting for the response to travel through the network while unnecessarily holding a resource in a dependency with yield (for example a database connection), this was changed in FastAPI 0.106.0.
Additionally, a background task is normally an independent set of logic that should be handled separately, with its own resources (e.g. its own database connection).
If you used to rely on this behavior, now you should create the resources for background tasks inside the background task itself, and use internally only data that doesn't depend on the resources of dependencies with
yield
.For example, instead of using the same database session, you would create a new database session inside of the background task, and you would obtain the objects from the database using this new session. And then instead of passing the object from the database as a parameter to the background task function, you would pass the ID of that object and then obtain the object again inside the background task function.
The sequence of execution before FastAPI 0.106.0 was like the diagram in the Release Notes for FastAPI 0.106.0.
The new execution flow can be found in the docs: Execution of dependencies with
yield
.geoalchemy/geoalchemy2 (geoalchemy2)
v0.14.3
Compare Source
geopandas/geopandas (geopandas)
v0.14.2
Compare Source
overlay
where usingbuffer(0)
instead ofmake_valid
internallyproduced invalid results (#3074).
explore()
method when the active geometry contains missing and empty geometries (#3094).encode/httpx (httpx)
v0.26.0
Compare Source
Added
proxy
argument was added. You should use theproxy
argument instead of the deprecatedproxies
, or usemounts=
for more complex configurations. (#2879)Deprecated
proxies
argument is now deprecated. It will still continue to work, but it will be removed in the future. (#2879)Fixed
NO_PROXY
envvar cases when a fully qualified URL is supplied as the value. (#2741)raw_path
does not include URL query component. (#2999)Response.iter_text()
cannot yield empty strings. (#2998)numpy/numpy (numpy)
v1.26.3
Compare Source
pylint-dev/pylint (pylint)
v2.17.7
Compare Source
2.17.7 is the last release before we only support pylint 3.0.0 or superior and python 3.8 or superior.
False Positives Fixed
Fix a regression in pylint 2.17.6 / astroid 2.15.7 causing various
messages for code involving
TypeVar
.Closes #9069
Other Bug Fixes
Fix crash in refactoring checker when unary operand used with variable in for
loop.
Closes #9074
v2.17.6
Compare Source
Other Bug Fixes
When parsing comma-separated lists of regular expressions in the config,
ignore commas that are inside braces since those indicate quantifiers, not
delineation between expressions.
Closes #7229
sys.argv
is now always correctly considered as impossible to infer(instead of using the actual values given to pylint).
Closes #9047
Don't show class fields more than once in Pyreverse diagrams.
Closes #8189
Don't show arrows more than once in Pyreverse diagrams.
Closes #8522
Don't show duplicate type annotations in Pyreverse diagrams.
Closes #8888
Don't add
Optional
to|
annotations withNone
in Pyreverse diagrams.Closes #9014
v2.17.5
Compare Source
What's new in Pylint 2.17.5?
Release date: 2023-07-26
False Positives Fixed
Fix a false positive for
unused-variable
when there is an import in aif TYPE_CHECKING:
block andallow-global-unused-variables
is set tono
in the configuration.Closes #8696
Fix false positives generated when supplying arguments as
**kwargs
to IOcalls like open().
Closes #8719
Fix a false positive where pylint was ignoring method calls annotated as
NoReturn
during theinconsistent-return-statements
check.Closes #8747
Exempt parents with only type annotations from the
invalid-enum-extension
message.
Closes #8830
Other Bug Fixes
Fixed crash when a call to
super()
was placed after an operator (e.g.not
).Closes #8554
Fix crash for
modified-while-iterating
checker when deletingmembers of a dict returned from a call.
Closes #8598
Fix crash in
invalid-metaclass
check when a metaclass had duplicatebases.
Closes #8698
Avoid
consider-using-f-string
on modulos with brackets in template.Closes #8720.
Fix a crash when
__all__
exists but cannot be inferred.Closes #8740
Fix crash when a variable is assigned to a class attribute of identical name.
Closes #8754
Fixed a crash when calling
copy.copy()
without arguments.Closes #8774
Other Changes
Fix a crash when a
nonlocal
is defined at module-level.Closes #8735
v2.17.4
Compare Source
False Positives Fixed
Fix a false positive for
bad-dunder-name
when there is a user-defined__index__
method.Closes #8613
Other Bug Fixes
pyreverse
: added escaping of vertical bar character in annotation labelsproduced by DOT printer to ensure it is not treated as field separator of
record-based nodes.
Closes #8603
Fixed a crash when generating a configuration file:
tomlkit.exceptions.TOMLKitError: Can't add a table to a dotted key
caused by tomlkit
v0.11.8
.Closes #8632
v2.17.3
Compare Source
What's new in Pylint 2.17.3?
Release date: 2023-04-24
False Positives Fixed
Fix
unused-argument
false positive when__new__
does not use all thearguments of
__init__
.Closes #3670
Fix
unused-import
false positive for usage ofsix.with_metaclass
.Closes #7506
logging-not-lazy
is not longer emitted for explicitly concatenated stringarguments.
Closes #8410
Fix false positive for isinstance-second-argument-not-valid-type when union
types contains None.
Closes #8424
Fixed
unused-import
so that it observes thedummy-variables-rgx
option.Closes #8500
Union
typed variables without assignment are no longer treated asTypeAlias
.Closes #8540
Fix false positive for
positional-only-arguments-expected
when a functioncontains both a positional-only parameter that has a default value, and
**kwargs
.Closes #8555
Fix false positive for
keyword-arg-before-vararg
when a positional-onlyparameter with a default value precedes
*args
.Closes #8570
Other Bug Fixes
Improve output of
consider-using-generator
message formin()` calls with
default`` keyword.Closes #8563
v2.17.2
Compare Source
False Positives Fixed
invalid-name
now allows for integers intypealias
names:Good2Name
,GoodName2
._1BadName
.Closes #8485
No longer consider
Union
as type annotation as type alias for namingchecks.
Closes #8487
unnecessary-lambda
no longer warns on lambdas which use its parameters intheir body (other than the final arguments), e.g.
lambda foo: (bar if foo else baz)(foo)
.Closes #8496
Other Bug Fixes
Fix a crash in pyreverse when "/" characters are used in the output filename
e.g pyreverse -o png -p name/ path/to/project.
Closes #8504
v2.17.1
Compare Source
False Positives Fixed
Adds
asyncSetUp
to the defaultdefining-attr-methods
list to silenceattribute-defined-outside-init
warning when usingunittest.IsolatedAsyncioTestCase
.Refs #8403
Other Bug Fixes
--clear-cache-post-run
now also clears LRU caches for pylint utilitiesholding references to AST nodes.
Closes #8361
Fix a crash when
TYPE_CHECKING
is used without importing it.Closes #8434
Fix a regression of
preferred-modules
where a partial match was usedinstead of the required full match.
Closes #8453
Internal Changes
The following utilities are deprecated in favor of the more robust
in_type_checking_block
and will be removed in pylint 3.0:
is_node_in_guarded_import_block
is_node_in_typing_guarded_import_block
is_typing_guard
is_sys_guard
is still available, which was part ofis_node_in_guarded_import_block
.Refs #8433
v2.17.0
Compare Source
2.17 is a small release that is the first to support python 3.11 officially
with the addition of TryStar nodes.
There's still two new default checks:
bad-chained-comparison
andimplicit-flag-alias
, one of them already fixed a previously undetectedbug in sentry.
Thanks to the community effort our documentation is almost complete,
and almost all messages should have a proper documentation now.
A big thank you to everyone who participated !
The next release is going to be
3.0.0
, bring breaking changes andenact long announced deprecations. There's going to be frequent beta
releases, before the official releases, everyone is welcome to try the betas
so we find problems before the actual release.
What's new in Pylint 2.17.0?
Release date: 2023-03-08
New Features
pyreverse
now supports custom color palettes with the--color-palette
option.
Closes #6738
Add
invalid-name
check forTypeAlias
names.Closes #7081
Accept values of the form
<class name>.<attribute name>
for theexclude-protected
list.Closes #7343
Add
--version
option topyreverse
.Refs #7851
Adds new functionality with preferred-modules configuration to detect
submodules.
Refs #7957
Support implicit namespace packages (PEP 420).
Closes #8154
Add globbing pattern support for
--source-roots
.Closes #8290
Support globbing pattern when defining which file/directory/module to lint.
Closes #8310
pylint now supports
TryStar
nodes from Python 3.11 and should be fullycompatible with Python 3.11.
Closes #8387
New Checks
Add a
bad-chained-comparison
check that emits a warning whenthere is a chained comparison where one expression is semantically
incompatible with the other.
Closes #6559
Adds an
implicit-flag-alias
check that emits a warning when a classderived from
enum.IntFlag
assigns distinct integer values that sharecommon bit positions.
Refs #8102
False Positives Fixed
Fix various false positives for functions that return directly from
structural pattern matching cases.
Closes #5288
Fix false positive for
used-before-assignment
whentyping.TYPE_CHECKING
is used with if/elif/else blocks.Closes #7574
Fix false positive for isinstance-second-argument-not-valid-type with union
types.
Closes #8205
Fix false positive for
used-before-assignment
for named expressionsappearing after the first element in a list, tuple, or set.
Closes #8252
Fix false positive for
wrong-spelling-in-comment
with class names in apython 2 type comment.
Closes #8370
False Negatives Fixed
Fix a false negative for 'missing-parentheses-for-call-in-test' when
inference
failed for the internal of the call as we did not need that information to
raise
correctly.
Refs #8185
Fix false negative for inconsistent-returns with while-loops.
Closes #8280
Other Bug Fixes
Fix
used-before-assignment
false positive when the walrus operatoris used with a ternary operator in dictionary key/value initialization.
Closes #8125
Fix
no-name-in-module
false positive raised when a package defines avariable with the
same name as one of its submodules.
Closes #8148
Fix a crash happening for python interpreter < 3.9 following a failed typing
update.
Closes #8161
Fix
nested-min-max
suggestion message to indicate it's possible to splatiterable objects.
Closes #8168
Fix a crash happening when a class attribute was negated in the start
argument of an enumerate.
Closes #8207
Prevent emitting
invalid-name
for the line on which aglobal
statement is declared.
Closes #8307
Other Changes
Update explanation for
global-variable-not-assigned
and add confidence.Closes #5073
The governance model and the path to become a maintainer have been documented
as part of our effort to guarantee that the software supply chain in which pylint is included is secure.
Refs #8329
v2.16.4
Compare Source
False Positives Fixed
Fix false positive for isinstance-second-argument-not-valid-type with union
types.
Closes #8205
v2.16.3
Compare Source
False Positives Fixed
Fix false positive for
wrong-spelling-in-comment
with class names in apython 2 type comment.
Closes #8370
Other Bug Fixes
Prevent emitting
invalid-name
for the line on which aglobal
statement is declared.
Closes #8307
v2.16.2
Compare Source
New Features
Add
--version
option topyreverse
.Refs #7851
False Positives Fixed
Fix false positive for
used-before-assignment
whentyping.TYPE_CHECKING
is used with if/elif/else blocks.Closes #7574
Fix false positive for
used-before-assignment
for named expressionsappearing after the first element in a list, tuple, or set.
Closes #8252
Other Bug Fixes
Fix
used-before-assignment
false positive when the walrus operatoris used with a ternary operator in dictionary key/value initialization.
Closes #8125
Fix
no-name-in-module
false positive raised when a package defines avariable with the same name as one of its submodules.
Closes #8148
Fix
nested-min-max
suggestion message to indicate it's possible to splatiterable objects.
Closes #8168
Fix a crash happening when a class attribute was negated in the start
argument of an enumerate.
Closes #8207
v2.16.1
Compare Source
Other Bug Fixes
Fix a crash happening for python interpreter < 3.9 following a failed typing
update.
Closes #8161
v2.16.0
Compare Source
Summary -- Release highlights
In 2.16.0 we added aggregation and composition understanding in
pyreverse
, and a way to clearthe cache in between run in server mode (originally for the VS Code integration). Apart from the bug
fixes there's also a lot of new checks, and new extensions that have been asked for for a long time
that were implemented.
If you want to benefit from all the new checks load the following plugins::
We still welcome any community effort to help review, integrate, and add good/bad examples to the doc for
#5953. This should be doable without any
pylint
orastroid
knowledge, so this is the perfect entrypoint if you want to contribute to
pylint
or open source withoutany experience with our code!
Last but not least @clavedeluna and @nickdrozd became triagers, welcome to the team !
What's new in Pylint 2.16.0?
Changes requiring user actions
The
accept-no-raise-doc
option related tomissing-raises-doc
will nowbe correctly taken into account all the time.
Pylint will no longer raise missing-raises-doc (W9006) when no exceptions are
documented and accept-no-raise-doc is true (issue #7208).
If you were expecting missing-raises-doc errors to be raised in that case,
you
will now have to add
accept-no-raise-doc=no
in your configuration to keepthe same behavior.
Closes #7208
New Features
Added the
no-header
output format. If enabled with--output-format=no-header
, it will not include the module name in theoutput.
Closes #5362
Added configuration option
clear-cache-post-run
to support server-likeusage.
Use this flag if you expect the linted files to be altered between runs.
Refs #5401
Add
--allow-reexport-from-package
option to configure theuseless-import-alias
check not to emit a warning if a nameis reexported from a package.
Closes #6006
Update
pyreverse
to differentiate between aggregations and compositions.pyreverse
checks if it's an Instance or a Call of an object via methodparameters (via type hints)
to decide if it's a composition or an aggregation.
Refs #6543
New Checks
Adds a
pointless-exception-statement
check that emits a warning when anException is created and not assigned, raised or returned.
Refs #3110
Add a
shadowed-import
message for aliased imports.Closes #4836
Add new check called
unbalanced-dict-unpacking
to check for unbalanceddict unpacking
in assignment and for loops.
Closes #5797
Add new checker
positional-only-arguments-expected
to check for caseswhen
positional-only arguments have been passed as keyword arguments.
Closes #6489
Added
singledispatch-method
which informs that@singledispatch
shoulddecorate functions and not class/instance methods.
Added
singledispatchmethod-function
which informs that@singledispatchmethod
should decorate class/instance methods and notfunctions.
Closes #6917
Rename
broad-except
tobroad-exception-caught
and add new checkerbroad-exception-raised
which will warn if general exceptions
BaseException
orException
areraised.
Closes #7494
Added
nested-min-max
which flagsmin(1, min(2, 3))
to simplify tomin(1, 2, 3)
.Closes #7546
Extended
use-dict-literal
to also warn about call to `dict(Configuration
📅 Schedule: Branch creation - "before 4am on monday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ 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 if that's undesired.
This PR has been generated by Mend Renovate. View repository job log here.
Test Links:
Landing Page
MoreCast 2.0
Percentile Calculator
MoreCast
C-Haines
FireBat
FireBat bookmark
Auto Spatial Advisory (ASA)
HFI Calculator