chore(deps): update dependency boto3 to >=1.43.12,<1.43.13#94
chore(deps): update dependency boto3 to >=1.43.12,<1.43.13#94red-hat-konflux[bot] wants to merge 1 commit into
Conversation
Summary by CodeRabbit
WalkthroughThe PR updates the Changesboto3 Dependency Version Update
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes 🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
|
boto3 cannot be updated due to |
887c93a to
a042001
Compare
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@pyproject.toml`:
- Line 10: The pyproject dependency pins for boto3 conflict with
ccx-messaging==4.3.6 (which requires boto3<1.42.26,>=1.34.1); update
pyproject.toml to resolve this by either upgrading the ccx-messaging dependency
to a release that supports boto3>=1.43.12 (change the ccx-messaging version in
pyproject.toml) or loosen the boto3 constraint to a version range compatible
with ccx-messaging (e.g., set boto3 to >=1.34.1,<1.42.26) so the two
requirements can be satisfied together; ensure the change targets the dependency
entries for "ccx-messaging" and the existing "boto3" constraint.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Enterprise
Run ID: 34a1ba3d-93a6-4e8e-8e87-79dfe1e69720
📒 Files selected for processing (1)
pyproject.toml
| "ccx-messaging==4.3.6", | ||
| "ccx-rules-ocp", | ||
| "boto3>=1.42.0,<1.42.92" # limited due to incompatibility between s3fs and newer versions of boto | ||
| "boto3>=1.43.12,<1.43.13" # limited due to incompatibility between s3fs and newer versions of boto |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
set -euo pipefail
echo "== Local project constraints =="
rg -n 'ccx-messaging|boto3' pyproject.toml
echo
echo "== PyPI metadata for ccx-messaging 4.3.6 (requires_dist) =="
curl -fsSL https://pypi.org/pypi/ccx-messaging/4.3.6/json \
| jq -r '.info.requires_dist[]?'
echo
echo "== Filter boto3 requirement from ccx-messaging metadata =="
curl -fsSL https://pypi.org/pypi/ccx-messaging/4.3.6/json \
| jq -r '.info.requires_dist[]? | select(test("^boto3\\b"; "i"))'Repository: RedHatInsights/data-pipeline
Length of output: 794
Critical: Unsatisfiable dependency constraints (ccx-messaging vs boto3)
ccx-messaging==4.3.6 requires boto3<1.42.26,>=1.34.1, but pyproject.toml pins boto3>=1.43.12,<1.43.13, leaving no compatible boto3 version—dependency resolution should fail. Align by upgrading ccx-messaging to a boto3-compatible release, or adjust the boto3 constraint to fall under <1.42.26.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@pyproject.toml` at line 10, The pyproject dependency pins for boto3 conflict
with ccx-messaging==4.3.6 (which requires boto3<1.42.26,>=1.34.1); update
pyproject.toml to resolve this by either upgrading the ccx-messaging dependency
to a release that supports boto3>=1.43.12 (change the ccx-messaging version in
pyproject.toml) or loosen the boto3 constraint to a version range compatible
with ccx-messaging (e.g., set boto3 to >=1.34.1,<1.42.26) so the two
requirements can be satisfied together; ensure the change targets the dependency
entries for "ccx-messaging" and the existing "boto3" constraint.
a042001 to
e440d9f
Compare
There was a problem hiding this comment.
♻️ Duplicate comments (1)
pyproject.toml (1)
10-10:⚠️ Potential issue | 🔴 CriticalDependency conflict: boto3 constraint incompatible with ccx-messaging.
This issue was already flagged in a previous review. The boto3 constraint
>=1.43.12,<1.43.13conflicts withccx-messaging==4.3.6, which requiresboto3>=1.34.1,<1.42.26. Dependency resolution will fail.🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@pyproject.toml` at line 10, The pinned boto3 constraint string "boto3>=1.43.12,<1.43.13" conflicts with ccx-messaging==4.3.6 which requires "boto3>=1.34.1,<1.42.26"; update the pyproject.toml dependency resolution so both can coexist — either relax or remove the upper bound on boto3 (replace "boto3>=1.43.12,<1.43.13" with a range compatible with ccx-messaging, or upgrade/downgrade ccx-messaging to a version compatible with boto3 1.43.x) and run dependency resolver (poetry/pip) to verify no remaining conflicts.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Duplicate comments:
In `@pyproject.toml`:
- Line 10: The pinned boto3 constraint string "boto3>=1.43.12,<1.43.13"
conflicts with ccx-messaging==4.3.6 which requires "boto3>=1.34.1,<1.42.26";
update the pyproject.toml dependency resolution so both can coexist — either
relax or remove the upper bound on boto3 (replace "boto3>=1.43.12,<1.43.13" with
a range compatible with ccx-messaging, or upgrade/downgrade ccx-messaging to a
version compatible with boto3 1.43.x) and run dependency resolver (poetry/pip)
to verify no remaining conflicts.
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Enterprise
Run ID: f8445d2c-4802-40dc-a8a0-9c1d840b220c
📒 Files selected for processing (1)
pyproject.toml
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
e440d9f to
13bb788
Compare
There was a problem hiding this comment.
♻️ Duplicate comments (1)
pyproject.toml (1)
10-10:⚠️ Potential issue | 🔴 CriticalDependency conflict remains unresolved.
The boto3 constraint
>=1.43.12,<1.43.13still conflicts withccx-messaging==4.3.6, which requiresboto3>=1.34.1,<1.42.26. Dependency resolution will fail until eitherccx-messagingis upgraded to a version compatible with boto3 1.43.x, or the boto3 constraint is lowered to satisfy ccx-messaging's upper bound.🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@pyproject.toml` at line 10, The pyproject.toml boto3 constraint ("boto3>=1.43.12,<1.43.13") conflicts with ccx-messaging==4.3.6 which requires boto3<1.42.26; fix by either upgrading ccx-messaging to a version that supports boto3 1.43.x (update the ccx-messaging dependency entry) or by relaxing the boto3 constraint down to a version range compatible with ccx-messaging (e.g., set boto3 to <=1.42.25 or a compatible >=/<= range), then run dependency resolution (poetry/pip) to verify the tree and update lockfile accordingly. Ensure you reference the boto3 constraint line in pyproject.toml and the ccx-messaging==4.3.6 dependency when making the change.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Duplicate comments:
In `@pyproject.toml`:
- Line 10: The pyproject.toml boto3 constraint ("boto3>=1.43.12,<1.43.13")
conflicts with ccx-messaging==4.3.6 which requires boto3<1.42.26; fix by either
upgrading ccx-messaging to a version that supports boto3 1.43.x (update the
ccx-messaging dependency entry) or by relaxing the boto3 constraint down to a
version range compatible with ccx-messaging (e.g., set boto3 to <=1.42.25 or a
compatible >=/<= range), then run dependency resolution (poetry/pip) to verify
the tree and update lockfile accordingly. Ensure you reference the boto3
constraint line in pyproject.toml and the ccx-messaging==4.3.6 dependency when
making the change.
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Enterprise
Run ID: f1ade198-4452-480a-b373-3dc0227dd1eb
📒 Files selected for processing (1)
pyproject.toml
This PR contains the following updates:
>=1.42.0,<1.42.92→>=1.43.12,<1.43.13Release Notes
boto/boto3 (boto3)
v1.43.12Compare Source
=======
bedrock-runtime: [botocore] Supporting Request Metadata for Invoke Model and Invoke Model with Response Streamcustomer-profiles: [botocore] Amazon Connect Customer Profiles adds support for item catalog columns in RecommenderSchema, ExcludedColumns in Create and Update Recommender to specify columns to exclude from training, and the ability to disable automatic retraining by setting TrainingFrequency to 0.kms: [botocore] AWS KMS now supports creating grants for AWS service principals using new GranteeServicePrincipal and RetiringServicePrincipal parameters. This release adds SourceArn grant constraint and three condition keys for controlling CreateGrant access. For more information, see Grants in AWS KMS.mwaa: [botocore] Updated API documentation to describe the PublicAndPrivate webserver access mode.payment-cryptography-data: [botocore] GenerateAuthRequestCryptogram API launch.v1.43.11Compare Source
=======
bedrock-agentcore: [botocore] Add RetryableConflictException (HTTP 409) to InvokeAgentRuntime and StopRuntimeSession to prevent orphaned VMs during concurrent session access. The SDK automatically retries this exception with backoff. Enforcement is not yet active and will be enabled in a future service update.devops-agent: [botocore] Added a new serviceType mcpserversigv4 service and association. This provides feature to register MCP sigv4 authorization based MCPsgrafana: [botocore] Introduce degraded workspace status as a possible Amazon Managed Grafana workspace status, and a new field named degraded workspace reason which informs customers why the workspace is degraded in the DescribeWorkspace API response.guardduty: [botocore] Adding support for exposure and vulnerability context from AWS Security Hub in GuardDuty Extended Threat Detection attack sequence findings.rtbfabric: [botocore] This release is to deprecate 'inboundLinksCount' field in GetResponderGateway response and introduce the new field 'linksRequestedCount' to replace it.sagemaker: [botocore] Add support for ml.p5.4xlarge and ml.p5en.48xlarge instances on SageMaker Notebook Instances Platform.v1.43.10Compare Source
=======
accessanalyzer: [botocore] Services manage service-linked analyzers through dedicated APIs - CreateServiceLinkedAnalyzer and DeleteServiceLinkedAnalyzer that separate service-linked specific operations from customer-managed operations. It also shows up in ListAnalyzers and GetAnalyzer responses.connect: [botocore] 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.ec2: [botocore] Amazon VPC IP Address Manager (IPAM) now supports tags on IPAM pool allocations, enabling all standard tagging features for allocations including tag-on-create.ecs: [botocore] Amazon ECS now supports Pause lifecycle hooks for service deployments, allowing customers to automatically pause deployments at specified stages and use the new ContinueServiceDeployment API to continue or roll back with confidence.evs: [botocore] Amazon EVS now supports up to 32 hosts per EVS environment, increasing the previous host limit to allow a larger scale of VMware workload deployments and reduce operational overhead.ivs: [botocore] Adds support for up to 3 mediaTailorPlaybackConfiguration objects in an ad configuration resourcequicksight: [botocore] Support for dataset enrichment and geo spatial in new data preparation experiencev1.43.9Compare Source
======
logs: [botocore] Updating the max limit for start query api parameter.mediapackagev2: [botocore] This release adds support for AvailabilityStartTimeConfiguration in MediaPackageV2 DASH manifestspartnercentral-selling: [botocore] Enable TCV intake on Opportunity to improve Opportunities Hygiene and downstream revenue attribution.v1.43.8Compare Source
======
bedrock: [botocore] 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.cloudfront: [botocore] Adding a new boolean for OCSP Revocations in Viewer mTLS Create and Update APIs, and adding a new 'Passthrough' option for TrustStore modesdatazone: [botocore] Adds support for SageMaker Unified Studio notebook operations, including notebook import and exportdms: [botocore] Add 9 SDK waiters for DMS Schema Conversion async operations. Eliminates manual polling for import, assessment, conversion, export, and creation jobs.glue: [botocore] 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.grafana: [botocore] 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.mgn: [botocore] Introducing new option for security groups mapping - with MAP-DHCP the service translates security rules from your source environment with DHCP compatibility.qconnect: [botocore] ListModels is an API that returns the available AI models for a Connect Assistant based on its region and AI prompt type.v1.43.7Compare Source
======
arc-region-switch: [botocore] Adds support for enabling and disabling Lambda event source mappings in Region switch plans.batch: [botocore] Adds a billing callout to docs regarding using the CE Scale Down Delay featurebedrock-agentcore-control: [botocore] 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.billingconductor: [botocore] Add ConflictException to UpdateCustomLineItem operation.connect: [botocore] This change added three new EventSourceName for schedule notification featureconnectcampaignsv2: [botocore] This release added support for Outbound Campaign timezone detection using all available contact methodsconnectcases: [botocore] 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.dsql: [botocore] 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.ec2: [botocore] Include length limits in the SDK and documentation for text fields in Image (AMI) APIs such as the image name and descriptionendpoint-rules: [botocore] Update endpoint-rules client to latest versiones: [botocore] Adds support for AutomatedSnapshotPauseOptions.glue: [botocore] 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.lightsail: [botocore] 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 networkingopensearch: [botocore] Adds support for AutomatedSnapshotPauseOptions.partnercentral-account: [botocore] Added ServiceQuotaExceededExceptions for Profile operationspcs: [botocore] Add support for Amazon EC2 Interruptible-ODCRquicksight: [botocore] Adds five new custom permission option for Quick Apps so that these capabilities can be controlled by public SDK and CLI.redshift: [botocore] 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.rtbfabric: [botocore] 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 endpointsagemaker: [botocore] 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.securityagent: [botocore] Add support for code reviews, a new resource type that enables automated security-focused static analysis of source code repositories.socialmessaging: [botocore] 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.stepfunctions: [botocore] 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.6Compare Source
======
bcm-data-exports: [botocore] With this release, customers can configure their data exports to generate additional integration artifacts for Athena and Redshift.bedrock-agentcore: [botocore] 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).bedrock-agentcore-control: [botocore] 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).ec2: [botocore] 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.guardduty: [botocore] This is a documentation updateinvoicing: [botocore] Updated ListInvoiceSummaries API to add new ReceiverRole filter in Request and Responseroute53resolver: [botocore] 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.5Compare Source
======
bedrock-agentcore-control: [botocore] 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.endpoint-rules: [botocore] Update endpoint-rules client to latest versionglue: [botocore] 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.imagebuilder: [botocore] The ImportDiskImage API now enforces a maximum character limit of 128 characters on the image name field.lexv2-models: [botocore] 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.mwaa: [botocore] 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.s3: [botocore] Validate outpost access point resource namesagemaker: [botocore] Amazon SageMaker HyperPod now returns ImageVersionStatus in DescribeCluster, DescribeClusterNode, and ListClusterNodes responses, indicating whether cluster instances are running the latest available image version.securityhub: [botocore] 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.4Compare Source
======
cleanroomsml: [botocore] Increase max configurable output limits in the Clean Rooms ML configured model algorithm association resource.cloudfront: [botocore] Adds support for tagging CloudFront Functions and KeyValueStores resources.marketplace-agreement: [botocore] 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.mediatailor: [botocore] 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.medical-imaging: [botocore] Add support for DICOM Json Metadata Override features in startDICOMImportJob APIopensearch: [botocore] 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.route53domains: [botocore] This release adds the TLDInMaintenance exception.sagemaker: [botocore] 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.3Compare Source
======
bedrock-agentcore-control: [botocore] 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.ec2: [botocore] This feature allows customers to change the tunnel bandwidth on existing VPN connections using the ModifyVpnConnectionOptions APIgeo-routes: [botocore] Added support for TravelTimeExceedsDriverWorkHours, ViolatedBlockedRoad, and ViolatedVehicleRestriction notice codes to the CalculateRoutes API response.lex-models: [botocore] Lex V1 is deprecated, use Lex V2 insteadlogs: [botocore] 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.medialive: [botocore] Updates the type of the MediaLiveRouterOutputConnectionMap.securityagent: [botocore] 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 verificationvpc-lattice: [botocore] Amazon VPC Lattice now supports privately resolvable DNS resourcesv1.43.2Compare Source
======
appstream: [botocore] 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.cloudwatch: [botocore] 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.entityresolution: [botocore] 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.iam: [botocore] Added guidance for CreateOpenIDConnectProvider to include multiple thumbprints when OIDC discovery and JWKS endpoints use different hosts or certificatesiot: [botocore] AWS IoT HTTP rule actions now support cross-topic batching, combining messages from different MQTT topics into single HTTP requests.logs: [botocore] Adds support for filtering log groups by tags in the ListLogGroups API via the new logGroupTags parameter.qconnect: [botocore] 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.quicksight: [botocore] 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.1Compare Source
=======
bedrock-runtime: [botocore] Supporting Request Metadata for Invoke Model and Invoke Model with Response Streamcustomer-profiles: [botocore] Amazon Connect Customer Profiles adds support for item catalog columns in RecommenderSchema, ExcludedColumns in Create and Update Recommender to specify columns to exclude from training, and the ability to disable automatic retraining by setting TrainingFrequency to 0.kms: [botocore] AWS KMS now supports creating grants for AWS service principals using new GranteeServicePrincipal and RetiringServicePrincipal parameters. This release adds SourceArn grant constraint and three condition keys for controlling CreateGrant access. For more information, see Grants in AWS KMS.mwaa: [botocore] Updated API documentation to describe the PublicAndPrivate webserver access mode.payment-cryptography-data: [botocore] GenerateAuthRequestCryptogram API launch.v1.43.0Compare Source
======
account: [botocore] 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.bedrock-agentcore: [botocore] 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 reportingbedrock-agentcore-control: [botocore] Adds configuration bundles for versioned, immutable agent configuration snapshots with branch-based lineagecloudfront: [botocore] 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.deadline: [botocore] Adds support for rtx-pro-server-6000 GPU accelerator for service-managed fleets.ecr: [botocore] Removes support for registry policy V1gamelift: [botocore] 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.mediapackagev2: [botocore] This feature adds configuration for specifying SCTE marker handling and allow greater control over generated manifest and segment URIstransfer: [botocore] This launch will increase the limits for customers to list the contents from the remote directories from 10k to 200k.workspaces-web: [botocore] Allow admins to configure IPv6 ranges on IP Access Settings.botocore] Update awscrt version to 0.32.2botocore] End of support for Python 3.9v1.42.97Compare Source
=======
application-signals: [botocore] Application Signals now supports creating composite Service Level Objectives on Service Operations. Users can now create service SLO on multiple operations.billingconductor: [botocore] Add support for Passthrough pricing plangameliftstreams: [botocore] Adds Proton 10.0-4 to the list of runtime environment options available when creating an Amazon GameLift Streams applicationglue: [botocore] Addition of AdditionalAuditContext to GetPartition, GetPartitions, GetTableVersion, and GetTableVersionsivs: [botocore] Adds tags parameter to the CreateAdConfiguration operationkms: [botocore] 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.logs: [botocore] Adds support for selecting all logs sources and types in a single association.mgn: [botocore] Added network modernization support, enabling customers to edit, resize, merge, and split VPCs and subnets during migration while retaining functional, non-conflicting IP addresses.omics: [botocore] Enable Public Internet or VPC configuration to BatchRunopensearch: [botocore] Amazon OpenSearch Service now supports JWKS URL configuration for JWT authenticationsagemaker: [botocore] Updated API documentation for endpoint MetricsConfig. Added details on supported metric publish frequencies and clarified how EnableEnhancedMetrics controls utilization and invocation metric behavior.workspaces: [botocore] Added support for Protocol as modified resource and added update failure as modification statev1.42.96Compare Source
=======
bedrock-agentcore-control: [botocore] Added support for configuring identity providers and inbound authorizers within a private VPC for AWS Bedrock AgentCore, enabling secure network connection without public internet accessconnect: [botocore] 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.connecthealth: [botocore] Corrected CreateWebAppConfiguration documentation. Adding slash as an allowed character for the Ambient documentation agent to allow pronoun specifications.evs: [botocore] 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.logs: [botocore] Adding nextToken and maxItems to the GetQueryResults API.transfer: [botocore] 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.95Compare Source
=======
datazone: [botocore] Releasing For LakehouseProperties attributes in the Connections API'siot-managed-integrations: [botocore] 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.opensearch: [botocore] 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.pcs: [botocore] 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.cloudwatch: [botocore] Aliasget_o_tel_enrichment,start_o_tel_enrichment, andstop_o_tel_enrichmentbotocore methods to useotelinstead ofo_tel.v1.42.94Compare Source
=======
batch: [botocore] Support of S3Files volume type, container start and stop timeouts.bedrock-agentcore: [botocore] 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.bedrock-agentcore-control: [botocore] 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.ec2: [botocore] 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.ecs: [botocore] GPU health monitoring and auto-repair for ECS Managed Instancesemr-serverless: [botocore] This release adds support for Spark connect sessions starting with release label emr-7.13.0.endpoint-rules: [botocore] Update endpoint-rules client to latest versioniotwireless: [botocore] 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.ivs: [botocore] Adds support for Amazon IVS server-side ad insertionlambda: [botocore] Add Ruby 4.0 (ruby4.0) support to AWS Lambda.opensearch: [botocore] Adds support for RollbackServiceSoftwareUpdate APIosis: [botocore] Update the pipeline configuration body character limit for the CreatePipeline API call.s3: [botocore] 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).s3control: [botocore] 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.93Compare Source
=======
cognito-idp: [botocore] Adding dutch language support for Cognito Managed Login and Terms on Consolecomprehendmedical: [botocore] 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.compute-optimizer: [botocore] 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.compute-optimizer-automation: [botocore] 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.gamelift: [botocore] 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.marketplace-entitlement: [botocore] 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.network-firewall: [botocore] Support for new types of partner managed rulegroups for Network Firewall Servicesagemaker: [botocore] 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.snowball: [botocore] 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.92Compare Source
=======
application-signals: [botocore] Releasing Second phase of SLO Recommendations where you can create recommended SLOs out-of-the box using CreateSLO APIbedrock-agentcore-control: [botocore] Supporting listingMode for AgentCore Gateway MCP server targetsec2: [botocore] Added Transit Gateway Integration into AWS Client VPN.evs: [botocore] Amazon EVS now allows you to create connectors to your vCenter appliances and create Windows Server entitlements for virtual machines running in your EVS environmentsguardduty: [botocore] Expanded support for new suppression rule fields.kafka: [botocore] 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.location: [botocore] 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.observabilityadmin: [botocore] Enablement for Security Hub v2 via Observability Admin Telemetry Rule for account and organization level.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
To execute skipped test pipelines write comment
/ok-to-test.Documentation
Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.