Skip to content

chore(deps): update minor and patch#594

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/minor-and-patch
Open

chore(deps): update minor and patch#594
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/minor-and-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Nov 29, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
alpine final minor 3.223.23 age adoption passing confidence
alpine final minor 3.22.23.23.4 age adoption passing confidence
alpine stage minor 3.223.23 age adoption passing confidence
astroid minor ==4.0.2==4.1.2 age adoption passing confidence
botocore minor ==1.41.4==1.43.9 age adoption passing confidence
docker stage minor 29.0.429.5.0 age adoption passing confidence
docutils (changelog) patch ==0.22.3==0.22.4 age adoption passing confidence
golang final minor 1.25-alpine3.221.26-alpine3.22 age adoption passing confidence
golang final minor 1.25.4-alpine1.26.3-alpine age adoption passing confidence
golang stage minor 1.25-alpine3.221.26-alpine3.22 age adoption passing confidence
golangci/golangci-lint stage minor v2.6.2-alpinev2.12.2-alpine age adoption passing confidence
grafana/mimirtool (source) stage patch 3.0.03.0.6 age adoption passing confidence
hashicorp/packer stage minor 1.14.31.15.3 age adoption passing confidence
hashicorp/terraform (source) stage minor 1.14.01.15.3 age adoption passing confidence
hashicorp/vault stage patch 1.21.11.21.4 age adoption passing confidence
idna (changelog) minor ==3.11==3.15 age adoption passing confidence
jmespath minor ==1.0.1==1.1.0 age adoption passing confidence
mikefarah/yq (source) stage minor 4.49.24.53.2 age adoption passing confidence
node final minor 25.2-alpine3.2225.9-alpine3.22 age adoption passing confidence
node stage minor 25.2-alpine3.2225.9-alpine3.22 age adoption passing confidence
prom/alertmanager stage minor v0.29.0v0.32.1 age adoption passing confidence
prom/prometheus stage minor v3.7.3v3.11.3 age adoption passing confidence
prometheus-client minor ==0.23.1==0.25.0 age adoption passing confidence
pylint (changelog) patch ==4.0.3==4.0.5 age adoption passing confidence
s3transfer minor ==0.15.0==0.17.0 age adoption passing confidence
wrapt (changelog) minor ==2.0.1==2.1.2 age adoption passing confidence
yamllint minor ==1.37.1==1.38.0 age adoption passing confidence

Release Notes

pylint-dev/astroid (astroid)

v4.1.2

Compare Source

============================
Release date: 2026-03-22

  • Fix crash accessing property fset in generic classes with type annotations.
    Closes #​2996

  • Fix infinite recursion caused by cyclic inference in Constraint.

  • Fix RecursionError in _compute_mro() when circular class hierarchies
    are created through runtime name rebinding. Circular bases are now resolved
    to the original class instead of recursing.

    Closes #​2967
    Closes pylint-dev/pylint#10821

  • Fix DuplicateBasesError crash in dataclass transform when a class has
    duplicate bases in its MRO (e.g., Protocol appearing both directly and
    indirectly). Catch MroError at .mro() call sites in
    brain_dataclasses.py, consistent with the existing pattern elsewhere.

    Closes #​2628

  • Fix FunctionModel returning descriptor attributes for builtin functions.

    Closes #​2743

  • Catch MemoryError when inferring f-strings with extremely large format
    widths (e.g. f'{0:11111111111}') so that inference yields Uninferable
    instead of crashing.

    Closes #​2762

  • Fix ValueError in __str__/repr and error messages when nodes have
    extreme values (very long identifiers or large integers). Clamp pprint width
    to a minimum of 1 and truncate oversized values in error messages.

    Closes #​2764

v4.1.1

Compare Source

============================
Release date: 2026-02-22

  • Let UnboundMethodModel inherit from FunctionModel to improve inference of
    dunder methods for unbound methods.

    Refs #​2741

  • Filter Unknown from UnboundMethod and Super special attribute
    lookup to prevent placeholder nodes from leaking during inference.

    Refs #​2741

v4.1.0

Compare Source

