Skip to content

Commit

Permalink
Merging v1.4.9 release
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-kotlin-ci committed Jan 29, 2025
2 parents 03c462d + e1b999f commit fe9ce45
Show file tree
Hide file tree
Showing 9 changed files with 3,440 additions and 241 deletions.
5 changes: 0 additions & 5 deletions .changes/9922940a-efce-4e11-b953-f55c6feb4aef.json

This file was deleted.

13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [1.4.9] - 01/29/2025

### Features
* (**bcmpricingcalculator**) Added ConflictException error type in DeleteBillScenario, BatchDeleteBillScenarioCommitmentModification, BatchDeleteBillScenarioUsageModification, BatchUpdateBillScenarioUsageModification, and BatchUpdateBillScenarioCommitmentModification API operations.
* (**ecr**) Add support for Dualstack and Dualstack-with-FIPS Endpoints
* (**ecrpublic**) Add support for Dualstack Endpoints
* (**mailmanager**) This release includes a new feature for Amazon SES Mail Manager which allows customers to specify known addresses and domains and make use of those in traffic policies and rules actions to distinguish between known and unknown entries.
* (**s3**) Change the type of MpuObjectSize in CompleteMultipartUploadRequest from int to long.
* (**transcribestreaming**) This release adds support for AWS HealthScribe Streaming APIs within Amazon Transcribe.

### Fixes
* Upgrade **smithy-kotlin** version to pick up fixes for header signing

## [1.4.8] - 01/28/2025

### Features
Expand Down
45 changes: 30 additions & 15 deletions codegen/sdk/aws-models/bcm-pricing-calculator.json

Large diffs are not rendered by default.

64 changes: 51 additions & 13 deletions codegen/sdk/aws-models/ecr-public.json
Original file line number Diff line number Diff line change
Expand Up @@ -3131,6 +3131,31 @@
}
],
"rules": [
{
"conditions": [
{
"fn": "stringEquals",
"argv": [
"aws",
{
"fn": "getAttr",
"argv": [
{
"ref": "PartitionResult"
},
"name"
]
}
]
}
],
"endpoint": {
"url": "https://ecr-public.{Region}.api.aws",
"properties": {},
"headers": {}
},
"type": "endpoint"
},
{
"conditions": [],
"endpoint": {
Expand Down Expand Up @@ -3176,54 +3201,67 @@
"smithy.rules#endpointTests": {
"testCases": [
{
"documentation": "For region us-east-1 with FIPS enabled and DualStack enabled",
"documentation": "For region us-east-1 with FIPS disabled and DualStack disabled",
"expect": {
"endpoint": {
"url": "https://api.ecr-public-fips.us-east-1.api.aws"
"url": "https://api.ecr-public.us-east-1.amazonaws.com"
}
},
"params": {
"Region": "us-east-1",
"UseFIPS": true,
"UseDualStack": true
"UseFIPS": false,
"UseDualStack": false
}
},
{
"documentation": "For region us-east-1 with FIPS enabled and DualStack disabled",
"documentation": "For region us-east-1 with FIPS disabled and DualStack enabled",
"expect": {
"endpoint": {
"url": "https://api.ecr-public-fips.us-east-1.amazonaws.com"
"url": "https://ecr-public.us-east-1.api.aws"
}
},
"params": {
"Region": "us-east-1",
"UseFIPS": true,
"UseFIPS": false,
"UseDualStack": true
}
},
{
"documentation": "For region us-west-2 with FIPS disabled and DualStack disabled",
"expect": {
"endpoint": {
"url": "https://api.ecr-public.us-west-2.amazonaws.com"
}
},
"params": {
"Region": "us-west-2",
"UseFIPS": false,
"UseDualStack": false
}
},
{
"documentation": "For region us-east-1 with FIPS disabled and DualStack enabled",
"documentation": "For region us-east-1 with FIPS enabled and DualStack enabled",
"expect": {
"endpoint": {
"url": "https://api.ecr-public.us-east-1.api.aws"
"url": "https://api.ecr-public-fips.us-east-1.api.aws"
}
},
"params": {
"Region": "us-east-1",
"UseFIPS": false,
"UseFIPS": true,
"UseDualStack": true
}
},
{
"documentation": "For region us-east-1 with FIPS disabled and DualStack disabled",
"documentation": "For region us-east-1 with FIPS enabled and DualStack disabled",
"expect": {
"endpoint": {
"url": "https://api.ecr-public.us-east-1.amazonaws.com"
"url": "https://api.ecr-public-fips.us-east-1.amazonaws.com"
}
},
"params": {
"Region": "us-east-1",
"UseFIPS": false,
"UseFIPS": true,
"UseDualStack": false
}
},
Expand Down
Loading

0 comments on commit fe9ce45

Please sign in to comment.