Lock file maintenance Python dependencies #707
+252
−256
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.35.87
->^1.35.94
^7.6.9
->^7.6.10
^3.1.4
->^3.1.5
1.10.19
->1.10.20
^1.10.19
->^1.10.20
^0.8.4
->^0.8.6
🔧 This Pull Request updates lock files to use the latest dependency versions.
Release Notes
boto/boto3 (boto3)
v1.35.94
Compare Source
=======
cloudhsmv2
: [botocore
] Adds support to ModifyCluster for modifying a Cluster's Hsm Type.dynamodb
: [botocore
] This release makes Amazon DynamoDB point-in-time-recovery (PITR) to be configurable. You can set PITR recovery period for each table individually to between 1 and 35 days.imagebuilder
: [botocore
] This release adds support for importing images from ISO disk files. Added new ImportDiskImage API operation.v1.35.93
Compare Source
=======
iotsecuretunneling
: [botocore
] Adds dualstack endpoint support for IoT Secure Tunnelingsupplychain
: [botocore
] Allow vanity DNS domain when creating a new ASC instancev1.35.92
Compare Source
=======
ecs
: [botocore
] Adding SDK reference examples for Amazon ECS operations.route53domains
: [botocore
] Doc only update for Route 53 Domains that fixes several customer-reported issuess3
: [botocore
] This change is only for updating the model regexp of CopySource which is not for validation but only for documentation and user guide change.v1.35.91
Compare Source
=======
appsync
: [botocore
] Modify UpdateGraphQLAPI operation and flag authenticationType as required.gamelift
: [botocore
] Amazon GameLift releases a new game session shutdown feature. Use the Amazon GameLift console or AWS CLI to terminate an in-progress game session that's entered a bad state or is no longer needed.mediaconnect
: [botocore
] AWS Elemental MediaConnect now supports Content Quality Analysis for enhanced source stream monitoring. This enables you to track specific audio and video metrics in transport stream source flows, ensuring your content meets quality standards.mediaconvert
: [botocore
] This release adds support for the AVC3 codec and fixes an alignment issue with Japanese vertical captions.organizations
: [botocore
] Added ALL_FEATURES_MIGRATION_ORGANIZATION_SIZE_LIMIT_EXCEEDED to ConstraintViolationException for the EnableAllFeatures operation.sagemaker
: [botocore
] Adding ETag information with Model Artifacts for Model Registrysqs
: [botocore
] In-flight message typo fix from 20k to 120k.v1.35.90
Compare Source
=======
ecr
: [botocore
] Restoring custom endpoint functionality for ECRecr-public
: [botocore
] Restoring custom endpoint functionality for ECR Publicv1.35.89
Compare Source
=======
rds
: [botocore
] Updates Amazon RDS documentation to correct various descriptions.v1.35.88
Compare Source
=======
bcm-pricing-calculator
: [botocore
] Added ConflictException to DeleteBillEstimate.ecr
: [botocore
] Add support for Dualstack Endpointsnetwork-firewall
: [botocore
] Dual-stack endpoints are now supported.securityhub
: [botocore
] Documentation updates for AWS Security Hubnedbat/coveragepy (coverage)
v7.6.10
Compare Source
Fix: some descriptions of missing branches in HTML and LCOV reports were
incorrect when multi-line statements were involved (
issue 1874
_ andissue 1875
_). These are now fixed.Fix: Python 3.14
defers evaluation of annotations <pep649_>
_ by moving theminto separate code objects. That code is rarely executed, so coverage.py
would mark them as missing, as reported in
issue 1908
_. Now they areignored by coverage automatically.
Fixed an obscure and mysterious problem on PyPy 3.10 seemingly involving
mocks, imports, and trace functions:
issue 1902
_. To be honest, I don'tunderstand the problem or the solution, but
git bisect
helped find it,and now it's fixed.
Docs: re-wrote the :ref:
subprocess
page to put multiprocessing first and tohighlight the correct use of :class:
multiprocessing.Pool <python:multiprocessing.pool.Pool>
... _issue 1874:https://github.com/nedbat/coveragepy/issues/18744
.. _issue 1875https://github.com/nedbat/coveragepy/issues/187575
.. _issue 190https://github.com/nedbat/coveragepy/issues/1902902
.. _issue 19https://github.com/nedbat/coveragepy/issues/19081908
.. _pep649: https://docs.python.org/3.14/whatsnew/3.14.html#pep-649-deferred-evaluation-of-annotations
.. _changes_7-6-9:
pydantic/pydantic (pydantic)
v1.10.20
Compare Source
astral-sh/ruff (ruff)
v0.8.6
Compare Source
Preview features
format
]: Preserve multiline implicit concatenated strings in docstring positions (#15126)ruff
] Add rule to detect empty literal in deque call (RUF025
) (#15104)ruff
] Avoid reporting whenndigits
is possibly negative (RUF057
) (#15234)Rule changes
flake8-todos
] remove issue code length restriction (TD003
) (#15175)pyflakes
] Ignore errors in@no_type_check
string annotations (F722
,F821
) (#15215)CLI
--verbose
(#15237)Bug fixes
ruff
] Avoid syntax error when removing int over multiple lines (RUF046
) (#15230)pyupgrade
] Revert "Add all PEP-585 names toUP006
rule" (#15250)v0.8.5
Compare Source
Preview features
airflow
] Extend names moved from core to provider (AIR303
) (#15145, #15159, #15196, #15216)airflow
] Extend rule to check class attributes, methods, arguments (AIR302
) (#15054, #15083)fastapi
] UpdateFAST002
to check keyword-only arguments (#15119)flake8-type-checking
] DisableTC006
andTC007
in stub files (#15179)pylint
] Detect nested methods correctly (PLW1641
) (#15032)ruff
] Detect more strict-integer expressions (RUF046
) (#14833)ruff
] Implementfalsy-dict-get-fallback
(RUF056
) (#15160)ruff
] Implementunnecessary-round
(RUF057
) (#14828)Rule changes
TypedDict
keys as non-type-expressions (#15073)flake8-comprehensions
] SkipC416
if comprehension contains unpacking (#14909)flake8-pie
] Allowcast(SomeType, ...)
(PIE796
) (#15141)flake8-simplify
] More precise inference for dictionaries (SIM300
) (#15164)flake8-use-pathlib
] Catch redundant joins inPTH201
and avoid syntax errors (#15177)pycodestyle
] Preserve original value format (E731
) (#15097)pydocstyle
] Split on first whitespace character (D403
) (#15082)pyupgrade
] Add all PEP-585 names toUP006
rule (#5454)Configuration
flake8-type-checking
] Improve flexibility ofruntime-evaluated-decorators
(#15204)pydocstyle
] Add setting to ignore missing documentation for*args
and**kwargs
parameters (D417
) (#15210)ruff
] Add an allowlist forunsafe-markup-use
(RUF035
) (#15076)Bug fixes
TypeChecker
for detectingfastapi
routes (#15093)pycodestyle
] Avoid false positives and negatives related to type parameter default syntax (E225
,E251
) (#15214)Documentation
shebang-not-executable
(EXE001
) and add git+windows solution to executable bit (#15208)Configuration
📅 Schedule: Branch creation - "after 1am and before 3am every weekday" in timezone Etc/UTC, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, 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 was generated by Mend Renovate. View the repository job log.