fix(deps): update all dependencies
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
boto3 | dependencies | patch |
1.35.34 -> 1.35.39
|
coverage | dev | patch |
7.6.1 -> 7.6.3
|
faker (changelog) | dev | minor |
30.1.0 -> 30.3.0
|
moto (changelog) | dev | patch |
5.0.16 -> 5.0.17
|
uis/devops/continuous-delivery/ci-templates | repository | major |
v4.6.0 -> v5.0.0
|
Release Notes
boto/boto3 (boto3)
v1.35.39
=======
- api-change:
appflow
: [botocore
] Doc only updates for clarification around OAuth2GrantType for Salesforce. - api-change:
elbv2
: [botocore
] Add zonal_shift.config.enabled attribute. Add new AdministrativeOverride construct in the describe-target-health API response to include information about the override status applied to a target. - api-change:
emr
: [botocore
] This release provides new parameter "Context" in instance fleet clusters. - api-change:
guardduty
: [botocore
] Added a new field for network connection details. - api-change:
robomaker
: [botocore
] Documentation update: added support notices to each API action.
v1.35.38
=======
- api-change:
acm-pca
: [botocore
] Documentation updates for AWS Private CA. - api-change:
dms
: [botocore
] Introduces DescribeDataMigrations, CreateDataMigration, ModifyDataMigration, DeleteDataMigration, StartDataMigration, StopDataMigration operations to SDK. Provides FailedDependencyFault error message. - api-change:
ec2
: [botocore
] This release adds support for assigning the billing of shared Amazon EC2 On-Demand Capacity Reservations. - api-change:
ecs
: [botocore
] This is a documentation only release that updates to documentation to let customers know that Amazon Elastic Inference is no longer available. - api-change:
elastic-inference
: [botocore
] Elastic Inference - Documentation update to add service shutdown notice. - api-change:
iotfleetwise
: [botocore
] Refine campaign related API validations - api-change:
neptune-graph
: [botocore
] Support for 16 m-NCU graphs available through account allowlisting - api-change:
outposts
: [botocore
] Adding new "DELIVERED" enum value for Outposts Order status - api-change:
route53resolver
: [botocore
] Route 53 Resolver Forwarding Rules can now include a server name indication (SNI) in the target address for rules that use the DNS-over-HTTPS (DoH) protocol. When a DoH-enabled Outbound Resolver Endpoint forwards a request to a DoH server, it will provide the SNI in the TLS handshake. - api-change:
socialmessaging
: [botocore
] This release for AWS End User Messaging includes a public SDK, providing a suite of APIs that enable sending WhatsApp messages to end users. - api-change:
timestream-influxdb
: [botocore
] This release updates our regex based validation rules in regards to valid DbInstance and DbParameterGroup name.
v1.35.37
=======
- api-change:
codepipeline
: [botocore
] AWS CodePipeline introduces a Compute category
v1.35.36
=======
- api-change:
elasticache
: [botocore
] AWS ElastiCache SDK now supports using APIs with newly launched Valkey engine. Please refer to updated AWS ElastiCache public documentation for detailed information on API usage. - api-change:
memorydb
: [botocore
] Amazon MemoryDB SDK now supports all APIs for newly launched Valkey engine. Please refer to the updated Amazon MemoryDB public documentation for detailed information on API usage. - enhancement:Python: [
botocore
] Added provisional Python 3.13 support to Botocore - enhancement:Python: Added provisional Python 3.13 support to Boto3
v1.35.35
=======
- api-change:
deadline
: [botocore
] Add support for using the template from a previous job during job creation and listing parameter definitions for a job. - api-change:
marketplace-reporting
: [botocore
] Documentation-only update for AWS Marketplace Reporting API. - api-change:
qconnect
: [botocore
] This release adds support for the following capabilities: Configuration of the Gen AI system via AIAgent and AIPrompts. Integration support for Bedrock Knowledge Base. - api-change:
redshift
: [botocore
] Add validation pattern to S3KeyPrefix on the EnableLogging API
nedbat/coveragepy (coverage)
v7.6.3
-
Fix: nested context managers could incorrectly be analyzed to flag a missing branch on the last context manager, as described in
issue 1876
_. This is now fixed. -
Fix: the missing branch message about not exiting a module had an extra "didn't," as described in
issue 1873
_. This is now fixed.
.. _issue 1873: https://github.com/nedbat/coveragepy/issues/1873 .. _issue 1876: https://github.com/nedbat/coveragepy/issues/1876
.. _changes_7-6-2:
v7.6.2
-
Dropped support for Python 3.8 and PyPy 3.8.
-
Fix: a final wildcard match/case clause assigning to a name (
case _ as value
) was incorrectly marked as a missing branch. This is now fixed, closingissue 1860
_. -
Fewer things are considered branches now. Lambdas, comprehensions, and generator expressions are no longer marked as missing branches if they don't complete execution. Closes
issue 1852
_. -
Fix: the HTML report didn't properly show multi-line f-strings that end with a backslash continuation. This is now fixed, closing
issue 1836
, thanks toLiuYinCarl and Marco Ricci <pull 1838_>
. -
Fix: the LCOV report now has correct line numbers (fixing
issue 1846
) and better branch descriptions for BRDA records (fixingissue 1850
). There are other changes to lcov also, including a new configuration option :ref:line_checksums <config_lcov_line_checksums>
to control whether line checksums are included in the lcov report. The default is false. To keep checksums set it to true. All this work is thanks to Zack Weinberg (pull 1849
_ andpull 1851
_). -
Fixed the docs for multi-line regex exclusions, closing
issue 1863
_. -
Fixed a potential crash in the C tracer, closing
issue 1835
, thanks toJan Kühle <pull 1843_>
.
.. _issue 1835: https://github.com/nedbat/coveragepy/issues/1835 .. _issue 1836: https://github.com/nedbat/coveragepy/issues/1836 .. _pull 1838: https://github.com/nedbat/coveragepy/pull/1838 .. _pull 1843: https://github.com/nedbat/coveragepy/pull/1843 .. _issue 1846: https://github.com/nedbat/coveragepy/issues/1846 .. _pull 1849: https://github.com/nedbat/coveragepy/pull/1849 .. _issue 1850: https://github.com/nedbat/coveragepy/issues/1850 .. _pull 1851: https://github.com/nedbat/coveragepy/pull/1851 .. _issue 1852: https://github.com/nedbat/coveragepy/issues/1852 .. _issue 1860: https://github.com/nedbat/coveragepy/issues/1860 .. _issue 1863: https://github.com/nedbat/coveragepy/issues/1863
.. _changes_7-6-1:
joke2k/faker (faker)
v30.3.0
- Add decorator to optionally format dates as string. Thanks @browniebroke.
v30.2.0
- Cache Factory._find_provider_class module look-ups. Thanks @huonw.
getmoto/moto (moto)
v5.0.17
Docker Digest for 5.0.17: sha256:39372432cb24ab46211ca45648ca787e104589070b0d0a13ea0d73c6eb550079
New Methods:
* CloudFront:
* create_key_group()
* create_public_key()
* delete_public_key()
* get_key_group()
* get_public_key()
* list_key_groups()
* list_public_keys()
* QuickSight:
* list_user_groups()
* search_groups()
* update_user()
* Workspaces Web:
* list_tags_for_resource()
* tag_resource()
* untag_resource()
Miscellaneous:
* APIGateway: get_api_keys()/get_usage_plan_keys() now support the nameQuery param
* AppSync: create_graphql_api() now supports the visibility-parameter
* DynamoDB: delete_item() now returns the item when a ConditionalCheckFailed is thrown and ReturnValuesOnConditionCheckFailure == ALL_OLD
* QuickSight: Users can now have special characters in their name
* QuickSight: list_group_memberships() now supports pagination
* QuickSight: list_groups() now supports pagination
* QuickSight: list_users() now supports pagination
* SageMaker: search() now also supports ModelPackages/Pipelines/Jobs/Executions
* SecretsManager: delete_secret() now allows force deletion of already marked-for-delete secret
* StepFunctions: create_state_machine() now supports the parameters encryptionConfiguration, tracingConfiguration, loggingConfiguration
uis/devops/continuous-delivery/ci-templates (uis/devops/continuous-delivery/ci-templates)
v5.0.0
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.