fix(deps): update all non-major dependencies
This MR contains the following updates:
| Package | Change | Age | Confidence | Type | Update |
|---|---|---|---|---|---|
| boto3 |
1.42.34 → 1.42.35
|
project.dependencies | patch | ||
| coverage |
7.11.0 → 7.13.2
|
dev | minor | ||
| google-auth |
2.47.0 → 2.48.0
|
project.dependencies | minor | ||
| moto (changelog) |
5.1.16 → 5.1.20
|
dev | patch | ||
| poetry (changelog) |
2.2.1 → 2.3.1
|
minor | |||
| pre-commit/mirrors-mypy |
v1.18.2 → v1.19.1
|
repository | minor | ||
| tox (changelog) |
4.32.0 → 4.34.1
|
minor | |||
| tox (changelog) |
4.32.0 → 4.34.1
|
dev | minor | ||
| uis/devops/continuous-delivery/ci-templates |
v7.20.2 → v7.25.16
|
repository | minor |
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 if you have any questions.
Release Notes
boto/boto3 (boto3)
v1.42.35
=======
- api-change:
connectcases: [botocore] Amazon Connect now enables you to use tag-based access controls to define who can access specific cases. You can associate tags with case templates and configure security profiles to determine which users can access cases with those tags. - api-change:
ec2: [botocore] DescribeInstanceTypes API response now includes an additionalFlexibleNetworkInterfaces field, the number of interfaces attachable to an instance when using flexible Elastic Network Adapter (ENA) queues in addition to the base number specified by maximumNetworkInterfaces. - api-change:
evidently: [botocore] Deprecate all Evidently API for AWS CloudWatch Evidently deprecation - api-change:
groundstation: [botocore] Adds support for AWS Ground Station Telemetry.
coveragepy/coveragepy (coverage)
v7.13.2
-
Fix: when Python is installed via symlinks, for example with Homebrew, the standard library files could be incorrectly included in coverage reports. This is now fixed, closing
issue 2115_. -
Fix: if a data file is created with no read permissions, the combine step would fail completely. Now a warning is issued and the file is skipped. Closes
issue 2117_.
.. _issue 2115: #2115 .. _issue 2117: #2117
.. _changes_7-13-1:
v7.13.1
-
Added: the JSON report now includes a
"start_line"key for function and class regions, indicating the first line of the region in the source. Closesissue 2110_. -
Added: The
debug datacommand now takes file names as arguments on the command line, so you can inspect specific data files without needing to set theCOVERAGE_FILEenvironment variable. -
Fix: the JSON report used to report module docstrings as executed lines, which no other report did, as described in
issue 2105_. This is now fixed, thanks to Jianrong Zhao. -
Fix: coverage.py uses a more disciplined approach to detecting where third-party code is installed, and avoids measuring it. This shouldn't change any behavior. If you find that it does, please get in touch.
-
Performance: data files that will be combined now record their hash as part of the file name. This lets us skip duplicate data more quickly, speeding the combining step.
-
Docs: added a section explaining more about what is considered a missing branch and how it is reported: :ref:
branch_explain, as requested inissue 1597. Thanks toAyisha Mohammed <pull 2092_>. -
Tests: the test suite misunderstood what core was being tested if
COVERAGE_COREwasn't set on 3.14+. This is now fixed, closingissue 2109_.
.. _issue 1597: #1597 .. _pull 2092: #2092 .. _issue 2105: #2105 .. _issue 2109: #2109 .. _issue 2110: #2110
.. _changes_7-13-0:
v7.13.0
-
Feature: coverage.py now supports :file:
.coveragerc.tomlconfiguration files. These files use TOML syntax and take priority over :file:pyproject.tomlbut lower priority than :file:.coveragercfiles. Closesissue 1643_ thanks toOlena Yefymenko <pull 1952_>_. -
Fix: we now include a permanent .pth file which is installed with the code, fixing
issue 2084. In 7.12.1b1 this was done incorrectly: it didn't work when using the source wheel (py3-none-any). This is now fixed. Thanks,Henry Schreiner <pull 2100_>. -
Deprecated: when coverage.py is installed, it creates three command entry points:
coverage,coverage3, andcoverage-3.10(if installed for Python 3.10). The second and third of these are not needed and will eventually be removed. They still work for now, but print a message about their deprecation.
.. _issue 1643: #1643 .. _pull 1952: #1952 .. _pull 2100: #2100
.. _changes_7-12-1b1:
v7.12.0
-
The HTML report now shows separate coverage totals for statements and branches, as well as the usual combined coverage percentage. Thanks to Ryuta Otsuka for the
discussion <issue 2081_>_ and theimplementation <pull 2085_>_. -
The JSON report now includes separate coverage totals for statements and branches, thanks to
Ryuta Otsuka <pull 2090_>_. -
Fix:
except*clauses were not handled properly under the "sysmon" measurement core, causing KeyError exceptions as described inissue 2086_. This is now fixed. -
Fix: we now defend against aggressive mocking of
open()that could cause errors inside coverage.py. An example of a failure is inissue 2083_. -
Fix: in unusual cases where a test suite intentionally exhausts the system's file descriptors to test handling errors in
open(), coverage.py would fail when trying to open source files, as described inissue 2091_. This is now fixed. -
A small tweak to the HTML report: file paths now use thin spaces around slashes to make them easier to read.
.. _issue 2081: #2081 .. _issue 2083: #2083 .. _pull 2085: #2085 .. _issue 2086: #2086 .. _pull 2090: #2090 .. _issue 2091: #2091
.. _changes_7-11-3:
v7.11.3
-
Fix: the 7.11.1 changes meant that conflicts between a requested measurement core and other settings would raise an error. This was a breaking change from previous behavior, as reported in
issue 2076_ andissue 2078_.The previous behavior has been restored: when the requested core conflicts with other settings, another core is used instead, and a warning is issued.
-
For contributors: the repo has moved from Ned's
nedbat GitHub account_ to thecoveragepy GitHub organization_. The default branch has changed from master to main.
.. _issue 2076: #2076 .. _issue 2078: #2078 .. _nedbat GitHub account: https://github.com/nedbat .. _coveragepy GitHub organization: https://github.com/coveragepy
.. _changes_7-11-2:
v7.11.2
-
Fix: using the "sysmon" measurement core in 7.11.1, if Python code was claimed to come from a non-Python file, a
NotPythonexception could be raised. This could happen for example with Jinja templates compiled to Python, as reported inissue 2077_. This is now fixed. -
Doc: corrected the first entry in the 7.11.1 changelog.
.. _issue 2077: #2077
.. _changes_7-11-1:
v7.11.1
-
Fix: some chanages to details of how the measurement core is chosen, and how conflicting settings are handled. The "sysmon" core cannot be used with some conurrency settings, with dynamic context, and in Python 3.12/3.13, with branch measurement.
-
If the core is not specified and defaults to "sysmon" (Python 3.14+), but other settings conflict with sysmon, then the "ctrace" core will be used instead with no warning. For concurrency conflicts, this used to produce an error, as described in
issue 2064_. -
If the "sysmon" core is explicitly requested in your configuration, but other settings conflict, an error is now raised. This used to produce a warning.
-
-
Fix: some multi-line case clauses or for loops (and probably other constructs) could cause incorrect claims of missing branches with the sys.monitoring core, as described in
issue 2070_. This is now fixed. -
Fix: when running in pytest under coverage, a
breakpoint()would stop in the wrong frame, one level down from where it should, as described inissue 1420_. This was due to a coverage change in v6.4.1 that seemed to give a slight performance improvement, but I couldn't reproduce the performance gain, so it's been reverted, fixing the debugger problem. -
A new debug option
--debug=coreshows which core is in use and why. -
Split
sqlitedebugging information out of thesys:ref:coverage debug <cmd_debug>and :ref:cmd_run_debugoptions since it's bulky and not very useful. -
Updated the :ref:
howitworkspage to better describe the three different measurement cores.
.. _issue 1420: #1420 .. _issue 2064: #2064 .. _issue 2070: #2070
.. _changes_7-11-0:
googleapis/google-auth-library-python (google-auth)
v2.48.0
Features
- add cryptography as required dependency (#1929) (52558ae2881b1e6555f6f5c0d76365c15807ead9)
- Support the mTLS IAM domain for Certificate based Access (#1938) (8dcf91a1b05c85fbbd0bcee78d66e498099102ab)
- add configurable GCE Metadata Server retries (#1488) (454b441b478ec62bbf1a6ad5bceb6c7cbbfd0c37)
- honor
NO_GCE_CHECKenvironment variable (#1610) (383c9827536d9376e8248370ce4c2b83e468d027)
Bug Fixes
- resolve circular imports (#1942) (25c1b064545702cbef087cfcd15fbbb6ef1af74f)
- removes
content-headerfrom AWS IMDS get request (#1934) (97bfea9e02ede953fc8ee154e0deed3a3cfc6dcc) - detect correct auth when ADC env var is set but empty (#1374) (bfc07e1050bd0aa86fa3b08cdf70c9b68b5fe6a2)
- replace deprecated utcfromtimestamp (#1799) (e431f20cf73ccac71926a23ec454468cea92e053)
- Use
user_verification=preferredfor ReAuth WebAuthn challenge (#1798) (3f88a24089c4ee6822d510de0db210b54260d873)
getmoto/moto (moto)
v5.1.20
Docker Digest for 5.1.20: sha256:d2711655244df58411ce0be34236c95736390db17886370d21e12ae2b1e36f79
New Methods:
* EC2:
* create_subnet_cidr_reservation()
* delete_subnet_cidr_reservation()
* get_instance_uefi_data() (Just a stub, no actual data is returned)
* get_subnet_cidr_reservations()
* IOT:
* list_thing_principals_v2()
* ResourceGroups:
* cancel_tag_sync_task()
* get_tag_sync_task()
* list_tag_sync_tasks()
* start_tag_sync_task()
* Route53Resolver:
* get_resolver_dnssec_config()
* list_resolver_dnssec_configs()
* update_resolver_dnssec_config()
* S3Control:
* create_multi_region_access_point()
* delete_multi_region_access_point()
* delete_storage_lens_configuration()
* describe_multi_region_access_point_operation()
* get_multi_region_access_point()
* get_multi_region_access_point_policy()
* get_multi_region_access_point_policy_status()
* list_multi_region_access_points()
* put_multi_region_access_point_policy()
* SecurityHub:
* create_members()
* get_members()
* list_members()
Miscellaneous:
* ACM: import_certificate() now supports all key types, RSA and EC
* APIGateway: update_rest_api() now supports `/endpointConfiguration/types`
* Autoscaling: update_auto_scaling_group() now supports the MixedInstancesPolicy-parameter
* Batch: register_job_definition() now supports the eksProperties-parameter
* DMS: create_replication_task() now supports the Tags-parameter
* Organizations: list_policies() now support pagination
* Organizations now supports Resource Control Policy
* Redshift: describe_clusters() now supports the TagKeys-parameter
* Logs: put_subscription_filter() now supports other LogGroups
v5.1.19
Docker Digest for 5.1.19: sha256:1bba01d147a15d14a5816b69ee6d346ba04bd43baab4a3a27a55c368ecc2bb90
General:
* Removed support for ElasticTranscoder, now that AWS has also deprecated this service
New Methods:
* ACM-PCA:
* revoke_certificate()
* DSQL:
* delete_cluster()
* get_vpc_endpoint_service_name()
* list_tags_for_resource()
* FSX:
* describe_backups()
* SESv2:
* list_tags_for_resource()
* tag_resource()
* untag_resource()
* VPC Lattice:
* delete_auth_policy()
* delete_resource_policy()
* get_auth_policy()
* get_resource_policy()
* put_auth_policy()
* put_resource_policy()
Miscellaneous:
* DynamoDB: put_item() now correctly validates numeric and boolean values
* EC2: describe_instances() now returns the correct status for BlockDeviceMappings.Ebs.Status (attached, instead of in-use)
* EC2: describe_network_acls() now supports the 'association.association-id' Filter
* ELBv2: modify_load_balancer_attributes() no longer fails when modifying the 'health_check_logs.s3.enabled' attribute
* ResourceGroupsTaggingAPI: get_resources() now supports the SESv2 resources: ConfigurationSets, ContactLists, DedicatedIpPool, EmailIdentity
* Route53: change_tags_for_resource() no longer throws an error for removing a non-existing tag
* S3: list_object_versions() now correctly calculates the IsLatest-attribute
* Scheduler: list_schedules() and list_schedule_groups() now support pagination
* SecretsManager: batch_get_secret_value() now returns error handling for unknown secrets
* SSM: put_parameter() now returns the Tier-attribute
v5.1.18
Docker Digest for 5.1.18: sha256:c99ea4ab0881e1d95af5601c2cd42ef4dac15eefdf6597532c59d9631068818a
General:
* Introduces two methods for enabling and disabling IAM authentication:
from moto.core import disable_iam_authentication, enable_iam_authentication
They behave the same as the `@set_initial_no_auth_action_count`-decorator, but can be used as a fixture/context manager
New Services:
* Pipes:
* create_pipe()
* delete_pipe()
* describe_pipe()
* list_pipes()
* tag_resource()
* untag_resource()
New Methods:
* S3Control:
* list_tags_for_resource()
* tag_resource()
* untag_resource()
* S3Vectors:
* delete_vector_bucket_policy()
* delete_vectors()
* get_vector_bucket_policy()
* get_vectors()
* list_vectors()
* put_vector_bucket_policy()
* put_vectors()
Miscellaneous:
* APIGateway: put_rest_api() now correctly creates integrations
* AutoScaling: create_auto_scaling_group() now correctly calculates the InstancesDistribution for MixedInstancesPolicies
* ResourceGroupsTaggingAPI: get_resources() now supports filtering by `sqs:queue`
* SecretsManager: put_secret_value() now adds the AWSCURRENT-label if it's the first version of the Secret being added
v5.1.17
Docker Digest for 5.1.17: sha256:0361ac8f0cc6687dcf3835da1d60e31cf457fb0d49229d56586f2aa5c510f170
General:
* The MotoServer dashboard (available on http://localhost:5000/moto-api) now has an new and improved look, making it easier to search for and find your resources
New Methods:
* CloudFront:
* tag_resource()
* untag_resource()
* DMS:
* create_replication_subnet_group()
* describe_connection()
* describe_replication_subnet_group()
* delete_endpoint()
* delete_replication_instance()
* delete_replication_subnet_group()
* test_endpoint()
* EC2:
* describe_reserved_instances_offerings()
* RDS:
* add_role_to_db_cluster()
* add_role_to_db_instance()
* S3Vectors:
* create_index()
* delete_index()
* get_index()
* list_indexes()
* ServiceCatalog:
* create_product()
* describe_product()
* delete_product()
Miscellaneous:
* ACM-PCA: get_certificate() now returns the CertificateChain-attribute, if appropriate
* DMS: Manual control of the State Transition is now available for the `dms:connection` and `dms:replicationinstance` models.
* Organizations: describe_account() now returns the State-attribute.
* ResourceGroupsTaggingAPI: get_resources() now supports all Comprehend models
* StepFunctions: create_execution() now takes the execution input into account when checking idempotency.
python-poetry/poetry (poetry)
v2.3.1
Fixed
- Fix an issue where cached information about each package was always considered outdated (#10699).
Docs
- Document SHELL_VERBOSITY environment variable (#10678).
v2.3.0
Added
-
Add support for exporting
pylock.tomlfiles withpoetry-plugin-export(#10677). - Add support for specifying build constraints for dependencies (#10388).
- Add support for publishing artifacts whose version is determined dynamically by the build-backend (#10644).
- Add support for editable project plugins (#10661).
- Check
requires-poetrybefore any other validation (#10593). - Validate the content of
project.readmewhen runningpoetry check(#10604). - Add the option to clear all caches by making the cache name in
poetry cache clearoptional (#10627). - Automatically update the cache for packages where the locked files differ from cached files (#10657).
- Suggest to clear the cache if running a command with
--no-cachesolves an issue (#10585). - Propose
poetry initwhen tryingpoetry newfor an existing directory (#10563). - Add support for
poetry publish --skip-existingfor new Nexus OSS versions (#10603). - Show Poetry's own Python's path in
poetry debug info(#10588).
Changed
- Drop support for Python 3.9 (#10634).
-
Change the default of
installer.re-resolvefromtruetofalse(#10622). - PEP 735 dependency groups are considered in the lock file hash (#10621).
- Deprecate
poetry.utils._compat.metadata, which is sometimes used in plugins, in favor ofimportlib.metadata(#10634). - Improve managing free-threaded Python versions with
poetry python(#10606). - Prefer JSON API to HTML API in legacy repositories (#10672).
- When running
poetry init, only add the readme field in thepyproject.tomlif the readme file exists (#10679). - Raise an error if no hash can be determined for any distribution link of a package (#10673).
- Require
dulwich>=0.25.0(#10674).
Fixed
- Fix an issue where
poetry removedid not work for PEP 735 dependency groups withinclude-groupitems (#10587). - Fix an issue where
poetry removecaused danglinginclude-groupreferences in PEP 735 dependency groups (#10590). - Fix an issue where
poetry adddid not work for PEP 735 dependency groups withinclude-groupitems (#10636). - Fix an issue where PEP 735 dependency groups were not considered in the lock file hash (#10621).
- Fix an issue where wrong markers were locked for a dependency that was required by several groups with different markers (#10613).
- Fix an issue where non-deterministic markers were created in a method used by
poetry-plugin-export(#10667). - Fix an issue where wrong wheels were chosen for installation in free-threaded Python environments if Poetry itself was not installed with free-threaded Python (#10614).
- Fix an issue where
poetry publishused the metadata of the project instead of the metadata of the build artifact (#10624). - Fix an issue where
poetry env usejust used another Python version instead of failing when the requested version was not supported by the project (#10685). - Fix an issue where
poetry env activatereturned the wrong command fordash(#10696). - Fix an issue where
data-dirandpython.installation-dircould not be set (#10595). - Fix an issue where Python and pip executables were not correctly detected on Windows (#10645).
- Fix an issue where invalid template variables in
virtualenvs.promptcaused an incomprehensible error message (#10648).
Docs
- Add a warning about
~/.netrcfor Poetry credential configuration (#10630). - Clarify that the local configuration takes precedence over the global configuration (#10676).
- Add an explanation in which cases
packagesare automatically detected (#10680).
poetry-core (2.3.0)
- Normalize versions (#893).
- Fix an issue where unsatisfiable requirements did not raise an error (#891).
- Fix an issue where the implicit main group did not exist if it was explicitly declared as not having any dependencies (#892).
- Fix an issue where
python_full_versionmarkers with pre-release versions were parsed incorrectly (#893).
tox-dev/tox (tox)
v4.34.1
What's Changed
- fix: wheel corruption when running parallel tox processes by @gaborbernat in #3667
Full Changelog: https://github.com/tox-dev/tox/compare/4.34.0...4.34.1
v4.34.0
What's Changed
Full Changelog: https://github.com/tox-dev/tox/compare/4.33.0...4.34.0
v4.33.0
What's Changed
- Pass LOCALAPPDATA by default on Windows (#3639) by @clint-lawrence in #3640
- Docs: Add caution about ranges like
py{39-314}by @ferdnyc in #3652 - CLI Parser: Drop epilog message for Sphinx help by @ferdnyc in #3653
-
📚 Integratesphinx-issuesextension by @webknjaz in #3655 - Fix sphinx doc build by @gaborbernat in #3662
- feat: add conditional set_env support via PEP-496 markers by @gaborbernat in #3663
New Contributors
- @clint-lawrence made their first contribution in #3640
- @ferdnyc made their first contribution in #3652
Full Changelog: https://github.com/tox-dev/tox/compare/4.32.0...4.33.0
uis/devops/continuous-delivery/ci-templates (uis/devops/continuous-delivery/ci-templates)
v7.25.16: 7.25.16
7.25.16 (2026-01-26)
Bug Fixes
v7.25.15: 7.25.15
7.25.15 (2026-01-22)
v7.25.14: 7.25.14
7.25.14 (2026-01-22)
Bug Fixes
-
deps: update python:3 docker digest to
17bc9f1(9106fe0) -
deps: update python:3.14 docker digest to
17bc9f1(9ae614e)
v7.25.13: 7.25.13
7.25.13 (2026-01-19)
v7.25.12: 7.25.12
7.25.12 (2026-01-19)
Bug Fixes
-
deps: update alpine/httpie:3.2.4 docker digest to
de3d0ab(8fcb386) -
deps: update docker:dind docker digest to
3a33fc8(4d1f0cb)
v7.25.11: 7.25.11
7.25.11 (2026-01-15)
Bug Fixes
- pick up only the first value for the version from the openapi.yaml (857b1dd)
v7.25.10: 7.25.10
7.25.10 (2026-01-14)
Bug Fixes
-
deps: update python:3 docker digest to
37cba11(f8bd952) -
deps: update python:3.14 docker digest to
37cba11(c0cd872)
v7.25.9: 7.25.9
7.25.9 (2026-01-12)
Bug Fixes
v7.25.8: 7.25.8
7.25.8 (2026-01-12)
Bug Fixes
v7.25.7: 7.25.7
7.25.7 (2026-01-06)
Bug Fixes
- deps: pin dependencies (7e5e93a)
v7.25.6: 7.25.6
7.25.6 (2026-01-05)
Bug Fixes
-
deps: update alpine/httpie:3.2.4 docker digest to
26adc0a(e0ed213) -
deps: update python:3.14 docker digest to
6d58c1a(a892e63)
v7.25.5: 7.25.5
7.25.5 (2025-12-31)
Bug Fixes
v7.25.4: 7.25.4
7.25.4 (2025-12-30)
Bug Fixes
v7.25.3: 7.25.3
7.25.3 (2025-12-29)
Bug Fixes
v7.25.2: 7.25.2
7.25.2 (2025-12-22)
Bug Fixes
v7.25.1: 7.25.1
7.25.1 (2025-12-18)
Bug Fixes
v7.25.0: 7.25.0
7.25.0 (2025-12-18)
Features
- move remaining dind job to use dind fragment (8d344ce)
v7.24.0: 7.24.0
7.24.0 (2025-12-18)
Features
- add timeout when waiting for docker in .docker-in-docker fragment (b172f4c)
v7.23.7: 7.23.7
7.23.7 (2025-12-10)
Bug Fixes
- dind in poe-tests-base fragment (d777a42)
v7.23.6: 7.23.6
7.23.6 (2025-12-10)
Bug Fixes
v7.23.5: 7.23.5
7.23.5 (2025-12-09)
Bug Fixes
v7.23.4: 7.23.4
7.23.4 (2025-12-09)
Bug Fixes
v7.23.3: 7.23.3
7.23.3 (2025-12-08)
Bug Fixes
v7.23.2: 7.23.2
7.23.2 (2025-12-08)
Bug Fixes
- deps: update all non-major dependencies (b2a5bf1)
-
deps: update alpine/httpie:3.2.4 docker digest to
2b01527(a0ce1f6)
v7.23.1: 7.23.1
7.23.1 (2025-12-05)
v7.23.0: 7.23.0
7.23.0 (2025-11-28)
Features
- tox-tests to use dind config from fragments (c765400)
v7.22.1: 7.22.1
7.22.1 (2025-11-25)
Bug Fixes
- add missing before_script reference to dind in .terraform-test-cleanup (2852ccd)
v7.22.0: 7.22.0
7.22.0 (2025-11-24)
Features
v7.21.0: 7.21.0
7.21.0 (2025-11-19)
Features
v7.20.3: 7.20.3
7.20.3 (2025-11-03)
Bug Fixes
- use only needed bits of Terraform-Module.gitlab-ci.yml to avoid duplicate jobs (ff646a0)
Configuration
- If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.