Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jun 9, 2025

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
anyio (changelog) ==4.9.0 -> ==4.12.0 age confidence
argcomplete (changelog) ==3.6.2 -> ==3.6.3 age confidence
bandit (source, changelog) ==1.8.6 -> ==1.9.2 age confidence
boto3 ==1.39.14 -> ==1.42.16 age confidence
botocore ==1.39.14 -> ==1.42.16 age confidence
certifi ==2025.7.14 -> ==2025.11.12 age confidence
charset-normalizer (changelog) ==3.4.2 -> ==3.4.4 age confidence
click (changelog) ==8.2.1 -> ==8.3.1 age confidence
commitizen (changelog) ==4.8.3 -> ==4.10.1 age confidence
coverage ==7.10.0 -> ==7.13.0 age confidence
cryptography (changelog) ==45.0.5 -> ==45.0.7 age confidence
deptry (changelog) ==0.23.0 -> ==0.24.0 age confidence
idna (changelog) ==3.10 -> ==3.11 age confidence
importlib-metadata ==8.7.0 -> ==8.7.1 age confidence
iniconfig ==2.1.0 -> ==2.3.0 age confidence
joblib ==1.5.1 -> ==1.5.3 age confidence
kiwisolver (changelog) ==1.4.8 -> ==1.4.9 age confidence
markdown (changelog) ==3.8.2 -> ==3.10 age confidence
markupsafe (changelog) ==3.0.2 -> ==3.0.3 age confidence
matplotlib ==3.10.3 -> ==3.10.8 age confidence
mkdocs-material (changelog) ==9.6.16 -> ==9.7.1 age confidence
mypy (changelog) ==1.17.0 -> ==1.19.1 age confidence
nltk (source) ==3.9.1 -> ==3.9.2 age confidence
pandas ==2.3.1 -> ==2.3.3 age confidence
platformdirs (changelog) ==4.3.8 -> ==4.5.1 age confidence
prometheus-client ==0.22.1 -> ==0.23.1 age confidence
prompt-toolkit ==3.0.51 -> ==3.0.52 age confidence
pycparser ==2.22 -> ==2.23 age confidence
pydantic (changelog) ==2.9.2 -> ==2.12.5 age confidence
pydantic-core ==2.23.4 -> ==2.41.5 age confidence
pyparsing ==3.2.3 -> ==3.3.1 age confidence
pytest (changelog) ==8.4.1 -> ==8.4.2 age confidence
python-dotenv ==1.1.1 -> ==1.2.1 age confidence
pyyaml (source) ==6.0.2 -> ==6.0.3 age confidence
questionary ==2.1.0 -> ==2.1.1 age confidence
requests (source, changelog) ==2.32.4 -> ==2.32.5 age confidence
rich ==14.1.0 -> ==14.2.0 age confidence
ruamel-yaml ==0.18.14 -> ==0.18.17 age confidence
ruamel-yaml-clib ==0.2.12 -> ==0.2.15 age confidence
ruff (source, changelog) ==0.12.5 -> ==0.14.10 age confidence
s3transfer ==0.13.1 -> ==0.16.0 age confidence
safety (changelog) ==3.6.0 -> ==3.7.0 age confidence
safety-schemas ==0.0.14 -> ==0.0.17 age confidence
scipy ==1.16.0 -> ==1.16.3 age confidence
stevedore ==5.4.1 -> ==5.6.0 age confidence
termcolor (changelog) ==2.3.0 -> ==2.5.0 age confidence
typer (changelog) ==0.16.0 -> ==0.20.1 age confidence
typing-extensions (changelog) ==4.14.1 -> ==4.15.0 age confidence
tzdata ==2025.2 -> ==2025.3 age confidence
wcwidth ==0.2.13 -> ==0.2.14 age confidence

Release Notes

agronholm/anyio (anyio)

v4.12.0