============================
Release date: 2026-02-08

  • Add support for equality constraints (==, !=) in inference.
    Closes pylint-dev/pylint#3632
    Closes pylint-dev/pylint#3633

  • Ensure ast.JoinedStr nodes are Uninferable when the ast.FormattedValue is
    Uninferable. This prevents unexpected-keyword-arg messages in Pylint
    where the Uninferable string appeared in function arguments that were
    constructed dynamically.

    Closes pylint-dev/pylint#10822

  • Add support for type constraints (isinstance(x, y)) in inference.

    Closes pylint-dev/pylint#1162
    Closes pylint-dev/pylint#4635
    Closes pylint-dev/pylint#10469

  • Make type.__new__() raise clear errors instead of returning None

  • Move object dunder methods from FunctionModel to ObjectModel to make them
    available on all object types, not just functions.

    Closes #​2742
    Closes #​2741
    Closes pylint-dev/pylint#6094

  • lineno and end_lineno are now available on Arguments.

  • Add helper to iterate over all annotations nodes of function arguments,
    Arguments.get_annotations().

    Refs #​2860

  • Skip direct parent when determining the Decorator frame.

    Refs pylint-dev/pylint#8425

  • Add simple command line interface for astroid to output generated AST.
    Use with python -m astroid.

  • Fix incorrect type inference for super().method() calls that return Self.
    Previously, astroid would infer the parent class type instead of the child class type,
    causing pylint E1101 false positives in method chaining scenarios.

    Closes #​457

  • Add missing dtype and casting parameters to numpy.concatenate brain.

    Closes #​2870

  • Fix ability to detect .py modules inside PATH directories on Windows
    described by a UNC path with a trailing backslash (\)

    • Example: modutils.modpath_from_file(filename=r"\Mac\Code\tests\test_resources.py", path=["\mac\code"]) == ['tests', 'test_resources']
  • Fix random.sample inference crash when sequence contains uninferable elements.

    Closes #​2518

  • Fix random.sample crash when cloning ClassDef or FunctionDef nodes.

    Closes #​2923

v4.0.4

Compare Source

============================
Release date: 2026-02-07

  • Fix is_namespace() crash when search locations contain pathlib.Path objects.

    Closes #​2942

v4.0.3

Compare Source

============================
Release date: 2026-01-03

  • Fix inference of IfExp (ternary expression) nodes to avoid prematurely narrowing
    results in the face of inference ambiguity.

    Closes #​2899

  • Fix base class inference for dataclasses using the PEP 695 typing syntax.

    Refs pylint-dev/pylint#10788

boto/botocore (botocore)

v1.43.9

Compare Source

======

  • api-change:logs: Updating the max limit for start query api parameter.
  • api-change:mediapackagev2: This release adds support for AvailabilityStartTimeConfiguration in MediaPackageV2 DASH manifests
  • api-change:partnercentral-selling: Enable TCV intake on Opportunity to improve Opportunities Hygiene and downstream revenue attribution.

v1.43.8

Compare Source

======

  • api-change:bedrock: Advanced Prompt Optimization (AdvPO) allows you to optimize and migrate your prompts for any model on Bedrock by automatically evaluating responses and rewriting prompts to improve performance. This release provides a programmatic way to create, get, list, stop, and delete AdvPO jobs.
  • api-change:cloudfront: Adding a new boolean for OCSP Revocations in Viewer mTLS Create and Update APIs, and adding a new 'Passthrough' option for TrustStore modes
  • api-change:datazone: Adds support for SageMaker Unified Studio notebook operations, including notebook import and export
  • api-change:dms: Add 9 SDK waiters for DMS Schema Conversion async operations. Eliminates manual polling for import, assessment, conversion, export, and creation jobs.
  • api-change:glue: Release --has-databases parameter for AWS Glue get-catalogs API, which filters catalog responses to include only those capable of containing databases, excluding parent catalogs that hold only other catalogs. Remove model-level validation on partition index list size for AWS Glue tables.
  • api-change:grafana: Adds support for dual-stack (IPv4 and IPv6) connectivity to Amazon Managed Grafana workspaces. Customers can configure the ipAddressType parameter when creating or updating a workspace to choose between IPv4-only or dual-stack (IPv4 and IPv6) access.
  • api-change:mgn: Introducing new option for security groups mapping - with MAP-DHCP the service translates security rules from your source environment with DHCP compatibility.
  • api-change:qconnect: ListModels is an API that returns the available AI models for a Connect Assistant based on its region and AI prompt type.

v1.43.7

Compare Source

