Skip to content

Commit 7f917b5

Browse files
committed
merge v1.5-main
2 parents 3946d12 + bd6fff1 commit 7f917b5

File tree

122 files changed

+4318
-1397
lines changed

Some content is hidden

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

122 files changed

+4318
-1397
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"id": "49af01b8-6fed-4add-ace0-9f027e83425a",
3+
"type": "feature",
4+
"description": "⚠️ **IMPORTANT**: Refactor endpoint discoverer classes into interfaces so custom implementations may be provided",
5+
"issues": [
6+
"awslabs/aws-sdk-kotlin#1413"
7+
],
8+
"requiresMinorVersionBump": true
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"id": "929f0e2a-3af9-4f73-9f1b-b4e97f91f0db",
3+
"type": "feature",
4+
"description": "⚠️ **IMPORTANT**: Add support for enabling/disabling endpoint discovery via [standard cross-SDK config mechanisms](https://docs.aws.amazon.com/sdkref/latest/guide/feature-endpoint-discovery.html)",
5+
"issues": [
6+
"awslabs/aws-sdk-kotlin#1413"
7+
],
8+
"requiresMinorVersionBump": true
9+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"id": "e6515649-dab5-4be9-b4b4-b289369960d5",
3+
"type": "bugfix",
4+
"description": "Favor `endpointUrl` instead of endpoint discovery if both are provided",
5+
"issues": [
6+
"awslabs/aws-sdk-kotlin#1413"
7+
]
8+
}

.github/workflows/continuous-integration.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,12 @@ jobs:
4040
pwd
4141
ls -lsa
4242
./gradlew -Ptest.java.version=${{ matrix.java-version }} jvmTest --stacktrace
43+
- name: Save Test Reports
44+
if: failure()
45+
uses: actions/upload-artifact@v3
46+
with:
47+
name: test-reports
48+
path: '**/build/reports'
4349

4450
all-platforms:
4551
runs-on: ${{ matrix.os }}

CHANGELOG.md

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

3+
## [1.4.0] - 01/15/2025
4+
5+
### Features
6+
* (**bedrockagentruntime**) Now supports streaming for inline agents.
7+
* (**cognitoidentity**) corrects the dual-stack endpoint configuration
8+
* (**partnercentralselling**) Add Tagging support for ResourceSnapshotJob resources
9+
* (**s3**) This change enhances integrity protections for new SDK requests to S3. S3 SDKs now support the CRC64NVME checksum algorithm, full object checksums for multipart S3 objects, and new default integrity protections for S3 requests.
10+
* (**securityir**) Increase minimum length of Threat Actor IP 'userAgent' to 1.
11+
* (**sesv2**) This release introduces a new recommendation in Virtual Deliverability Manager Advisor, which detects elevated complaint rates for customer sending identities.
12+
* (**workspaces**) Added GeneralPurpose.4xlarge & GeneralPurpose.8xlarge ComputeTypes.
13+
* (**workspacesthinclient**) Mark type in MaintenanceWindow as required.
14+
* ⚠️ **IMPORTANT**: S3 client behavior is updated to always calculate a checksum by default for operations that support it (such as PutObject or UploadPart), or require it (such as DeleteObjects). The checksum algorithm used by default varies by SDK (CRC32 or CRC64, CRC32 for the Kotlin SDK). Checksum calculation behavior can be configured using `when_supported` and `when_required` options - in code using requestChecksumCalculation, in shared config using request_checksum_calculation, or as env variable using AWS_REQUEST_CHECKSUM_CALCULATION. The S3 client attempts to validate response checksums for all S3 API operations that support checksums. However, if the SDK has not implemented the specified checksum algorithm then this validation is skipped. Checksum validation behavior can be configured using `when_supported` and `when_required` options - in code using responseChecksumValidation, in shared config using response_checksum_validation, or as env variable using AWS_RESPONSE_CHECKSUM_VALIDATION.
15+
16+
### Fixes
17+
* [#1321](https://github.com/awslabs/aws-sdk-kotlin/issues/1321) Include more information when retry strategy halts early due to token bucket capacity errors
18+
19+
### Documentation
20+
* (**apigateway**) Documentation updates for Amazon API Gateway
21+
22+
### Miscellaneous
23+
* The order of credentials resolution in the credentials provider chain has been updated to: system properties, environment variables, web identity tokens, profile, ECS, EC2
24+
* ⚠️ **IMPORTANT**: Upgrade to Kotlin 2.1.0
25+
* The order of credentials resolution in config files has been updated to: static credentials, assume role with source profile OR assume role with named provider, web identity token, SSO session, legacy SSO, process
26+
27+
## [1.3.112] - 01/14/2025
28+
29+
### Features
30+
* (**gamelift**) Amazon GameLift releases a new game session placement feature: PriorityConfigurationOverride. You can now override how a game session queue prioritizes placement locations for a single StartGameSessionPlacement request.
31+
* (**route53**) Amazon Route 53 now supports the Mexico (Central) Region (mx-central-1) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region
32+
333
## [1.3.111] - 01/13/2025
434

535
### Features

0 commit comments

Comments
 (0)