Compare Source

  • Added support for asyncio's task call graphs on Python 3.14 and later when using AnyIO's task groups (#​1025)
  • Added an asynchronous implementation of the functools module (#​1001)
  • Added support for uvloop=True on Windows via the winloop implementation (#​960; PR by @​Vizonex)
  • Added support for use as a context manager to anyio.lowlevel.RunVar (#​1003)
  • Added __all__ declarations to public submodules (anyio.lowlevel etc.) (#​1009)
  • Added the ability to set the token count of a CapacityLimiter to zero (#​1019; requires Python 3.10 or later when using Trio)
  • Added parameters case_sensitive and recurse_symlinks along with support for path-like objects to anyio.Path.glob() and anyio.Path.rglob() (#​1033; PR by @​northisup)
  • Dropped sniffio as a direct dependency and added the get_available_backends() function (#​1021)
  • Fixed Process.stdin.send() not raising ClosedResourceError and BrokenResourceError on asyncio. Previously, a non-AnyIO exception was raised in such cases (#​671; PR by @​gschaffner)
  • Fixed Process.stdin.send() not checkpointing before writing data on asyncio (#​1002; PR by @​gschaffner)
  • Fixed a race condition where cancelling a Future from BlockingPortal.start_task_soon() would sometimes not cancel the async function (#​1011; PR by @​gschaffner)
  • Fixed the presence of the pytest plugin causing breakage with older versions of pytest (<= 6.1.2) (#​1028; PR by @​saper)
  • Fixed a rarely occurring RuntimeError: Set changed size during iteration while shutting down the process pool when using the asyncio backend (#​985)

v4.11.0

Compare Source

  • Added support for cancellation reasons (the reason parameter to CancelScope.cancel()) (#​975)
  • Bumped the minimum version of Trio to v0.31.0
  • Added the ability to enter the event loop from foreign (non-worker) threads by passing the return value of anyio.lowlevel.current_token() to anyio.from_thread.run() and anyio.from_thread.run_sync() as the token keyword argument (#​256)
  • Added pytest option (anyio_mode = "auto") to make the pytest plugin automatically handle all async tests (#​971)
  • Added the anyio.Condition.wait_for() method for feature parity with asyncio (#​974)
  • Changed the default type argument of anyio.abc.TaskStatus from Any to None (#​964)
  • Fixed TCP listener behavior to guarantee the same ephemeral port is used for all socket listeners when local_port=0 (#​857; PR by @​11kkw and @​agronholm)
  • Fixed inconsistency between Trio and asyncio where a TCP stream that previously raised a BrokenResourceError on send() would still raise BrokenResourceError after the stream was closed on asyncio, but ClosedResourceError on Trio. They now both raise a ClosedResourceError in this scenario. (#​671)

v4.10.0

Compare Source

  • Added the feed_data() method to the BufferedByteReceiveStream class, allowing users to inject data directly into the buffer
  • Added various class methods to wrap existing sockets as listeners or socket streams:
    • SocketListener.from_socket()
    • SocketStream.from_socket()
    • UNIXSocketStream.from_socket()
    • UDPSocket.from_socket()
    • ConnectedUDPSocket.from_socket()
    • UNIXDatagramSocket.from_socket()
    • ConnectedUNIXDatagramSocket.from_socket()
  • Added a hierarchy of connectable stream classes for transparently connecting to various remote or local endpoints for exchanging bytes or objects
  • Added context manager mix-in classes (anyio.ContextManagerMixin and anyio.AsyncContextManagerMixin) to help write classes that embed other context managers, particularly cancel scopes or task groups (#​905; PR by @​agronholm and @​tapetersen)
  • Added the ability to specify the thread name in start_blocking_portal() (#​818; PR by @​davidbrochart)
  • Added anyio.notify_closing to allow waking anyio.wait_readable and anyio.wait_writable before closing a socket. Among other things, this prevents an OSError on the ProactorEventLoop. (#​896; PR by @​graingert)
  • Incorporated several documentation improvements from the EuroPython 2025 sprint (special thanks to the sprinters: Emmanuel Okedele, Jan Murre, Euxenia Miruna Goia and Christoffer Fjord)
  • Added a documentation page explaining why one might want to use AnyIO's APIs instead of asyncio's
  • Updated the to_interpreters module to use the public concurrent.interpreters API on Python 3.14 or later
  • Fixed anyio.Path.copy() and anyio.Path.copy_into() failing on Python 3.14.0a7
  • Fixed return annotation of __aexit__ on async context managers. CMs which can suppress exceptions should return bool, or None otherwise. (#​913; PR by @​Enegg)
  • Fixed rollover boundary check in SpooledTemporaryFile so that rollover only occurs when the buffer size exceeds max_size (#​915; PR by @​11kkw)
  • Migrated testing and documentation dependencies from extras to dependency groups
  • Fixed compatibility of anyio.to_interpreter with Python 3.14.0b2 (#​926; PR by @​hroncok)
  • Fixed SyntaxWarning on Python 3.14 about return in finally (#​816)
  • Fixed RunVar name conflicts. RunVar instances with the same name should not share storage (#​880; PR by @​vimfu)
  • Renamed the BrokenWorkerIntepreter exception to BrokenWorkerInterpreter. The old name is available as a deprecated alias. (#​938; PR by @​ayussh-verma)
  • Fixed an edge case in CapacityLimiter on asyncio where a task, waiting to acquire a limiter gets cancelled and is subsequently granted a token from the limiter, but before the cancellation is delivered, and then fails to notify the next waiting task (#​947)
kislyuk/argcomplete (argcomplete)

v3.6.3

Compare Source

===============================

  • Make RE PCRE compatible. Fixes #​539

  • Only execute Python interpreters (#​536)

  • fish: set variable scope to local to avoid clobbering global or
    universal variables (#​534)

  • Documentation and help improvements

PyCQA/bandit (bandit)

v1.9.2

Compare Source

What's Changed

Full Changelog: PyCQA/bandit@1.9.1...1.9.2

v1.9.1

Compare Source

What's Changed

Full Changelog: PyCQA/bandit@1.9.0...1.9.1

boto/boto3 (boto3)

v1.42.16

Compare Source

=======

  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version
  • api-change:geo-places: [botocore] Adds support for InferredSecondaryAddress place type, Designator in SecondaryAddressComponent and Heading in ReverseGeocode.
  • api-change:pinpoint-sms-voice-v2: [botocore] This release adds support for the Registration Reviewer feature, which provides generative AI feedback on a phone number or sender ID registration to ensure completeness before sending to downstream (carrier) review.
  • api-change:s3: [botocore] Add additional validation to Outpost bucket names.

v1.42.15

Compare Source

=======

  • api-change:config: [botocore] Added supported resourceTypes for Config from July to November 2025
  • api-change:ec2: [botocore] Adds support for linkedGroupId on the CreatePlacementGroup and DescribePlacementGroups APIs. The linkedGroupId parameter is reserved for future use.
  • api-change:guardduty: [botocore] Make accountIds a required field in GetRemainingFreeTrialDays API to reflect service behavior.
  • api-change:pcs: [botocore] Change API Reference Documentation for default Mode in Accounting and SlurmRest

v1.42.14

Compare Source

=======

  • api-change:arc-region-switch: [botocore] Automatic Plan Execution Reports allow customers to maintain a concise record of their Region switch Plan executions. This enables customer SREs and leadership to have a clear view of their recovery posture based on the generated reports for their Plan executions.
  • api-change:connect: [botocore] Adding support for Custom Metrics and Pre-Defined Attributes to GetCurrentMetricData API.
  • api-change:emr-serverless: [botocore] Added JobLevelCostAllocationConfiguration field to enable cost allocation reporting at the job level, providing more granular visibility into EMR Serverless charges
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version
  • api-change:iot: [botocore] This release adds event-based logging feature that enables granular event logging controls for AWS IoT logs.
  • api-change:qbusiness: [botocore] It is a internal bug fix for region expansion
  • api-change:wickr: [botocore] AWS Wickr now provides a suite of admin APIs to allow you to programmatically manage secure communication for Wickr networks at scale. These APIs enable you to automate administrative workflows including user lifecycle management, network configuration, and security group administration.
  • api-change:workspaces-web: [botocore] Add support for WebAuthn under user settings.

v1.42.13

Compare Source

=======

  • api-change:appstream: [botocore] Added support for new operating systems (1) Ubuntu 24.04 Pro LTS on Elastic fleets, and (2) Microsoft Server 2025 on Always-On and On-Demand fleets
  • api-change:arc-region-switch: [botocore] New API to list Route 53 health checks created by ARC region switch for a plan in a specific AWS Region using the Region switch Regional data plane.
  • api-change:artifact: [botocore] Add support for ListReportVersions API for the calling AWS account.
  • api-change:bedrock-agentcore-control: [botocore] Feature to support header exchanges between Bedrock AgentCore Gateway Targets and client, along with propagating query parameter to the configured targets.
  • api-change:bedrock-data-automation: [botocore] Blueprint Optimization (BPO) is a new Amazon Bedrock Data Automation (BDA) capability that improves blueprint inference accuracy using example content assets and ground truth data. BPO works by generating better instructions for fields in the Blueprint using provided data.
  • api-change:cleanrooms: [botocore] Adding support for collaboration change requests requiring an approval workflow. Adding support for change requests that grant or revoke results receiver ability and modifying auto approved change types in an existing collaboration.
  • api-change:ec2: [botocore] This release adds AvailabilityZoneId support for CreateFleet, ModifyFleet, DescribeFleets, RequestSpotFleet, ModifySpotFleetRequests and DescribeSpotFleetRequests APIs.
  • api-change:ecr: [botocore] Adds support for ECR Create On Push
  • api-change:ecs: [botocore] Adding support for Event Windows via a new ECS account setting "fargateEventWindows". When enabled, ECS Fargate will use the configured event window for patching tasks. Introducing "CapacityOptionType" for CreateCapacityProvider API, allowing support for Spot capacity for ECS Managed Instances.
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version
  • api-change:iot: [botocore] This release adds message batching for the IoT Rules Engine HTTP action.
  • api-change:opensearch: [botocore] Amazon OpenSearch Service adds support for warm nodes, enabling new multi-tier architecture.
  • api-change:sesv2: [botocore] Amazon SES introduces Email Validation feature which checks email addresses for syntax errors, domain validity, and risky addresses to help maintain deliverability and protect sender reputation. SES also adds resource tagging and ABAC support for EmailTemplates and CustomVerificationEmailTemplates.
  • api-change:ssm-sap: [botocore] Added "Stopping" for the HANA Database Status.

v1.42.12

Compare Source

=======

  • api-change:gameliftstreams: [botocore] Added new stream group operation parameters for scale-on-demand capacity with automatic prewarming. Added new Gen6 stream classes based on the EC2 G6 instance family. Added new StartStreamSession parameter for exposure of real-time performance stats to clients.
  • api-change:guardduty: [botocore] Add support for dbiResourceId in finding.
  • api-change:inspector-scan: [botocore] Adds an additional OutputFormat
  • api-change:kafkaconnect: [botocore] Support dual-stack network connectivity for connectors via NetworkType field.
  • api-change:mediaconvert: [botocore] Adds support for tile encoding in HEVC and audio for video overlays.
  • api-change:mediapackagev2: [botocore] This release adds support for SPEKE V2 content key encryption in MediaPackage v2 Origin Endpoints.
  • api-change:payment-cryptography: [botocore] Support for AS2805 standard. Modifications to import-key and export-key to support AS2805 variants.
  • api-change:payment-cryptography-data: [botocore] Support for AS2805 standard. New API GenerateAs2805KekValidation and changes to translate pin, GenerateMac and VerifyMac to support AS2805 key variants.
  • api-change:sagemaker: [botocore] Adding the newly launched p6-b300.48xlarge ec2 instance support in Sagemaker(Hyperpod,Training and Sceptor)

v1.42.11

Compare Source

=======

  • api-change:iot: [botocore] Add support for dynamic payloads in IoT Device Management Commands
  • api-change:timestream-influxdb: [botocore] This release adds support for rebooting InfluxDB DbInstances and DbClusters

v1.42.10

Compare Source

=======

  • api-change:bedrock-agentcore-control: [botocore] This release updates broken links for AgentCore Policy APIs in the AWS CLI and SDK resources.
  • api-change:connect: [botocore] Amazon Connect now supports outbound WhatsApp contacts via the Send message block or StartOutboundChatContact API. Send proactive messages for surveys, reminders, and updates. Offer customers the option to switch to WhatsApp while in queue, eliminating hold time.
  • api-change:ec2: [botocore] EC2 Capacity Manager now supports SpotTotalCount, SpotTotalInterruptions and SpotInterruptionRate metrics for both vCPU and instance units.
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version
  • api-change:entityresolution: [botocore] Support Customer Profiles Integration for AWS Entity Resolution
  • api-change:glacier: [botocore] Documentation updates for Amazon Glacier's maintenance mode
  • api-change:health: [botocore] Updating Health API endpoint generation for dualstack only regions
  • api-change:logs: [botocore] This release allows you to import your historical CloudTrail Lake data into CloudWatch with a few steps, enabling you to easily consolidate operational, security, and compliance data in one place.
  • api-change:mediatailor: [botocore] Added support for Ad Decision Server Configuration enabling HTTP POST requests with custom bodies, headers, GZIP compression, and dynamic variables. No changes required for existing GET request configurations.
  • api-change:route53resolver: [botocore] Adds support for enabling detailed metrics on Route 53 Resolver endpoints using RniEnhancedMetricsEnabled and TargetNameServerMetricsEnabled in the CreateResolverEndpoint and UpdateResolverEndpoint APIs, providing enhanced visibility into Resolver endpoint and target name server performance.
  • api-change:s3: [botocore] This release adds support for the new optional field 'LifecycleExpirationDate' in S3 Inventory configurations.
  • api-change:service-quotas: [botocore] Add support for SQ Dashboard Api

v1.42.9

Compare Source

======

  • api-change:bcm-recommended-actions: [botocore] Added new freetier action types to RecommendedAction.type.
  • api-change:connect: [botocore] Amazon Connect now offers automated post-chat surveys triggered when customers end conversations. This captures timely feedback while experience is fresh, using either a no-code form builder or Amazon Lex-powered interactive surveys.
  • api-change:datasync: [botocore] Adds Enhanced mode support for NFS and SMB locations. SMB credentials are now managed via Secrets Manager, and may be encrypted with service or customer managed keys. Increases AgentArns maximum count to 8 (max 4 per TaskMode). Adds folder counters to DescribeTaskExecution for Enhanced mode tasks.
  • api-change:workspaces-web: [botocore] Adds support for portal branding customization, enabling administrators to personalize end-user portals with custom assets.

v1.42.8

Compare Source

======

  • api-change:lambda: [botocore] Add Dotnet 10 (dotnet10) support to AWS Lambda.
  • api-change:organizations: [botocore] Add support for policy operations on the NETWORK SECURITY DIRECTOR POLICY policy type.
  • api-change:quicksight: [botocore] This release adds new GetIdentityContext API, Dashboard customization options for tables and pivot tables, Visual styling options- borders and decals, map GeocodingPreferences, KeyPairCredentials for DataSourceCredentials. Snapshot APIs now support registered users. Parameters limit increased to 400
  • api-change:secretsmanager: [botocore] Add SortBy parameter to ListSecrets
  • api-change:sesv2: [botocore] Update GetEmailIdentity and CreateEmailIdentity response to include SigningHostedZone in DkimAttributes. Updated PutEmailIdentityDkimSigningAttributes Response to include SigningHostedZone.

v1.42.7

Compare Source

======

  • api-change:bedrock: [botocore] Automated Reasoning checks in Amazon Bedrock Guardrails is capable of generating policy scenarios to validate policies. The GetAutomatedReasoningPolicyBuildWorkflowResultAssets API now adds POLICY SCENARIO asset type, allowing customers to retrieve scenarios generated by the build workflow.
  • api-change:billingconductor: [botocore] Launch itemized custom line item and service line item filter
  • api-change:cloudwatch: [botocore] This release introduces two additional protocols AWS JSON 1.1 and Smithy RPC v2 CBOR, replacing the currently utilized one, AWSQuery. AWS SDKs will prioritize the protocol that is the most performant for each language.
  • api-change:odb: [botocore] The following APIs now return CloudExadataInfrastructureArn and OdbNetworkArn fields for improved resource identification and AWS service integration - GetCloudVmCluster, ListCloudVmClusters, GetCloudAutonomousVmCluster, and ListCloudAutonomousVmClusters.
  • api-change:opensearch: [botocore] The CreateApplication API now supports an optional kms key arn parameter to allow customers to specify a CMK for application encryption.
  • api-change:partnercentral-selling: [botocore] Adds support for the new Project.AwsPartition field on Opportunity and AWS Opportunity Summary. Use this field to specify the AWS partition where the opportunity will be deployed.
  • api-change:signer: [botocore] Adds support for Signer GetRevocationStatus with updated endpoints

v1.42.6

Compare Source

======

  • api-change:account: [botocore] This release adds a new API (GetGovCloudAccountInformation) used to retrieve information about a linked GovCloud account from the standard AWS partition.
  • api-change:appsync: [botocore] Update Event API to require EventConfig parameter in creation and update requests.
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version
  • api-change:guardduty: [botocore] Adding support for Ec2LaunchTemplate Version field
  • api-change:ivs-realtime: [botocore] Token Exchange introduces seamless token exchange capabilities for IVS RTX, enabling customers to upgrade or downgrade token capabilities and update token attributes within the IVS client SDK without forcing clients to disconnect and reconnect.
  • api-change:mgn: [botocore] Added parameters encryption, IPv4/IPv6 protocol configuration, and enhanced tagging support for replication operations.
  • api-change:route53: [botocore] Amazon Route 53 now supports the EU (Germany) Region (eusc-de-east-1) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region

v1.42.5

Compare Source

======

  • api-change:ce: [botocore] Add support for Cost Category resource associations including filtering by resource type on ListCostCategoryDefinitions and new ListCostCategoryResourceAssociations API.
  • api-change:ec2: [botocore] Amazon EC2 P6-B300 instances provide 8x NVIDIA Blackwell Ultra GPUs with 2.1 TB high bandwidth GPU memory, 6.4 Tbps EFA networking, 300 Gbps dedicated ENA throughput, and 4 TB of system memory. Amazon EC2 C8a instances are powered by 5th Gen AMD EPYC processors with a maximum frequency of 4.5 GHz.
  • api-change:identitystore: [botocore] Updating AWS Identity Store APIs to support Attribute Extensions capability, with the first release adding Enterprise Attributes. This launch aligns Identity Store APIs with SCIM for enterprise attributes, reducing cases when customers are forced to use SCIM due to lack of SigV4 API support.
  • api-change:partnercentral-selling: [botocore] Deal Sizing Service for AI-based deal size estimation with AWS service-level breakdown, supporting Expansion and Migration deals across Technology, and Reseller partner cohorts, including Pricing Calculator AddOn for MAP deals and funding incentives.
  • api-change:rds: [botocore] Adding support for tagging RDS Instance/Cluster Automated Backups
  • api-change:redshift-serverless: [botocore] Added GetIdentityCenterAuthToken API to retrieve encrypted authentication tokens for Identity Center integrated serverless workgroups. This API enables programmatic access to secure Identity Center tokens with proper error handling and parameter validation across supported SDK languages.
  • api-change:rolesanywhere: [botocore] Increases certificate string length for trust anchor source data to support ML-DSA certificates.
  • api-change:sesv2: [botocore] Update Mail Manager Archive ARN validation
  • enhancement:ContainerProvider: [botocore] The ContainerProvider now works with arbitray HTTPS URLs for AWS_CONTAINER_CREDENTIALS_FULL_URI.

v1.42.4

Compare Source

======

  • api-change:ecs: [botocore] Updating stop-task API to encapsulate containers with custom stop signal
  • api-change:iam: [botocore] Adding the ExpirationTime attribute to the delegation request resource.
  • api-change:inspector2: [botocore] This release adds a new ScanStatus called "Unsupported Code Artifacts". This ScanStatus will be returned when a Lambda function was not code scanned because it has unsupported code artifacts.
  • api-change:partnercentral-account: [botocore] Adding Verification API's to Partner Central Account SDK.
  • api-change:sesv2: [botocore] Updating the desired url for PutEmailIdentityDkimSigningAttributes from v1 to v2
  • enhancement:AWSCRT: [botocore] Update awscrt version to 0.29.2

v1.42.3

Compare Source

======

  • api-change:lambda: [botocore] Add DisallowedByVpcEncryptionControl to the LastUpdateStatusReasonCode and StateReasonCode enums to represent failures caused by VPC Encryption Controls.

v1.42.2

Compare Source

======

  • api-change:bedrock: [botocore] Adding support in Amazon Bedrock to customize models with reinforcement fine-tuning (RFT) and support for updating the existing Custom Model Deployments.
  • api-change:sagemaker: [botocore] Introduces Serverless training: A fully managed compute infrastructure that abstracts away all infrastructure complexity, allowing you to focus purely on model development.

Added AI model customization assets used to train, refine, and evaluate custom models during the model customization process.

v1.42.1

Compare Source

======

  • api-change:bedrock: [botocore] Adds the audioDataDeliveryEnabled boolean field to the Model Invocation Logging Configuration.
  • api-change:bedrock-agentcore: [botocore] Support for AgentCore Evaluations and Episodic memory strategy for AgentCore Memory.
  • api-change:bedrock-agentcore-control: [botocore] Supports AgentCore Evaluations, Policy, Episodic Memory Strategy, Resource Based Policy for Runtime and Gateway APIs, API Gateway Rest API Targets and enhances JWT authorizer.
  • api-change:bedrock-runtime: [botocore] Adds support for Audio Blocks and Streaming Image Output plus new Stop Reasons of malformed_model_output and malformed_tool_use.
  • api-change:ce: [botocore] This release updates existing Savings Plans Purchase Analyzer and Recommendations APIs to support Database Savings Plans.
  • api-change:datazone: [botocore] Amazon DataZone now supports exporting Catalog datasets as Amazon S3 tables, and provides automatic business glossary term suggestions for data assets.
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version
  • api-change:fsx: [botocore] S3 Access Points support for FSx for NetApp ONTAP
  • api-change:guardduty: [botocore] Adding support for extended threat detection for Amazon EC2 and Amazon ECS. Adding support for wild card suppression rules.
  • api-change:lambda: [botocore] Launching Lambda durable functions - a new feature to build reliable multi-step applications and AI workflows natively within the Lambda developer experience.
  • api-change:logs: [botocore] CloudWatch Logs adds managed S3 Tables integration to access logs using other analytical tools, as well as facets and field indexing to simplify log analytics in CloudWatch Logs Insights.
  • api-change:nova-act: [botocore] Initial release of Nova Act SDK. The Nova Act service enables customers to build and manage fleets of agents for automating production UI workflows with high reliability, fastest time-to-value, and ease of implementation at scale.
  • api-change:observabilityadmin: [botocore] CloudWatch Observability Admin adds pipelines configuration for third party log ingestion and transformation of all logs ingested, integration of CloudWatch logs with S3 Tables, and AWS account or organization level enablement for 7 AWS services.
  • api-change:opensearch: [botocore] GPU-acceleration helps you build large-scale vector databases faster and more efficiently. You can enable this feature on new OpenSearch domains and OpenSearch Serverless collections. This feature uses GPU-acceleration to reduce the time needed to index data into vector indexes.
  • api-change:opensearchserverless: [botocore] GPU-acceleration helps you build large-scale vector databases faster and more efficiently. You can enable this feature on new OpenSearch domains and OpenSearch Serverless collections. This feature uses GPU-acceleration to reduce the time needed to index data into vector indexes.
  • api-change:rds: [botocore] RDS Oracle and SQL Server: Add support for adding, modifying, and removing additional storage volumes, offering up to 256TiB storage; RDS SQL Server: Support Developer Edition via custom engine versions for development and testing purposes; M7i/R7i instances with Optimize CPU for cost savings.
  • api-change:s3: [botocore] New S3 Storage Class FSX_ONTAP
  • api-change:s3control: [botocore] Add support for S3 Storage Lens Advanced Performance Metrics, Expanded Prefixes metrics report, and export to S3 Tables.
  • api-change:s3tables: [botocore] Add storage class, replication, and table record expiration features to S3 Tables.
  • api-change:s3vectors: [botocore] Amazon S3 Vectors provides cost-effective, elastic, and durable vector storage for queries based on semantic meaning and similarity.
  • api-change:sagemaker: [botocore] Added support for serverless MLflow Apps.

Added support for new HubContentTypes (DataSet and JsonDoc) in Private Hub for AI model customization assets, enabling tracking and management of training datasets and evaluators (reward functions/prompts) throughout the ML lifecycle.

  • api-change:savingsplans: [botocore] Added support for Amazon Database Savings Plans
  • api-change:securityhub: [botocore] ITSM enhancements: DRYRUN mode for testing ticket creation, ServiceNow now uses AWS Secrets Manager for credentials, ConnectorRegistrationsV2 renamed to RegisterConnectorV2, added ServiceQuotaExceededException error, and ConnectorStatus visibility in CreateConnectorV2.

v1.42.0

Compare Source

======

  • api-change:appintegrations: [botocore] This release adds support for MCP servers via the ApplicationType field, allowing customers to register their Bedrock AgentCore gateways as third party applications.
  • api-change:bedrock-agent: [botocore] Support audio and video ingestion on Bedrock Knowledge Bases.
  • api-change:bedrock-agent-runtime: [botocore] Support audio and video content retrieval on Bedrock Knowledge Bases.
  • api-change:cleanrooms: [botocore] AWS Clean Rooms now supports privacy-enhancing synthetic dataset generation for custom ML training.
  • api-change:cleanroomsml: [botocore] AWS Clean Rooms ML now supports privacy-enhancing synthetic dataset generation for custom ML training.
  • api-change:connect: [botocore] This is a combined re:Invent release for Amazon Connect.
  • api-change:connectcampaignsv2: [botocore] This release added support for new WhatsApp channel and Journey type outbound campaign
  • api-change:connectparticipant: [botocore] Amazon Connect now supports message processing that intercepts and processes chat messages before they reach any participant.
  • api-change:customer-profiles: [botocore] This release introduces, CRUD APIs for the DomainObjectType and Recommender resources, APIs to offer statistical insights on Object Type Attributes, Changes to SegmentDefinition APIs to support SQL queries to create Segments, and Changes to Domain APIs to support Data Store.
  • api-change:eks: [botocore] This release adds support for EKS Capabilities
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version
  • api-change:glue: [botocore] feature: Glue: Add support for Iceberg materialized view in Glue Data Catalog, including updated CreateTable API to support materialized views and new APIs for managing data refresh for materialized views.
    feature: Glue: Add support for Iceberg table encryption keys and struct field defaults.
  • api-change:lambda: [botocore] Launching Lambda Managed Instances - a new feature to run Lambda on EC2.
  • api-change:lexv2-models: [botocore] Adds support for speech-to-speech models for human-like, adaptive, and expressive voice interactions. Also adds support for speech model preference, allowing customers to select which speech model they want to use for speech-to-text requests.
  • api-change:marketplace-agreement: [botocore] This release supports 1/multi-product transactions via offer sets. DescribeAgreement and SearchAgreements APIs now return offer set IDs. SearchAgreements also supports filtering by offer set ID and 2/variable payment pricing terms will be returned through GetAgreementTerms.
  • api-change:marketplace-catalog: [botocore] This release introduces offer set entity in AWS Marketplace Catalog API to enable multi-product transaction. Offer set enables sellers to group multiple private offers into a single-click purchase experience, simplifying procurement for customers purchasing multi-product solutions.
  • api-change:partnercentral-account: [botocore] Initial GA launch of Partner Central Account
  • api-change:partnercentral-benefits: [botocore] Initial GA launch of Partner Central Benefits
  • api-change:partnercentral-selling: [botocore] New Features:
    Lead Management APIs for capturing and nurturing leads
    Lead invitation support for partner collaboration
    Lead-to-opportunity conversion operations
    AWS Marketplace OfferSets support for opportunities
  • api-change:personalize: [botocore] This release adds support for includedDatasetColumns and performIncrementalUpdate in solution APIs, and rankingInfluence in campaign and batch inference APIs.
  • api-change:qconnect: [botocore] New AIAgent types: Orchestration for ModelContextProtocol tool integration, CaseSummary for Amazon Connect Case summaries, NoteTaker for Agent Assistance notes. Added ListSpans and Retrieve APIs. Enhanced Q in Connect AssistantAssociationType to support Bring Your Own Bedrock Knowledge Bases.
  • api-change:route53globalresolver: [botocore] Add SDK for Amazon Route 53 Global Resolver, a fully managed DNS resolver service that offers broad DNS-filtering security controls.
  • enhancement:AWSCRT: [botocore] Update awscrt version to 0.29.1
  • enhancement:s3: Adds partial TransferConfig support for CRT transfer managers.
  • feature:s3: Added crt mode to preferred_transfer_client parameter in TransferConfig to enable CRT transfer client in all environments.

v1.41.5

Compare Source

======

  • api-change:bedrock-runtime: [botocore] Bedrock Runtime Reserved Service Support
  • api-change:compute-optimizer: [botocore] Compute Optimizer now identifies idle NAT Gateway resources for cost optimization based on traffic patterns and backup configuration analysis. Access recommendations via the GetIdleRecommendations API.
  • api-change:cost-optimization-hub: [botocore] This release enables AWS Cost Optimization Hub to show cost optimization recommendations for NAT Gateway.

v1.41.4

Compare Source

======

  • api-change:ec2: [botocore] This release adds support to view Network firewall proxy appliances attached to an existing NAT Gateway via DescribeNatGateways API NatGatewayAttachedAppliance structure.
  • api-change:network-firewall: [botocore] Network Firewall release of the Proxy feature.
  • api-change:organizations: [botocore] Add support for policy operations on the S3_POLICY and BEDROCK_POLICY policy type.
  • api-change:route53: [botocore] Adds support for new route53 feature: accelerated recovery.

v1.41.3

Compare Source

======

  • api-change:cloudfront: [botocore] Add TrustStore, ConnectionFunction APIs to CloudFront SDK
  • api-change:logs: [botocore] New CloudWatch Logs feature - LogGroup Deletion Protection, a capability that allows customers to safeguard their critical CloudWatch log groups from accidental or unintended deletion.
  • enhancement:awscrt: [botocore] Update awscrt version to 0.29.0

v1.41.2

Compare Source

======

  • api-change:apigateway: [`botoc

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Jun 9, 2025
@github-actions github-actions bot requested a review from mobious999 June 9, 2025 02:59
@renovate renovate bot force-pushed the renovate/python-dependencies branch 17 times, most recently from ea93aac to aa1dea4 Compare June 15, 2025 05:13
@renovate renovate bot force-pushed the renovate/python-dependencies branch 6 times, most recently from e20a7f6 to b19e9ff Compare June 19, 2025 03:52
@renovate renovate bot force-pushed the renovate/python-dependencies branch 11 times, most recently from cd5c98b to d9d97fc Compare December 12, 2025 03:12
@renovate renovate bot force-pushed the renovate/python-dependencies branch 12 times, most recently from 91082bc to 544228c Compare December 19, 2025 20:54
@renovate renovate bot force-pushed the renovate/python-dependencies branch 5 times, most recently from ff50d76 to 95faa56 Compare December 23, 2025 04:50
@renovate renovate bot force-pushed the renovate/python-dependencies branch from 95faa56 to 815e623 Compare December 23, 2025 21:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

AnyChange dependencies Pull requests that update a dependency file release root source

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants