Skip to content

Commit 7a24158

Browse files
committed
Merge branch 'main' into v1.5-main-merge
2 parents 1a4f498 + cc837ef commit 7a24158

File tree

76 files changed

+27176
-3592
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+27176
-3592
lines changed

.github/workflows/api-compat-verification.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ on:
77
- main
88
- '*-main'
99

10+
permissions: { }
11+
1012
jobs:
1113
api-compat-verification:
1214
runs-on: ubuntu-latest

.github/workflows/closed-issue-message.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
name: Closed Issue Message
2+
23
on:
34
issues:
45
types: [closed]
6+
7+
permissions:
8+
issues: write
9+
510
jobs:
611
auto_comment:
712
runs-on: ubuntu-latest

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
pull_request:
55
workflow_dispatch:
66

7+
permissions: { }
8+
79
# Allow one instance of this workflow per pull request, and cancel older runs when new changes are pushed
810
concurrency:
911
group: ci-pr-${{ github.ref }}

.github/workflows/issue-regression-labeler.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: issue-regression-label
33
on:
44
issues:
55
types: [opened, edited]
6+
permissions: { }
67
jobs:
78
add-regression-label:
89
runs-on: ubuntu-latest

.github/workflows/lint.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ on:
1212
- '*-main'
1313
workflow_dispatch:
1414

15+
permissions:
16+
contents: read
17+
1518
env:
1619
PACKAGE_NAME: aws-sdk-kotlin
1720

.github/workflows/merge-main.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
branches: [ main ]
55
workflow_dispatch:
66

7+
permissions: { }
8+
79
jobs:
810
merge:
911
runs-on: ubuntu-latest

.github/workflows/release-readiness.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ on:
88
types: [ opened, synchronize, reopened, labeled, unlabeled ]
99
branches: [ main ]
1010

11+
permissions: { }
12+
1113
jobs:
1214
release-readiness:
1315
if: ${{ !contains(github.event.pull_request.labels.*.name, 'ready-for-release') }}

.github/workflows/stale_issue.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
schedule:
66
- cron: "0 0/3 * * *"
77

8+
permissions:
9+
issues: write
10+
811
jobs:
912
cleanup:
1013
name: Stale issue job

.github/workflows/sync-mirror.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
branches: [ main ]
66
workflow_dispatch:
77

8+
permissions: { }
9+
810
jobs:
911
git-sync:
1012
# Only sync when pushing to source repo
@@ -17,4 +19,4 @@ jobs:
1719
source_repo: "https://aws-sdk-kotlin-ci:${{ secrets.CI_USER_PAT }}@github.com/awslabs/aws-sdk-kotlin.git"
1820
source_branch: "main"
1921
destination_repo: "https://aws-sdk-kotlin-ci:${{ secrets.CI_USER_PAT }}@github.com/awslabs/private-aws-sdk-kotlin-staging.git"
20-
destination_branch: "main"
22+
destination_branch: "main"

CHANGELOG.md

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,87 @@
11
# Changelog
22

3+
## [1.4.121] - 07/15/2025
4+
5+
### Features
6+
* (**bedrockagent**) Add support for S3 Vectors as a vector store.
7+
* (**datazone**) Removing restriction of environment profile identifier as required field, S3 feature release
8+
* (**dynamodbstreams**) Added support for optional shard filter parameter in DescribeStream api that allows customers to fetch child shards of a read_only parent shard.
9+
* (**ec2**) This release adds support for volume initialization status, which enables you to monitor when the initialization process for an EBS volume is completed. This release also adds IPv6 support to EC2 Instance Connect Endpoints, allowing you to connect to your EC2 Instance via a private IPv6 address.
10+
* (**ecs**) Amazon ECS supports native blue/green deployments, allowing you to validate new service revisions before directing production traffic to them.
11+
* (**eventbridge**) Add customer-facing logging for the EventBridge Event Bus, enabling customers to better observe their events and extract insights about their EventBridge usage.
12+
* (**opensearch**) AWS Opensearch adds support for enabling s3 vector engine options. After enabling this option, customers will be able to create indices with s3 vector engine.
13+
* (**pricing**) This release adds support for new filter types in GetProducts API, including EQUALS, CONTAINS, ANY_OF, and NONE_OF.
14+
* (**quicksight**) Introduced custom instructions for topics.
15+
* (**repostspace**) This release introduces Channels functionality with CreateChannel, GetChannel, ListChannels, and UpdateChannel operations. Channels provide dedicated collaboration spaces where teams can organize discussions and knowledge by projects, business units, or areas of responsibility.
16+
* (**s3**) Amazon S3 Metadata live inventory tables provide a queryable inventory of all the objects in your general purpose bucket so that you can determine the latest state of your data. To help minimize your storage costs, use journal table record expiration to set a retention period for your records.
17+
* (**s3tables**) Adds table bucket type to ListTableBucket and GetTableBucket API operations
18+
* (**s3vectors**) Amazon S3 Vectors provides cost-effective, elastic, and durable vector storage for queries based on semantic meaning and similarity.
19+
* (**sagemaker**) This release adds support for a new Restricted instance group type to enable a specialized environment for running Nova customization jobs on SageMaker HyperPod clusters. This release also adds support for SageMaker pipeline versioning.
20+
21+
## [1.4.120] - 07/09/2025
22+
23+
### Features
24+
* (**ec2**) Adds support to Capacity Blocks for ML for purchasing EC2 P6e-GB200 UltraServers. Customers can now purchase u-p6e-gb200x72 and u-p6e-gb200x36 UltraServers. Adds new DescribeCapacityBlocks andDescribeCapacityBlockStatus APIs. Adds support for CapacityBlockId to DescribeInstanceTopology.
25+
* (**freetier**) This release introduces four new APIs: GetAccountPlanState and UpgradeAccountPlan for AWS account plan management; ListAccountActivities and GetAccountActivity that provide activity tracking capabilities.
26+
27+
### Documentation
28+
* (**opsworkscm**) Removing content that refers to an S3 bucket that is no longer in use.
29+
30+
## [1.4.119] - 07/03/2025
31+
32+
### Features
33+
* (**customerprofiles**) This release introduces capability of create Segments via importing a CSV file directly. This consumes the CSV file and creates/updates corresponding profiles for the particular domain.
34+
* (**deadline**) Added fields for output manifest reporting and task chunking parameters
35+
* (**ec2**) This release adds GroupOwnerId as a response member to the DescribeSecurityGroupVpcAssociations API and also adds waiters for SecurityGroupVpcAssociations (SecurityGroupVpcAssociationAssociated and SecurityGroupVpcAssociationDisassociated).
36+
* (**mediapackagev2**) This release adds support for Microsoft Smooth Streaming (MSS) and allows users to exclude DRM segment Metadata in MediaPackage v2 Origin Endpoints
37+
* (**route53**) Amazon Route 53 now supports the iso-e regions for private DNS Amazon VPCs and cloudwatch healthchecks.
38+
* (**sagemaker**) Changes include new StartSession API for SageMaker Studio spaces and CreateHubContentPresignedUrls API for SageMaker JumpStart.
39+
40+
## [1.4.118] - 07/02/2025
41+
42+
### Features
43+
* (**connectcases**) This release adds DeleteCase and DeleteRelatedItem APIs, which enable deleting cases and comments, undoing contact association, and removing service level agreements (SLAs) from cases. Contact center admins can use these APIs to delete cases when requested by customers and correct agent errors.
44+
* (**ec2**) AWS Site-to-Site VPN now supports IPv6 addresses on outer tunnel IPs, making it easier for customers to build or transition to IPv6-only networks.
45+
* (**s3**) Added support for directory bucket creation with tags and bucket ARN retrieval in CreateBucket, ListDirectoryBuckets, and HeadBucket operations
46+
* (**s3control**) Added TagResource, UntagResource, and ListTagsForResource support for directory bucket
47+
48+
## [1.4.117] - 07/01/2025
49+
50+
### Features
51+
* (**cleanroomsml**) This release introduces support for incremental training and distributed training for custom models in AWS Clean Rooms ML.
52+
* (**datazone**) Add support for the new optional domain-unit-id parameter in the UpdateProject API.
53+
* (**ec2**) Add Context to GetInstanceTypesFromInstanceRequirements API
54+
* (**odb**) This release adds API operations for Oracle Database@AWS. You can use the APIs to create Exadata infrastructure, ODB networks, and Exadata and Autonomous VM clusters inside AWS data centers. The infrastructure is managed by OCI. You can integrate these resources with AWS services.
55+
* (**qbusiness**) New ChatResponseConfiguration to Customize Q Business chat responses for specific use cases and communication needs. Updated Boosting capability allowing admins to provide preference on date attributes for recency and/or provide a preferred data source.
56+
* (**sagemaker**) Updated field validation requirements for InstanceGroups.
57+
58+
### Documentation
59+
* (**rds**) Amazon RDS Custom for Oracle now supports multi-AZ database instances.
60+
61+
## [1.4.116] - 06/30/2025
62+
63+
### Features
64+
* (**arczonalshift**) Added support for on-demand practice runs and balanced capacity checks in ARC autoshift practice.
65+
* (**b2bi**) Updated APIs to support inbound EDI split capabilities and additional Partnership-level configurations of generated EDI files' contents and format.
66+
* (**bedrock**) Add support for API Keys, Re-Ranker, implicit filter for RAG / KB evaluation for Bedrock APIs.
67+
* (**bedrockruntime**) Add API Key and document citations support for Bedrock Runtime APIs
68+
* (**cloudformation**) Added support for UNKNOWN drift status.
69+
* (**cloudwatchlogs**) Increase minimum length of queryId parameter to 1 character.
70+
* (**configservice**) Updated ResourceType enum with new resource types onboarded by AWS Config as of June 2025
71+
* (**connect**) This release introduces ChatMetrics to the model, providing comprehensive analytics insights for Amazon Connect chat conversations. Users can access these detailed metrics through the AWS Connect API by using the DescribeContact operation with their specific instance and contact IDs
72+
* (**dataexchange**) This release updates resource Id with alphanumeric constraint, including Asset id, Revision id, Data Set id, Job id, and Event Action id.
73+
* (**dynamodb**) This change adds support for witnesses in global tables. It also adds a new table status, REPLICATION_NOT_AUTHORIZED. This status will indicate scenarios where global replicas table can't be utilized for data plane operations.
74+
* (**eventbridge**) Added support for EventBridge Dualstack endpoints in AWS GovCloud (US) regions (us-gov-east-1 and us-gov-west-1). The dualstack endpoints are identical for both FIPS and non-FIPS configurations, following the format: events.{region}.api.aws
75+
* (**glue**) releasing source processing properties to support source properties for ODB integrations
76+
* (**iam**) Updated IAM ServiceSpecificCredential support to include expiration, API Key output format instead of username and password for services that will support API keys, and the ability to list credentials for all users in the account for a given service configuration.
77+
* (**medicalimaging**) Added new fields to support the concept of primary image sets within the storage hierarchy.
78+
* (**networkflowmonitor**) Add ConflictExceptions to UpdateScope and DeleteScope operations for scopes being mutated.
79+
* (**outposts**) Make ContactName and ContactPhoneNumber required fields when creating and updating Outpost Site Addresses.
80+
* (**pcs**) Fixed the validation pattern for an instance profile Amazon Resource Name (ARN) in AWS PCS.
81+
* (**quicksight**) Introduced custom permission capabilities for reporting content. Added menu option in exploration to preserve configuration data when textbox menu option is used. Added support for Athena trusted identity propagation.
82+
* (**ssm**) Introduces AccessType, a new filter value for the DescribeSessions API.
83+
* (**transfer**) Added support for dual-stack (IPv4 and IPv6) endpoints for SFTP public endpoints and VPC-internal endpoints (SFTP, FTPS, FTP, and AS2), enabling customers to configure new servers with IPv4 or dual-stack mode, convert existing servers to dual-stack, and use IPv6 with service APIs.
84+
385
## [1.4.115] - 06/27/2025
486

587
### Features

0 commit comments

Comments
 (0)