======

  • api-change:arc-region-switch: Adds support for enabling and disabling Lambda event source mappings in Region switch plans.
  • api-change:batch: Adds a billing callout to docs regarding using the CE Scale Down Delay feature
  • api-change:bedrock-agentcore-control: Adds support for read-only summary APIs for Policy Engine, Policy, and Policy Generation resources, enabling metadata retrieval without KMS decryption for AWS Config integration.
  • api-change:billingconductor: Add ConflictException to UpdateCustomLineItem operation.
  • api-change:connect: This change added three new EventSourceName for schedule notification feature
  • api-change:connectcampaignsv2: This release added support for Outbound Campaign timezone detection using all available contact methods
  • api-change:connectcases: Amazon Connect Cases now supports SLA durations of up to 2 years (1,051,200 minutes), increased from the previous maximum of 90 days (129,600 minutes). This enables you to track long-running service level agreements for cases that require extended resolution timelines.
  • api-change:dsql: Added support for Amazon Aurora DSQL change data capture (CDC) streams that deliver row-level database changes to Amazon Kinesis in JSON format. Includes CreateStream, GetStream, ListStreams, and DeleteStream operations.
  • api-change:ec2: Include length limits in the SDK and documentation for text fields in Image (AMI) APIs such as the image name and description
  • api-change:endpoint-rules: Update endpoint-rules client to latest version
  • api-change:es: Adds support for AutomatedSnapshotPauseOptions.
  • api-change:glue: AWS Glue now defaults the job timeout to 480 minutes for Glue version 5.0 and later when no timeout value is specified. The default remains 2,880 minutes for Glue version 4.0 and earlier.
  • api-change:lightsail: Added OriginIpAddressTypeEnum (ipv4, ipv6, dualstack) and ipAddressType field to Origin and InputOrigin structures for Lightsail CDN distributions. Allows customers to specify how the distribution connects to origins, using IPv4, IPv6, or dualstack networking
  • api-change:opensearch: Adds support for AutomatedSnapshotPauseOptions.
  • api-change:partnercentral-account: Added ServiceQuotaExceededExceptions for Profile operations
  • api-change:pcs: Add support for Amazon EC2 Interruptible-ODCR
  • api-change:quicksight: Adds five new custom permission option for Quick Apps so that these capabilities can be controlled by public SDK and CLI.
  • api-change:redshift: Added rg.xlarge and rg.4xlarge to valid NodeType values and updated documentation for CreateCluster, ModifyCluster, ResizeCluster, and RestoreFromClusterSnapshot APIs to reflect RG node type support.
  • api-change:rtbfabric: Customers can now configure custom domain names for their RTB Fabric gateways. This enables partners to use their own branded domain for RTB traffic instead of the default rtbfabric endpoint
  • api-change:sagemaker: Adds execution role session name mode to reflect user identity in Studio. Adds Flexible Training Plans on Studio apps. Adds restricted model packages to control access to proprietary model artifacts via IAM. Fixed instance type parity between inference endpoints and managed shadow tests.
  • api-change:securityagent: Add support for code reviews, a new resource type that enables automated security-focused static analysis of source code repositories.
  • api-change:socialmessaging: Adds parameters to call the GetWhatsAppMessageTemplate and UpdateWhatsAppMessageTemplate APIs with a template name and language code in place of the template ID. Linked WhatsApp accounts also describe whether the WABA is onboarded to Meta's Marketing Messages API.
  • api-change:stepfunctions: Updated default SDK endpoints for AWS Step Functions in AWS GovCloud (US) regions. The default Dual-Stack endpoints now resolve to "states-fips" prefixed hostnames. There are no changes to service behavior. No customer action is required.

v1.43.6

Compare Source

======

  • api-change:bcm-data-exports: With this release, customers can configure their data exports to generate additional integration artifacts for Athena and Redshift.
  • api-change:bedrock-agentcore: Launching AgentCore payments - a capability that provides secure, instant microtransaction payments for AI agents to access paid APIs, MCP servers, and content. It handles payment processing for x402 protocol, payment limits, and 3P wallet integrations with Coinbase CDP and Stripe (Privy).
  • api-change:bedrock-agentcore-control: Launching AgentCore payments - a capability that provides secure, instant microtransaction payments for AI agents to access paid APIs, MCP servers, and content. It handles payment processing for x402 protocol, payment limits, and 3P wallet integrations with Coinbase CDP and Stripe (Privy).
  • api-change:ec2: DescribeInstanceTypes now accepts an IncludeUnsupportedInRegion parameter. When set, the response also lists instance types that are not available in the current Region. Each instance type includes a SupportedInRegion field indicating its regional availability.
  • api-change:guardduty: This is a documentation update
  • api-change:invoicing: Updated ListInvoiceSummaries API to add new ReceiverRole filter in Request and Response
  • api-change:route53resolver: Adds supports for DNS64 on inbound endpoints and IPv6 forwarding through the internet gateway (IGW) on outbound endpoints, making it easier to manage hybrid DNS across IPv4 and IPv6 networks.

v1.43.5

Compare Source

