Skip to content

Commit 233c6f1

Browse files
authored
Merge branch 'main' into fix-acc-id-ep
2 parents 56bd6eb + cdbfec9 commit 233c6f1

File tree

26 files changed

+890
-2014
lines changed

26 files changed

+890
-2014
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"id": "9636f12b-5612-41ec-a9ae-9434724e97a5",
3+
"type": "feature",
4+
"description": "Add SigV4a support to the default AWS signer"
5+
}

CHANGELOG.md

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

3+
## [1.4.28] - 02/24/2025
4+
5+
### Features
6+
* (**bedrockagent**) This release improves support for newer models in Amazon Bedrock Flows.
7+
* (**bedrockagentruntime**) Adding support for ReasoningContent fields in Pre-Processing, Post-Processing and Orchestration Trace outputs.
8+
* (**bedrockruntime**) This release adds Reasoning Content support to Converse and ConverseStream APIs
9+
10+
### Documentation
11+
* (**elasticache**) Documentation update, adding clarity and rephrasing.
12+
13+
### Miscellaneous
14+
* Remove Elastic Inference Service
15+
16+
## [1.4.27] - 02/21/2025
17+
18+
### Features
19+
* (**appstream**) Added support for Certificate-Based Authentication on AppStream 2.0 multi-session fleets.
20+
* (**bedrockagent**) Introduce a new parameter which represents the user-agent header value used by the Bedrock Knowledge Base Web Connector.
21+
22+
## [1.4.26] - 02/20/2025
23+
24+
### Features
25+
* (**codebuild**) Add webhook status and status message to AWS CodeBuild webhooks
26+
* (**guardduty**) Reduce the minimum number of required attack sequence signals from 2 to 1
27+
* (**sagemaker**) Added new capability in the UpdateCluster operation to remove instance groups from your SageMaker HyperPod cluster.
28+
* (**workspacesweb**) Add support for toolbar configuration under user settings.
29+
30+
### Documentation
31+
* (**licensemanagerusersubscriptions**) Updates entity to include Microsoft RDS SAL as a valid type of user subscription.
32+
* (**rds**) CloudWatch Database Insights now supports Amazon RDS.
33+
334
## [1.4.25] - 02/19/2025
435

536
### Features

aws-runtime/aws-http/common/src/aws/sdk/kotlin/runtime/http/interceptors/UnsupportedSigningAlgorithmInterceptor.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ import aws.smithy.kotlin.runtime.http.response.HttpResponse
1818
* If so it sends users to a section in the AWS SDK for Kotlin documentation on how to fix it.
1919
*/
2020
@InternalSdkApi
21+
@Deprecated("This interceptor is no longer used. It will be removed in the next minor version, v1.5.x.")
2122
public class UnsupportedSigningAlgorithmInterceptor : HttpInterceptor {
2223
override suspend fun modifyBeforeCompletion(context: ResponseInterceptorContext<Any, Any, HttpRequest?, HttpResponse?>): Result<Any> {
2324
context.response.exceptionOrNull()?.let {

codegen/aws-sdk-codegen/src/main/kotlin/aws/sdk/kotlin/codegen/AwsRuntimeTypes.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ object AwsRuntimeTypes {
5959
object Http : RuntimeTypePackage(AwsKotlinDependency.AWS_HTTP) {
6060
object Interceptors : RuntimeTypePackage(AwsKotlinDependency.AWS_HTTP, "interceptors") {
6161
val AddUserAgentMetadataInterceptor = symbol("AddUserAgentMetadataInterceptor")
62-
val UnsupportedSigningAlgorithmInterceptor = symbol("UnsupportedSigningAlgorithmInterceptor")
6362
val IgnoreCompositeFlexibleChecksumResponseInterceptor = symbol("IgnoreCompositeFlexibleChecksumResponseInterceptor")
6463

6564
object BusinessMetrics : RuntimeTypePackage(AwsKotlinDependency.AWS_HTTP, "interceptors.businessmetrics") {

codegen/aws-sdk-codegen/src/main/kotlin/aws/sdk/kotlin/codegen/customization/s3/UnsupportedSigningAlgorithmIntegration.kt

Lines changed: 0 additions & 46 deletions
This file was deleted.

codegen/aws-sdk-codegen/src/main/resources/META-INF/services/software.amazon.smithy.kotlin.codegen.integration.KotlinIntegration

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ aws.sdk.kotlin.codegen.customization.machinelearning.MachineLearningEndpointCust
3535
aws.sdk.kotlin.codegen.customization.route53.TrimResourcePrefix
3636
aws.sdk.kotlin.codegen.customization.ec2.EC2MakePrimitivesOptional
3737
aws.sdk.kotlin.codegen.customization.RemoveDefaults
38-
aws.sdk.kotlin.codegen.customization.s3.UnsupportedSigningAlgorithmIntegration
3938
aws.sdk.kotlin.codegen.customization.SigV4AsymmetricTraitCustomization
4039
aws.sdk.kotlin.codegen.customization.cloudfrontkeyvaluestore.BackfillSigV4ACustomization
4140
aws.sdk.kotlin.codegen.customization.s3.express.SigV4S3ExpressAuthSchemeIntegration

0 commit comments

Comments
 (0)