Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jun 9, 2025

This PR contains the following updates:

Package Change Age Confidence
anyio (changelog) ==4.9.0 -> ==4.11.0 age confidence
argcomplete (changelog) ==3.6.2 -> ==3.6.3 age confidence
boto3 ==1.39.14 -> ==1.40.64 age confidence
botocore ==1.39.14 -> ==1.40.64 age confidence
certifi ==2025.7.14 -> ==2025.10.5 age confidence
charset-normalizer (changelog) ==3.4.2 -> ==3.4.4 age confidence
click (changelog) ==8.2.1 -> ==8.3.0 age confidence
commitizen (changelog) ==4.8.3 -> ==4.9.1 age confidence
coverage ==7.10.0 -> ==7.11.0 age confidence
cryptography (changelog) ==45.0.5 -> ==45.0.7 age confidence
deptry (changelog) ==0.23.0 -> ==0.23.1 age confidence
filelock ==3.16.1 -> ==3.20.0 age confidence
fonttools ==4.59.0 -> ==4.60.1 age confidence
idna (changelog) ==3.10 -> ==3.11 age confidence
iniconfig ==2.1.0 -> ==2.3.0 age confidence
joblib ==1.5.1 -> ==1.5.2 age confidence
kiwisolver (changelog) ==1.4.8 -> ==1.4.9 age confidence
markdown (changelog) ==3.8.2 -> ==3.9 age confidence
markupsafe (changelog) ==3.0.2 -> ==3.0.3 age confidence
marshmallow (changelog) ==4.0.0 -> ==4.0.1 age confidence
matplotlib ==3.10.3 -> ==3.10.7 age confidence
mkdocs-material (changelog) ==9.6.16 -> ==9.6.22 age confidence
mypy (changelog) ==1.17.0 -> ==1.18.2 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.0 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.3 age confidence
pydantic-core ==2.23.4 -> ==2.41.4 age confidence
pymdown-extensions ==10.16 -> ==10.16.1 age confidence
pyparsing ==3.2.3 -> ==3.2.5 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.16 age confidence
ruamel-yaml-clib ==0.2.12 -> ==0.2.14 age confidence
ruff (source, changelog) ==0.12.5 -> ==0.14.3 age confidence
s3transfer ==0.13.1 -> ==0.14.0 age confidence
safety (changelog) ==3.6.0 -> ==3.6.2 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.5.0 age confidence
termcolor (changelog) ==2.3.0 -> ==2.5.0 age confidence
typer (changelog) ==0.16.0 -> ==0.20.0 age confidence
typing-extensions (changelog) ==4.14.1 -> ==4.15.0 age confidence
wcwidth ==0.2.13 -> ==0.2.14 age confidence

Release Notes

agronholm/anyio (anyio)

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

boto/boto3 (boto3)

v1.40.64

Compare Source

=======

  • api-change:connectcases: [botocore] Added two new case rule types: Parent Child Field Options (restricts child field options based on parent field value) and Hidden (controls child field visibility based on parent field value). Both enable dynamic field behavior within templates.
  • api-change:ec2: [botocore] Amazon VPC IP Address Manager (IPAM) now supports automated prefix list management, allowing you to create rules that automatically populate customer-managed prefix lists with CIDRs from your IPAM pools or AWS resources based on tags, Regions, or other criteria.
  • api-change:emr: [botocore] Update endpoint ruleset parameters casing
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version
  • api-change:fms: [botocore] Update endpoint ruleset parameters casing
  • api-change:fsx: [botocore] Update endpoint ruleset parameters casing
  • api-change:health: [botocore] Update endpoint ruleset parameters casing
  • api-change:kinesis: [botocore] Update endpoint ruleset parameters casing
  • api-change:lambda: [botocore] Add Python3.14 (python3.14) and Java 25 (java25) support to AWS Lambda
  • api-change:logs: [botocore] Update endpoint ruleset parameters casing
  • api-change:marketplace-catalog: [botocore] Update endpoint ruleset parameters casing
  • api-change:mediaconvert: [botocore] Adds SlowPalPitchCorrection to audio pitch correction settings. Enables opacity for VideoOverlays. Adds REMUX_ALL option to enable multi-rendition passthrough to VideoSelector for allow listed accounts.
  • api-change:omics: [botocore] Added WDL_LENIENT engine type that enables implicit typecasting of variable values to its compatible declared types
  • api-change:payment-cryptography: [botocore] Allow additional characters in the CertificateSubject for GetCertificateSigningRequest API.
  • api-change:redshift: [botocore] Update endpoint ruleset parameters casing
  • api-change:resourcegroupstaggingapi: [botocore] Update endpoint ruleset parameters casing
  • api-change:sagemaker: [botocore] Allow update of platform identifier via UpdateNotebookInstance operation.
  • api-change:savingsplans: [botocore] Add dual-stack endpoint support for Savings Plans
  • api-change:snowball: [botocore] Update endpoint ruleset parameters casing
  • api-change:ssm-quicksetup: [botocore] Update endpoint ruleset parameters casing
  • api-change:textract: [botocore] Update endpoint ruleset parameters casing
  • api-change:waf: [botocore] Update endpoint ruleset parameters casing