======

  • api-change:bedrock-agentcore-control: Adds support for bring-your-own file system in AgentCore Runtime. Developers can mount Amazon S3 Files and Amazon EFS access points directly into agent sessions using filesystemConfigurations.
  • api-change:endpoint-rules: Update endpoint-rules client to latest version
  • api-change:glue: Adds support for a CustomLogGroupPrefix parameter in StartDataQualityRulesetEvaluationRun to specify custom CloudWatch log group paths, and a RulesetName filter in ListDataQualityRulesetEvaluationRuns to filter evaluation runs by ruleset name.
  • api-change:imagebuilder: The ImportDiskImage API now enforces a maximum character limit of 128 characters on the image name field.
  • api-change:lexv2-models: Amazon Lex V2 introduces audio filler support for speech-to-speech bots. Configure melody or typing sounds that play during backend processing to reduce perceived latency and maintain a natural conversational experience for callers.
  • api-change:mwaa: Amazon MWAA now supports a PublicAndPrivate webserver access mode. The Airflow web server is accessible over both public and private endpoints, enabling workers in VPCs without internet access to reach the Task API privately while retaining public access to the Airflow UI.
  • api-change:s3: Validate outpost access point resource name
  • api-change:sagemaker: Amazon SageMaker HyperPod now returns ImageVersionStatus in DescribeCluster, DescribeClusterNode, and ListClusterNodes responses, indicating whether cluster instances are running the latest available image version.
  • api-change:securityhub: Release GenerateRecommendedPolicyV2 and GetRecommendedPolicyV2 APIs. This supports generating and retrieving policy recommendations to remediate unused permissions findings that are now being supported on Security Hub.

v1.43.4

Compare Source

======

  • api-change:cleanroomsml: Increase max configurable output limits in the Clean Rooms ML configured model algorithm association resource.
  • api-change:cloudfront: Adds support for tagging CloudFront Functions and KeyValueStores resources.
  • api-change:marketplace-agreement: With this release, Agreements API provides a programmatic way to generate quotes, accept offers, track charges and entitlements, manage renewals and cancellations, and streamline operations entirely through APIs without navigating to the AWS Marketplace website or AWS Management Console.
  • api-change:mediatailor: Added support for Monetization Functions. Monetization Functions let you enrich ad requests with external data and transform session parameters using JSONata expressions, without deploying custom infrastructure.
  • api-change:medical-imaging: Add support for DICOM Json Metadata Override features in startDICOMImportJob API
  • api-change:opensearch: Amazon OpenSearch Service now supports VPC egress, enabling outbound traffic from your OpenSearch domain to route privately through your VPC instead of the public internet.
  • api-change:route53domains: This release adds the TLDInMaintenance exception.
  • api-change:sagemaker: Adds support for ml.p5.4xlarge instance type for SageMaker Studio JupyterLab and CodeEditor apps for IAD (us-east-1), NRT (ap-northeast-1), BOM (ap-south-1), CGK (ap-southeast-3), GRU (sa-east-1), PDX (us-west-2), CMH (us-east-2).

v1.43.3

Compare Source

======

  • api-change:bedrock-agentcore-control: Amazon Bedrock AgentCore gateways now support MCP Sessions and response streaming from MCP targets. Session timeouts can be set between 15 minutes and 8 hours, and response streaming enables forwarding stream events sent by MCP targets to gateway users.
  • api-change:ec2: This feature allows customers to change the tunnel bandwidth on existing VPN connections using the ModifyVpnConnectionOptions API
  • api-change:geo-routes: Added support for TravelTimeExceedsDriverWorkHours, ViolatedBlockedRoad, and ViolatedVehicleRestriction notice codes to the CalculateRoutes API response.
  • api-change:lex-models: Lex V1 is deprecated, use Lex V2 instead
  • api-change:logs: Adding an additional optional deliverySourceConfiguration field to PutDeliverySource API. This enables customers to pass service-specific configurations through IngestionHub such as tracing enablement or sampling rates that will be propagated to the source resource.
  • api-change:medialive: Updates the type of the MediaLiveRouterOutputConnectionMap.
  • api-change:securityagent: AWS Security Agent is adding a new target domain verification method for private VPC penetration testing. Additionally, the target domain resource will now have a verification status reason field to surface additional details about domain verification
  • api-change:vpc-lattice: Amazon VPC Lattice now supports privately resolvable DNS resources

v1.43.2

Compare Source

======

  • api-change:appstream: Amazon WorkSpaces Applications now enables AI agents to securely operate desktop applications. Administrators configure stacks to provide agents access to WorkSpaces. Agents can click, type, and take screenshots. Agents authenticate with AWS IAM credentials with activity logged in AWS CloudTrail.
  • api-change:cloudwatch: This release adds tag support for CloudWatch Dashboards. The PutDashboard API now accepts a Tags parameter, allowing you to tag dashboards at creation time. Additionally, the TagResource, UntagResource, and ListTagsForResource APIs now support dashboard ARNs as resources.
  • api-change:entityresolution: Add support for transitive matching in AWS Entity Resolution rule-based matching workflows. When enabled, records that match through different rules are grouped together into the same match group, allowing related records to be connected across rule levels.
  • api-change:iam: Added guidance for CreateOpenIDConnectProvider to include multiple thumbprints when OIDC discovery and JWKS endpoints use different hosts or certificates
  • api-change:iot: AWS IoT HTTP rule actions now support cross-topic batching, combining messages from different MQTT topics into single HTTP requests.
  • api-change:logs: Adds support for filtering log groups by tags in the ListLogGroups API via the new logGroupTags parameter.
  • api-change:qconnect: Added reasoning details, statusDescription, and timeToFirstTokenMs fields to the ListSpans response in Amazon Q in Connect to provide visibility into model thinking, error diagnostics, and inference latency metrics.
  • api-change:quicksight: Add IdentityProviderCACertificatesBundleS3Uri for private CA certs with OAuth datasources. 256-char limit for FontFamily in themes. ControlTitleFormatText on all 13 filters. ControlTitleFontConfiguration. ContextRegion for cross-region identity context. Story,scenario in CreateCustomCapability API.

v1.43.1

Compare Source

======

  • api-change:bedrock-agentcore: AgentCore Identity now supports on-behalf-of token exchange OAuth2. AgentCore Memory now supports metadata for LongTerm Memory Records.
  • api-change:bedrock-agentcore-control: AgentCore Identity now supports on-behalf-of token exchange OAuth2. AgentCore Memory now supports metadata for LongTerm Memory Records.
  • api-change:datazone: Adds support for asynchronous notebook runs
  • api-change:eks: Vended logs update param for capability vended logs feature
  • api-change:kafka: Adds support for ZookeeperAccess field to control the Client-Zookeeper connectivity.
  • api-change:observabilityadmin: Observability Admin enablement launch for AWS Kafka, Bedrock Agent Core Workload Identity and OTel metric enablement.
  • api-change:payment-cryptography: Adds support for resource-based policies on AWS Payment Cryptography keys, enabling cross-account key sharing. Also adds Multi-Party Approval (MPA) team association APIs for protecting sensitive import root public key operations.
  • api-change:route53globalresolver: Adds support for regions in the UpdateGlobalResolver input.
  • api-change:sagemaker: Add InstancePools support to Endpoint for flexible provisioning across a prioritized list of instance types. Add Specifications support to InferenceComponent for per-instance-type model configurations.
  • api-change:sso-admin: Add InstanceArn and IdentityStoreArn in the response of CreateApplication API and IdentityStoreArn in the response of DescribeApplication API

v1.43.0

Compare Source

======

  • api-change:account: Adds AccountState in the response for the GetAccountInformation API. Each state represents a specific phase in the account lifecycle. Use this information to manage account access, automate workflows, or trigger actions based on account state changes.
  • api-change:bedrock-agentcore: Adds batch evaluation for running evaluators against multiple agent sessions with server-side orchestration, AI-powered recommendations for optimizing system prompts and tool descriptions, and AB testing with controlled traffic splitting and statistical significance reporting
  • api-change:bedrock-agentcore-control: Adds configuration bundles for versioned, immutable agent configuration snapshots with branch-based lineage
  • api-change:cloudfront: Amazon CloudFront now supports cache tag. Tag objects via response headers and invalidate all matching objects in a single request, replacing manual URL tracking and broad wildcards.
  • api-change:deadline: Adds support for rtx-pro-server-6000 GPU accelerator for service-managed fleets.
  • api-change:ecr: Removes support for registry policy V1
  • api-change:gamelift: Amazon GameLift Servers adds a new DescribeContainerGroupPortMappings API for container fleets, making it easy to discover which connection ports map to your container ports without needing to remotely access the compute.
  • api-change:mediapackagev2: This feature adds configuration for specifying SCTE marker handling and allow greater control over generated manifest and segment URIs
  • api-change:transfer: This launch will increase the limits for customers to list the contents from the remote directories from 10k to 200k.
  • api-change:workspaces-web: Allow admins to configure IPv6 ranges on IP Access Settings.
  • enhancement:awscrt: Update awscrt version to 0.32.2
  • feature:Python: End of support for Python 3.9

v1.42.97

Compare Source