v1.40.63

Compare Source

=======

  • api-change:amp: [botocore] Add Anomaly Detection APIs for Amazon Managed Prometheus
  • api-change:apigateway: [botocore] Update endpoint ruleset parameters casing
  • api-change:appconfig: [botocore] Update endpoint ruleset parameters casing
  • api-change:appflow: [botocore] Update endpoint ruleset parameters casing
  • api-change:applicationcostprofiler: [botocore] Update endpoint ruleset parameters casing
  • api-change:appmesh: [botocore] Update endpoint ruleset parameters casing
  • api-change:appsync: [botocore] Update endpoint ruleset parameters casing
  • api-change:artifact: [botocore] Update endpoint ruleset parameters casing
  • api-change:auditmanager: [botocore] Update endpoint ruleset parameters casing
  • api-change:bedrock-agent: [botocore] Update endpoint ruleset parameters casing
  • api-change:bedrock-agentcore-control: [botocore] Web-Bot-Auth support for AgentCore Browser tool to help reduce captcha challenges.
  • api-change:chime: [botocore] Update endpoint ruleset parameters casing
  • api-change:cleanrooms: [botocore] Added support for advanced Spark configurations to optimize SQL performance
  • api-change:cloudcontrol: [botocore] Update endpoint ruleset parameters casing
  • api-change:clouddirectory: [botocore] Update endpoint ruleset parameters casing
  • api-change:cloudsearch: [botocore] Update endpoint ruleset parameters casing
  • api-change:cloudwatch: [botocore] Update endpoint ruleset parameters casing
  • api-change:codecatalyst: [botocore] Update endpoint ruleset parameters casing
  • api-change:codecommit: [botocore] Update endpoint ruleset parameters casing
  • api-change:codedeploy: [botocore] Update endpoint ruleset parameters casing
  • api-change:cognito-sync: [botocore] Update endpoint ruleset parameters casing
  • api-change:compute-optimizer: [botocore] Update endpoint ruleset parameters casing
  • api-change:connectcases: [botocore] Update endpoint ruleset parameters casing
  • api-change:deadline: [botocore] Update endpoint ruleset parameters casing
  • api-change:devops-guru: [botocore] Update endpoint ruleset parameters casing
  • api-change:docdb: [botocore] Adding FailoverState and TagList to GlobalCluster and SynchronizationStatus to GlobalClusterMember.
  • api-change:ecs: [botocore] Amazon ECS Service Connect now supports Envoy access logs, providing deeper observability into request-level traffic patterns and service interactions.
  • api-change:eks-auth: [botocore] Update endpoint ruleset parameters casing
  • api-change:elasticache: [botocore] Update endpoint ruleset parameters casing
  • api-change:emr-serverless: [botocore] This release adds the capability to enable User Background Sessions for customers running Trusted Identity Propagation enabled Interactive Sessions on EMR Serverless Applications.
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version
  • api-change:firehose: [botocore] Update endpoint ruleset parameters casing
  • api-change:frauddetector: [botocore] Update endpoint ruleset parameters casing
  • api-change:geo-places: [botocore] Update endpoint ruleset parameters casing
  • api-change:glue: [botocore] This release adds the capability to enable User Background Sessions for customers running Trusted Identity Propagation enabled Interactive Sessions on AWS Glue.
  • api-change:greengrassv2: [botocore] Update endpoint ruleset parameters casing
  • api-change:iotevents-data: [botocore] Update endpoint ruleset parameters casing
  • api-change:iot-managed-integrations: [botocore] Add a new GetManagedThingCertificate API to expose Iot ManagedIntegrations (MI) device certificate, and add "-" support for name, properties, actions and events in the CapabilityReportCapability object.
  • api-change:keyspacesstreams: [botocore] Update endpoint ruleset parameters casing
  • api-change:kms: [botocore] Add cross account VPC endpoint service connectivity support to CustomKeyStore.
  • api-change:license-manager-linux-subscriptions: [botocore] Update endpoint ruleset parameters casing
  • api-change:marketplace-reporting: [botocore] Update endpoint ruleset parameters casing
  • api-change:neptune: [botocore] Update endpoint ruleset parameters casing
  • api-change:rtbfabric: [botocore] RTB Fabric documentation update.
  • api-change:s3outposts: [botocore] Update endpoint ruleset parameters casing
  • api-change:sagemaker-runtime: [botocore] Update endpoint ruleset parameters casing
  • api-change:schemas: [botocore] Update endpoint ruleset parameters casing
  • api-change:serverlessrepo: [botocore] Update endpoint ruleset parameters casing
  • api-change:servicecatalog: [botocore] Update endpoint ruleset parameters casing
  • api-change:sso: [botocore] Update endpoint ruleset parameters casing
  • api-change:sts: [botocore] Update endpoint ruleset parameters casing

v1.40.62

Compare Source

=======

  • api-change:bedrock-runtime: [botocore] Add support for system tool and web citation response.

v1.40.61

Compare Source

=======

  • api-change:apigatewayv2: [botocore] Update endpoint ruleset parameters casing
  • api-change:application-signals: [botocore] Added support for CloudWatch Synthetics Canary resources in ListAuditFindings API. This enhancement allows customers to retrieve audit findings specifically for CloudWatch Synthetics canaries and enables service-canary correlation analysis.
  • api-change:backupsearch: [botocore] Update endpoint ruleset parameters casing
  • api-change:bcm-pricing-calculator: [botocore] Update endpoint ruleset parameters casing
  • api-change:bedrock-agent-runtime: [botocore] Update endpoint ruleset parameters casing
  • api-change:bedrock-runtime: [botocore] Update endpoint ruleset parameters casing
  • api-change:cleanroomsml: [botocore] Update endpoint ruleset parameters casing
  • api-change:clients: [botocore] The following clients have been removed per deprecation of the services - qldb, qldb-session, robomaker, lookoutmetrics, lookoutvision, iotfleethub, apptest
  • api-change:cloud9: [botocore] Update endpoint ruleset parameters casing
  • api-change:cloudsearchdomain: [botocore] Update endpoint ruleset parameters casing
  • api-change:codeconnections: [botocore] Update endpoint ruleset parameters casing
  • api-change:codeguru-security: [botocore] Update endpoint ruleset parameters casing
  • api-change:detective: [botocore] Update endpoint ruleset parameters casing
  • api-change:ec2: [botocore] This released the DescribeCapacityReservationTopology API.
  • api-change:ecs: [botocore] Amazon ECS supports native linear and canary service deployments, allowing you to shift traffic in increments for more control.
  • api-change:efs: [botocore] Update endpoint ruleset parameters casing
  • api-change:elastictranscoder: [botocore] Update endpoint ruleset parameters casing
  • api-change:emr-containers: [botocore] Update endpoint ruleset parameters casing
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version
  • api-change:gameliftstreams: [botocore] Add stream group expiration date and expired status
  • api-change:glacier: [botocore] Update endpoint ruleset parameters casing
  • api-change:groundstation: [botocore] Enable use of AzEl ephemerides
  • api-change:inspector-scan: [botocore] Update endpoint ruleset parameters casing
  • api-change:kafkaconnect: [botocore] Update endpoint ruleset parameters casing
  • api-change:kendra: [botocore] Update endpoint ruleset parameters casing
  • api-change:kinesisvideo: [botocore] Update endpoint ruleset parameters casing
  • api-change:lambda: [botocore] Added SerializedRequestEntityTooLargeException to Lambda Invoke API
  • api-change:marketplace-deployment: [botocore] Update endpoint ruleset parameters casing
  • api-change:mediapackage-vod: [botocore] Update endpoint ruleset parameters casing
  • api-change:migrationhuborchestrator: [botocore] Update endpoint ruleset parameters casing
  • api-change:notifications: [botocore] Update endpoint ruleset parameters casing
  • api-change:opensearch: [botocore] Update endpoint ruleset parameters casing
  • api-change:organizations: [botocore] Added Account State field to the ListDelegatedAdministrators API response.
  • api-change:partnercentral-selling: [botocore] Update endpoint ruleset parameters casing
  • api-change:pipes: [botocore] Update endpoint ruleset parameters casing
  • api-change:ram: [botocore] Update endpoint ruleset parameters casing
  • api-change:resource-groups: [botocore] Update endpoint ruleset parameters casing
  • api-change:s3: [botocore] Amazon Simple Storage Service / Features: Add conditional writes in CopyObject on destination key to prevent unintended object modifications.
  • api-change:s3control: [botocore] Update endpoint ruleset parameters casing
  • api-change:sagemaker: [botocore] Amazon SageMaker now supports deleting training and processing jobs in a terminal status.
  • api-change:sagemaker-featurestore-runtime: [botocore] Update endpoint ruleset parameters casing
  • api-change:security-ir: [botocore] Update endpoint ruleset parameters casing
  • api-change:servicecatalog-appregistry: [botocore] Update endpoint ruleset parameters casing
  • api-change:sqs: [botocore] Update endpoint ruleset parameters casing
  • api-change:support-app: [botocore] Update endpoint ruleset parameters casing
  • api-change:taxsettings: [botocore] Update endpoint ruleset parameters casing
  • api-change:trustedadvisor: [botocore] Update endpoint ruleset parameters casing
  • api-change:workspaces: [botocore] Added IPv6 address support for WorkSpaces using Dual-Stack subnets
  • api-change:workspaces-instances: [botocore] Update endpoint ruleset parameters casing
  • api-change:xray: [botocore] Update endpoint ruleset parameters casing

v1.40.60

Compare Source

=======

  • api-change:accessanalyzer: [botocore] Update endpoint ruleset parameters casing
  • api-change:aiops: [botocore] Update endpoint ruleset parameters casing
  • api-change:athena: [botocore] Update endpoint ruleset parameters casing
  • api-change:backup-gateway: [botocore] Update endpoint ruleset parameters casing
  • api-change:bedrock-data-automation: [botocore] Update endpoint ruleset parameters casing
  • api-change:braket: [botocore] Update endpoint ruleset parameters casing
  • api-change:ce: [botocore] Updated endpoint for eusc-de-east-1 region.
  • api-change:chime-sdk-identity: [botocore] Update endpoint ruleset parameters casing
  • api-change:chime-sdk-media-pipelines: [botocore] Update endpoint ruleset parameters casing
  • api-change:codeartifact: [botocore] Update endpoint ruleset parameters casing
  • api-change:codeguruprofiler: [botocore] Update endpoint ruleset parameters casing
  • api-change:cognito-idp: [botocore] Update endpoint ruleset parameters casing
  • api-change:comprehend: [botocore] Update endpoint ruleset parameters casing
  • api-change:connectcampaigns: [botocore] Update endpoint ruleset parameters casing
  • api-change:controltower: [botocore] Update endpoint ruleset parameters casing
  • api-change:cost-optimization-hub: [botocore] Update endpoint ruleset parameters casing
  • api-change:dax: [botocore] Update endpoint ruleset parameters casing
  • api-change:elasticbeanstalk: [botocore] Update endpoint ruleset parameters casing
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version
  • api-change:entityresolution: [botocore] Update endpoint ruleset parameters casing
  • api-change:forecast: [botocore] Update endpoint ruleset parameters casing
  • api-change:greengrass: [botocore] Update endpoint ruleset parameters casing
  • api-change:iam: [botocore] Fixed missing SummaryMap keys in GetAccountSummary response that were being filtered out during deserialization in AWS Java SDK v2
  • api-change:invoicing: [botocore] Update endpoint ruleset parameters casing
  • api-change:kinesis: [botocore] Adds support for record sizes up to 10MiB and introduces new UpdateMaxRecordSize API to modify stream record size limits. Adds record size parameters to existing CreateStream and DescribeStreamSummary APIs for request and response payloads respectively.
  • api-change:launch-wizard: [botocore] Update endpoint ruleset parameters casing
  • api-change:lex-runtime: [botocore] Update endpoint ruleset parameters casing
  • api-change:managedblockchain: [botocore] Update endpoint ruleset parameters casing
  • api-change:mturk: [botocore] Update endpoint ruleset parameters casing
  • api-change:neptune-graph: [botocore] Update endpoint ruleset parameters casing
  • api-change:outposts: [botocore] Update endpoint ruleset parameters casing
  • api-change:pinpoint: [botocore] Update endpoint ruleset parameters casing
  • api-change:rbin: [botocore] Update endpoint ruleset parameters casing
  • api-change:rds-data: [botocore] Update endpoint ruleset parameters casing
  • api-change:redshift-serverless: [botocore] Update endpoint ruleset parameters casing
  • api-change:rekognition: [botocore] Update endpoint ruleset parameters casing
  • api-change:repostspace: [botocore] Update endpoint ruleset parameters casing
  • api-change:route53profiles: [botocore] Update endpoint ruleset parameters casing
  • api-change:route53resolver: [botocore] Update endpoint ruleset parameters casing
  • api-change:s3vectors: [botocore] Update endpoint ruleset parameters casing
  • api-change:scheduler: [botocore] Update endpoint ruleset parameters casing
  • api-change:secretsmanager: [botocore] Update endpoint ruleset parameters casing
  • api-change:ses: [botocore] Update endpoint ruleset parameters casing
  • api-change:shield: [botocore] Update endpoint ruleset parameters casing
  • api-change:simspaceweaver: [botocore] Update endpoint ruleset parameters casing
  • api-change:socialmessaging: [botocore] Update endpoint ruleset parameters casing
  • api-change:ssm-sap: [botocore] Update endpoint ruleset parameters casing
  • api-change:sso-admin: [botocore] Update endpoint ruleset parameters casing
  • api-change:stepfunctions: [botocore] Update endpoint ruleset parameters casing
  • api-change:waf-regional: [botocore] Update endpoint ruleset parameters casing
  • api-change:workmailmessageflow: [botocore] Update endpoint ruleset parameters casing

v1.40.59

Compare Source

=======

  • api-change:acm: [botocore] Update endpoint ruleset parameters casing
  • api-change:amplifyuibuilder: [botocore] Update endpoint ruleset parameters casing
  • api-change:application-signals: [botocore] Update endpoint ruleset parameters casing
  • api-change:billing: [botocore] Update endpoint ruleset parameters casing
  • api-change:budgets: [botocore] Update endpoint ruleset parameters casing
  • api-change:chime-sdk-messaging: [botocore] Update endpoint ruleset parameters casing
  • api-change:cloudtrail: [botocore] Update endpoint ruleset parameters casing
  • api-change:codepipeline: [botocore] Update endpoint ruleset parameters casing
  • api-change:datapipeline: [botocore] Update endpoint ruleset parameters casing
  • api-change:datazone: [botocore] This release adds support for MLflow connections Creation in DataZone
  • api-change:docdb: [botocore] Update endpoint ruleset parameters casing
  • api-change:dynamodbstreams: [botocore] Update endpoint ruleset parameters casing
  • api-change:eks: [botocore] Update endpoint ruleset parameters casing
  • api-change:elb: [botocore] Update endpoint ruleset parameters casing
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version
  • api-change:evs: [botocore] Update endpoint ruleset parameters casing
  • api-change:fis: [botocore] Update endpoint ruleset parameters casing
  • api-change:gameliftstreams: [botocore] Add status reasons for TERMINATED stream sessions
  • api-change:geo-maps: [botocore] Added support for optional AdditionalFeatures parameter in the V2 GetTile API.
  • api-change:inspector: [botocore] Update endpoint ruleset parameters casing
  • api-change:iot-managed-integrations: [botocore] Update endpoint ruleset parameters casing
  • api-change:iotwireless: [botocore] Update endpoint ruleset parameters casing
  • api-change:kinesisanalytics: [botocore] Update endpoint ruleset parameters casing
  • api-change:kinesis-video-signaling: [botocore] Update endpoint ruleset parameters casing
  • api-change:location: [botocore] Added support for mobile app restrictions in Amazon Location API keys.
  • api-change:lookoutvision: [botocore] Update endpoint ruleset parameters casing
  • api-change:mediapackage: [botocore] Update endpoint ruleset parameters casing
  • api-change:mediastore: [botocore] Update endpoint ruleset parameters casing
  • api-change:mediastore-data: [botocore] Update endpoint ruleset parameters casing
  • api-change:migrationhubstrategy: [botocore] Update endpoint ruleset parameters casing
  • api-change:mq: [botocore] Update endpoint ruleset parameters casing
  • api-change:panorama: [botocore] Update endpoint ruleset parameters casing
  • api-change:payment-cryptography: [botocore] Update endpoint ruleset parameters casing
  • api-change:payment-cryptography-data: [botocore] Update endpoint ruleset parameters casing
  • api-change:pca-connector-ad: [botocore] Update endpoint ruleset parameters casing
  • api-change:qbusiness: [botocore] Update endpoint ruleset parameters casing
  • api-change:robomaker: [botocore] Update endpoint ruleset parameters casing
  • api-change:route53domains: [botocore] Update endpoint ruleset parameters casing
  • api-change:rtbfabric: [botocore] Add support for custom rate limits.
  • api-change:s3tables: [botocore] Update endpoint ruleset parameters casing
  • api-change:sagemaker: [botocore] Added inference components model data caching feature
  • api-change:sagemaker-metrics: [botocore] Update endpoint ruleset parameters casing
  • api-change:securityhub: [botocore] Release 3 layer filter support in GetFindingsV2, GetFindingStatisticsV2, GetResourcesV2,GetResourcesStatisticsV2, AutomationRule V2 APIs. Update filter casing in GetResourcesV2, GetResourcesStatisticsV2 APIs. Add new filters in GetFindingsV2, GetFindingStatisticsV2, AutomationRule V2 APIs.
  • api-change:servicediscovery: [botocore] Update endpoint ruleset parameters casing
  • api-change:snow-device-management: [botocore] Update endpoint ruleset parameters casing
  • api-change:sso-oidc: [botocore] Update endpoint ruleset parameters casing
  • api-change:supplychain: [botocore] Update endpoint ruleset parameters casing
  • api-change:translate: [botocore] Update endpoint ruleset parameters casing
  • api-change:verifiedpermissions: [botocore] Update endpoint ruleset parameters casing
  • api-change:vpc-lattice: [botocore] Update endpoint ruleset parameters casing
  • api-change:wisdom: [botocore] Update endpoint ruleset parameters casing
  • api-change:workspaces-thin-client: [botocore] Update endpoint ruleset parameters casing

v1.40.58

Compare Source

=======

  • api-change:account: [botocore] Update endpoint ruleset parameters casing
  • api-change:application-autoscaling: [botocore] Update endpoint ruleset parameters casing
  • api-change:bedrock-agentcore: [botocore] Fixing the service documentation name
  • api-change:bedrock-agentcore-control: [botocore] Fixing the service documentation name
  • api-change:chime-sdk-voice: [botocore] Update endpoint ruleset parameters casing
  • api-change:cloudtrail-data: [botocore] Update endpoint ruleset parameters casing
  • api-change:codebuild: [botocore] Update endpoint ruleset parameters casing
  • api-change:codestar-connections: [botocore] Update endpoint ruleset parameters casing
  • api-change:config: [botocore] Update endpoint ruleset parameters casing
  • api-change:connect-contact-lens: [botocore] Update endpoint ruleset parameters casing
  • api-change:cur: [botocore] Update endpoint ruleset parameters casing
  • api-change:discovery: [botocore] Update endpoint ruleset parameters casing
  • api-change:dms: [botocore] Update endpoint ruleset parameters casing
  • api-change:docdb-elastic: [botocore] Update endpoint ruleset parameters casing
  • api-change:drs: [botocore] Update endpoint ruleset parameters casing
  • api-change:dsql: [botocore] Add support for resource-based policies for Aurora DSQL clusters. This will enable you to implement Block Public Access (BPA) which will help restrict access to your Aurora DSQL public or VPC endpoints.
  • api-change:ebs: [botocore] Update endpoint ruleset parameters casing
  • api-change:ecr: [botocore] Update endpoint ruleset parameters casing
  • api-change:ecr-public: [botocore] Update endpoint ruleset parameters casing
  • api-change:healthlake: [botocore] Update endpoint ruleset parameters casing
  • api-change:internetmonitor: [botocore] Update endpoint ruleset parameters casing
  • api-change:iotevents: [botocore] Update endpoint ruleset parameters casing
  • api-change:iot-jobs-data: [botocore] Update endpoint ruleset parameters casing
  • api-change:kinesis-video-archived-media: [botocore] Update endpoint ruleset parameters casing
  • api-change:kinesis-video-webrtc-storage: [botocore] Update endpoint ruleset parameters casing
  • api-change:lambda: [botocore] Add NodeJs 24 (nodejs24.x) support to AWS Lambda.
  • api-change:macie2: [botocore] Update endpoint ruleset parameters casing
  • api-change:managedblockchain-query: [botocore] Update endpoint ruleset parameters casing
  • api-change:marketplacecommerceanalytics: [botocore] Update endpoint ruleset parameters casing
  • api-change:mediatailor: [botocore] Update endpoint ruleset parameters casing
  • api-change:mgh: [botocore] Update endpoint ruleset parameters casing
  • api-change:mgn: [botocore] Update endpoint ruleset parameters casing
  • api-change:mpa: [botocore] Update endpoint ruleset parameters casing
  • api-change:neptunedata: [botocore] Update endpoint ruleset parameters casing
  • api-change:networkmonitor: [botocore] Update endpoint ruleset parameters casing
  • api-change:odb: [botocore] Doc-only update that removes duplicate values from descriptions of ODB peering APIs.
  • api-change:omics: [botocore] Update endpoint ruleset parameters casing
  • api-change:opensearchserverless: [botocore] Update endpoint ruleset parameters casing
  • api-change:pca-connector-scep: [botocore] Update endpoint ruleset parameters casing
  • api-change:personalize-events: [botocore] Update endpoint ruleset parameters casing
  • api-change:pinpoint-email: [botocore] Update endpoint ruleset parameters casing
  • api-change:resiliencehub: [botocore] Update endpoint ruleset parameters casing
  • api-change:rum: [botocore] Update endpoint ruleset parameters casing
  • api-change:sagemaker: [botocore] Update endpoint ruleset parameters casing
  • api-change:sagemaker-edge: [botocore] Update endpoint ruleset parameters casing
  • api-change:savingsplans: [botocore] Update endpoint ruleset parameters casing
  • api-change:securitylake: [botocore] Update endpoint ruleset parameters casing
  • api-change:sesv2: [botocore] Update endpoint ruleset parameters casing
  • api-change:storagegateway: [botocore] Update endpoint ruleset parameters casing
  • api-change:synthetics: [botocore] Update endpoint ruleset parameters casing