=======

  • api-change:application-signals: Application Signals now supports creating composite Service Level Objectives on Service Operations. Users can now create service SLO on multiple operations.
  • api-change:billingconductor: Add support for Passthrough pricing plan
  • api-change:gameliftstreams: Adds Proton 10.0-4 to the list of runtime environment options available when creating an Amazon GameLift Streams application
  • api-change:glue: Addition of AdditionalAuditContext to GetPartition, GetPartitions, GetTableVersion, and GetTableVersions
  • api-change:ivs: Adds tags parameter to the CreateAdConfiguration operation
  • api-change:kms: KMS GetKeyLastUsage API provides information on the last successful cryptographic operation performed on KMS keys. This new API provides KMS customers with the last timestamp, CloudTrail eventId, and the cryptographic operation that was performed on the key.
  • api-change:logs: Adds support for selecting all logs sources and types in a single association.
  • api-change:mgn: Added network modernization support, enabling customers to edit, resize, merge, and split VPCs and subnets during migration while retaining functional, non-conflicting IP addresses.
  • api-change:omics: Enable Public Internet or VPC configuration to BatchRun
  • api-change:opensearch: Amazon OpenSearch Service now supports JWKS URL configuration for JWT authentication
  • api-change:sagemaker: Updated API documentation for endpoint MetricsConfig. Added details on supported metric publish frequencies and clarified how EnableEnhancedMetrics controls utilization and invocation metric behavior.
  • api-change:workspaces: Added support for Protocol as modified resource and added update failure as modification state

v1.42.96

Compare Source

=======

  • api-change:bedrock-agentcore-control: Added support for configuring identity providers and inbound authorizers within a private VPC for AWS Bedrock AgentCore, enabling secure network connection without public internet access
  • api-change:connect: Amazon Connect is expanding attachment capabilities to give customers greater flexibility and control. Currently limited to predefined file types, the new feature will allow contact center administrators to customize which file extensions and sizes are supported across chat, email, tasks, and cases.
  • api-change:connecthealth: Corrected CreateWebAppConfiguration documentation. Adding slash as an allowed character for the Ambient documentation agent to allow pronoun specifications.
  • api-change:evs: EVS now supports i7i.metal-24xl EC2 bare metal instance type, delivering high random IOPS performance with real-time latency, ideal for IO intensive and latency-sensitive workloads such as transactional databases, real-time analytics, and AI ML pre-processing.
  • api-change:logs: Adding nextToken and maxItems to the GetQueryResults API.
  • api-change:transfer: AWS Transfer Family now support configurable IP address types for Web Apps of type VPC, enabling customers to select IPv4-only or dual-stack (IPv4 and IPv6) configurations based on their network requirements.

v1.42.95

Compare Source

=======

  • api-change:datazone: Releasing For LakehouseProperties attributes in the Connections API's
  • api-change:iot-managed-integrations: Adds "Status" field to provisioning profile operation response types, giving users visibility into the readiness of a provisioning profile to be used for device provisioning.
  • api-change:opensearch: Amazon OpenSearch UI applications now support cross-Region domain association, enabling you to connect OpenSearch Dashboards in one AWS Region to OpenSearch domains in other Regions within the same partition for centralized data visualization.
  • api-change:pcs: This release adds support for Slurm 25.11 with expedited requeue enabled by default for jobs failing due to node issues, configurable requeue delay, health checks at node startup only, and unauthenticated HTTP endpoints disabled by default for improved security.
  • bugfix:cloudwatch: Alias get_o_tel_enrichment, start_o_tel_enrichment, and stop_o_tel_enrichment botocore methods to use otel instead of o_tel.

v1.42.94

Compare Source

=======

  • api-change:batch: Support of S3Files volume type, container start and stop timeouts.
  • api-change:bedrock-agentcore: Adds support for Amazon Bedrock AgentCore Harness data plane APIs, enabling customers to invoke managed agent loops and execute commands on live agent sessions with streaming responses.
  • api-change:bedrock-agentcore-control: Adds support for Amazon Bedrock AgentCore Harness control plane APIs, enabling customers to create, manage, and configure managed agent loops with customizable models, tools, memory, and isolated execution environments.
  • api-change:ec2: Managed resource visibility settings control whether resources that AWS services provision on your behalf within your AWS account appear in your Amazon console views and API list operations.
  • api-change:ecs: GPU health monitoring and auto-repair for ECS Managed Instances
  • api-change:emr-serverless: This release adds support for Spark connect sessions starting with release label emr-7.13.0.
  • api-change:endpoint-rules: Update endpoint-rules client to latest version
  • api-change:iotwireless: Enable customers to optionally specify a desired confidence level for Cellular and WiFi position estimates. Customers can use this to trade off confidence level and radius of uncertainty based on their needs.
  • api-change:ivs: Adds support for Amazon IVS server-side ad insertion
  • api-change:lambda: Add Ruby 4.0 (ruby4.0) support to AWS Lambda.
  • api-change:opensearch: Adds support for RollbackServiceSoftwareUpdate API
  • api-change:osis: Update the pipeline configuration body character limit for the CreatePipeline API call.
  • api-change:s3: This release adds five additional checksum algorithms for S3 data integrity (MD5, SHA-512, XXHash3, XXHash64, XXHash128) and support for S3 Inventory on directory buckets (S3 Express One Zone).
  • api-change:s3control: This release adds support for five additional checksum algorithms for data integrity checking in Amazon S3 - MD5, SHA-512, XXHash3, XXHash64, and XXHash128.

v1.42.93

Compare Source

=======

  • api-change:cognito-idp: Adding dutch language support for Cognito Managed Login and Terms on Console
  • api-change:comprehendmedical: This release adds Smithy RPC v2 CBOR as an additional protocol alongside the existing AWS JSON 1.1. The SDK will prioritize its most performant protocol.
  • api-change:compute-optimizer: This release adds Smithy RPC v2 CBOR as an additional protocol alongside the existing AWS JSON 1.0. The SDK will prioritize its most performant protocol.
  • api-change:compute-optimizer-automation: This release adds Smithy RPC v2 CBOR as an additional protocol alongside the existing AWS JSON 1.0. The SDK will prioritize its most performant protocol.
  • api-change:gamelift: This release adds Smithy RPC v2 CBOR as an additional protocol alongside the existing AWS JSON 1.1. The SDK will prioritize its most performant protocol.
  • api-change:marketplace-entitlement: This release adds Smithy RPC v2 CBOR as an additional protocol alongside the existing AWS JSON 1.1. The SDK will prioritize its most performant protocol.
  • api-change:network-firewall: Support for new types of partner managed rulegroups for Network Firewall Service
  • api-change:sagemaker: SageMaker AI now supports generative AI inference recommendations. Provide your model and workload, and SageMaker AI optimizes configurations, benchmarks them on real GPUs, and returns deployment-ready recommendations with validated metrics, accelerating the path to production from weeks to hours.
  • api-change:snowball: This release adds Smithy RPC v2 CBOR as an additional protocol alongside the existing AWS JSON 1.1. The SDK will prioritize its most performant protocol.

v1.42.92

Compare Source

=======

  • api-change:application-signals: Releasing Second phase of SLO Recommendations where you can create recommended SLOs out-of-the box using CreateSLO API
  • api-change:bedrock-agentcore-control: Supporting listingMode for AgentCore Gateway MCP server targets
  • api-change:ec2: Added Transit Gateway Integration into AWS Client VPN.
  • api-change:evs: Amazon EVS now allows you to create connectors to your vCenter appliances and create Windows Server entitlements for virtual machines running in your EVS environments
  • api-change:guardduty: Expanded support for new suppression rule fields.
  • api-change:kafka: Amazon MSK Replicator now supports data migration from external Apache Kafka clusters to Amazon MSK Express brokers. This release adds SaslScram authentication with TLS encryption, enhanced consumer offset synchronization, and customer log forwarding for troubleshooting.
  • api-change:location: This release adds support for new Job APIs for bulk workloads. The initial job type supported is Address Validation. The new APIs added are StartJob, CancelJob, ListJobs, and GetJob.
  • api-change:observabilityadmin: Enablement for Security Hub v2 via Observability Admin Telemetry Rule for account and organization level.

v1.42.91

Compare Source

=======

  • api-change:cleanrooms: This release adds support for configurable spark properties for Cleanrooms PySpark workloads.
  • api-change:connect: Fixes in SDK for customers using TestCase APIs
  • api-change:connectcampaignsv2: This release adds support for campaign entry limits configuration and hourly refresh frequency in Amazon Connect Outbound Campaigns.
  • api-change:groundstation: Adds support for updating contacts, listing antennas, and listing ground station reservations. New API operations - UpdateContact, ListContactVersions, DescribeContactVersion, ListAntennas, and ListGroundStationReservations.
  • api-change:imagebuilder: ImportDiskImage API adds registerImageOptions for Secure Boot control and custom UEFI data. It adds windowsConfiguration for selecting a specific edition from multi-image .wim files during ISO import.
  • api-change:neptune: Improving Documentation for Neptune
  • api-change:quicksight: Public release of dashboard customization summary, S3 Tables data source type, Athena cross-account connector, custom sorting for controls, and AI-powered analysis generation.
  • api-change:sagemaker: Adds support for providing NetworkInterface for efa enabled instances and Simplified cluster creation for Slurm-orchestrated clusters with optional Lifecycle Script (LCS) configuration.
  • api-change:sts: The STS client now supports configuring SigV4a through the auth scheme preference setting. SigV4a uses asymmetric cryptography, enabling customers using long-term IAM credentials to continue making STS API calls even when a region is isolated from the partition leader.

v1.42.90

Compare Source