v1.40.57

Compare Source

=======

  • api-change:appfabric: [botocore] Update endpoint ruleset parameters casing
  • api-change:autoscaling: [botocore] Update endpoint ruleset parameters casing
  • api-change:b2bi: [botocore] Update endpoint ruleset parameters casing
  • api-change:bcm-dashboards: [botocore] Update endpoint ruleset parameters casing
  • api-change:ce: [botocore] Update endpoint ruleset parameters casing
  • api-change:chatbot: [botocore] Update endpoint ruleset parameters casing
  • api-change:cloudformation: [botocore] Update endpoint ruleset parameters casing
  • api-change:cloudhsm: [botocore] Update endpoint ruleset parameters casing
  • api-change:cloudhsmv2: [botocore] Update endpoint ruleset parameters casing
  • api-change:codeguru-reviewer: [botocore] Update endpoint ruleset parameters casing
  • api-change:cognito-identity: [botocore] Update endpoint ruleset parameters casing
  • api-change:comprehendmedical: [botocore] Update endpoint ruleset parameters casing
  • api-change:connect: [botocore] This release added support for email address alias configuration and outbound campaign preview mode.
  • api-change:connectcampaignsv2: [botocore] Updated Amazon Connect Outbound Campaigns V2 SDK to support Preview Outbound Mode
  • api-change:connectparticipant: [botocore] Update endpoint ruleset parameters casing
  • api-change:devicefarm: [botocore] This release adds support for optionally including an app as part of a CreateRemoteAccessSession request
  • api-change:directconnect: [botocore] Update endpoint ruleset parameters casing
  • api-change:ds-data: [botocore] Update endpoint ruleset parameters casing
  • api-change:ec2: [botocore] This release adds AvailabilityZoneId support for CreateNetworkInterface and DescribeNetworkInterfaces APIs.
  • api-change:ec2-instance-connect: [botocore] Upda

@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 15 times, most recently from 4a5710d to d6dfcb4 Compare October 19, 2025 01:09
@renovate renovate bot force-pushed the renovate/python-dependencies branch 7 times, most recently from 5c9c852 to d372398 Compare October 26, 2025 18:00
@renovate renovate bot force-pushed the renovate/python-dependencies branch 6 times, most recently from cddde61 to 795406c Compare October 31, 2025 00:54
@renovate renovate bot force-pushed the renovate/python-dependencies branch from 795406c to fcca6e6 Compare October 31, 2025 21:10
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