=======

  • api-change:appstream: Add content redirection to Update Stack
  • api-change:autoscaling: This release adds support for specifying Availability Zone IDs as an alternative to Availability Zone names when creating or updating Auto Scaling groups.
  • api-change:bedrock-agentcore: Introducing NamespacePath in AgentCore Memory to support hierarchical prefix based memory record retrieval.
  • api-change:cloudwatch: Update documentation of alarm mute rules start and end date fields
  • api-change:cognito-idp: Adds support for passkey-based multi-factor authentication in Cognito User Pools. Users can authenticate securely using FIDO2-compliant passkeys with user verification, enabling passwordless MFA flows while maintaining backward compatibility with password-based authentication
  • api-change:connect: This release updates the Amazon Connect Rules CRUD APIs to support a new EventSourceName - OnEmailAnalysisAvailable. Use this event source to trigger rules when conversational analytics results are available for email contacts.
  • api-change:connectcases: Added error handling for service quota limits
  • api-change:customer-profiles: Amazon Connect Customer Profiles adds RecommenderSchema CRUD APIs for custom ML training columns. CreateRecommender and CreateRecommenderFilter now accept optional RecommenderSchemaName.
  • api-change:datazone: Launching SMUS IAM domain SDK support
  • api-change:devops-agent: Deprecate the userId from the Chat operations. This update also removes support of AllowVendedLogDeliveryForResource API from AWS SDKs.
  • api-change:drs: Updating regex for identification of AWS Regions.
  • api-change:logs: Endpoint update for CloudWatch Logs Streaming APIs.
  • api-change:mediaconvert: Adds support for Elemental Inference powered smart crop feature, enabling video verticalization
  • api-change:rds: Adds a new DescribeServerlessV2PlatformVersions API to describe platform version properties for Aurora Serverless v2. Also introduces a new valid maintenance action value for serverless platform version updates.
  • bugfix:signing: Fix bug so that configured auth scheme preference is used when auth scheme is resolved from endpoints rulesets, or from operation-level auth trait. Auth scheme preference can be configured using the existing auth_scheme_preference client config option, the auth_scheme_preference shared config setting, or the existing AWS_AUTH_SCHEME_PREFERENCE environment variable.

v1.42.89

Compare Source

=======

  • api-change:customer-profiles: This release introduces changes to SegmentDefinition APIs to support sorting by attributes.
  • api-change:deadline: Adds GetMonitorSettings and UpdateMonitorSettings APIs to Deadline Cloud. Enables reading and writing monitor settings as key-value pairs (up to 64 keys per monitor). UpdateMonitorSettings supports upsert and delete (via empty value) semantics and is idempotent.
  • api-change:endpoint-rules: Update endpoint-rules client to latest version
  • api-change:glue: AWS Glue now defaults to Glue version 5.1 for newly created jobs if the Glue version is not specified in the request, and UpdateJob now preserves the existing Glue version of a job when the Glue version is not specified in the update request.
  • api-change:interconnect: Initial release of AWS Interconnect -- a managed private connectivity service that enables you to create high-speed network connections between your AWS Virtual Private Clouds (VPCs) and your VPCs on other public clouds or your on-premise networks.
  • api-change:macie2: This release adds an optional expectedBucketOwner field to the Macie S3 export configuration, allowing customers to verify bucket ownership before Macie writes results to the destination bucket.
  • api-change:securityhub: Provide organizational unit scoping capability for GetFindingsV2, GetFindingStatisticsV2, GetResourcesV2, GetResourcesStatisticsV2 APIs.

v1.42.88

Compare Source

=======

  • ap

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Only on Sunday and Saturday (* * * * 0,6)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the renovate label Nov 29, 2025
@renovate renovate Bot force-pushed the renovate/minor-and-patch branch 14 times, most recently from eae6fe2 to 6c1f6f6 Compare December 6, 2025 05:20
@renovate renovate Bot force-pushed the renovate/minor-and-patch branch 9 times, most recently from ab56f7b to 03342aa Compare December 14, 2025 10:48
@renovate renovate Bot force-pushed the renovate/minor-and-patch branch 6 times, most recently from 4fba0b6 to 3d42177 Compare December 18, 2025 00:32
@renovate renovate Bot force-pushed the renovate/minor-and-patch branch 10 times, most recently from fc6e440 to b600c32 Compare January 9, 2026 22:28
@renovate renovate Bot force-pushed the renovate/minor-and-patch branch 9 times, most recently from 1c03fa0 to 9c4e572 Compare January 17, 2026 01:59
@renovate renovate Bot force-pushed the renovate/minor-and-patch branch 8 times, most recently from 3839fc4 to a9b7962 Compare January 27, 2026 02:46
@renovate renovate Bot force-pushed the renovate/minor-and-patch branch 2 times, most recently from 990fb59 to 406e933 Compare January 28, 2026 03:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants