Skip to content

Commit

Permalink
Release 2.21.38. Updated CHANGELOG.md, README.md and all pom.xml.
Browse files Browse the repository at this point in the history
  • Loading branch information
AWS committed Dec 4, 2023
1 parent 962ee86 commit 57bcd75
Show file tree
Hide file tree
Showing 460 changed files with 567 additions and 516 deletions.
72 changes: 72 additions & 0 deletions .changes/2.21.38.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
{
"version": "2.21.38",
"date": "2023-12-04",
"entries": [
{
"type": "bugfix",
"category": "Amazon S3",
"contributor": "",
"description": "Fixes double checksum validation for GetObject. Now when ChecksumMode is enabled, x-amz-te:append-md5 will not be sent, and only the flexible checksum will be validated. If ChecksumMode is enabled and no ChecksumAlgorithm was returned, no validation will be performed."
},
{
"type": "feature",
"category": "AWS Archetype Lambda",
"contributor": "",
"description": "Update archetype-lambda to use AWS CRT HTTP client as the default HTTP client and bump dependency version."
},
{
"type": "feature",
"category": "AWSBillingConductor",
"contributor": "",
"description": "This release adds the ability to specify a linked account of the billing group for the custom line item resource."
},
{
"type": "feature",
"category": "AWS Cloud9",
"contributor": "",
"description": "This release adds the requirement to include the imageId parameter in the CreateEnvironmentEC2 API call."
},
{
"type": "feature",
"category": "AWS CloudFormation",
"contributor": "",
"description": "Including UPDATE_* states as a success status for CreateStack waiter."
},
{
"type": "feature",
"category": "AWS Elemental MediaLive",
"contributor": "",
"description": "Adds support for custom color correction on channels using 3D LUT files."
},
{
"type": "feature",
"category": "AWS Service Catalog App Registry",
"contributor": "",
"description": "Documentation-only updates for Dawn"
},
{
"type": "feature",
"category": "Amazon SQS",
"contributor": "",
"description": "Adds a client builder option to disable the default MD5 checksum validation for SendMessage, ReceiveMessage and SendMessageBatch"
},
{
"type": "feature",
"category": "Braket",
"contributor": "",
"description": "This release enhances service support to create quantum tasks and hybrid jobs associated with Braket Direct Reservations."
},
{
"type": "feature",
"category": "FinSpace User Environment Management service",
"contributor": "",
"description": "Release General Purpose type clusters"
},
{
"type": "feature",
"category": "AWS SDK for Java v2",
"contributor": "",
"description": "Updated endpoint and partition metadata."
}
]
}
6 changes: 0 additions & 6 deletions .changes/next-release/bugfix-AmazonS3-16d0bb1.json

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/next-release/feature-AWSArchetypeLambda-56fdac2.json

This file was deleted.

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/next-release/feature-AWSCloud9-d99d369.json

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/next-release/feature-AWSCloudFormation-f7755fe.json

This file was deleted.

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/next-release/feature-AWSSDKforJavav2-0443982.json

This file was deleted.

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/next-release/feature-AmazonSQS-79a6b63.json

This file was deleted.

6 changes: 0 additions & 6 deletions .changes/next-release/feature-Braket-8e50be7.json

This file was deleted.

This file was deleted.

45 changes: 45 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,48 @@
# __2.21.38__ __2023-12-04__
## __AWS Archetype Lambda__
- ### Features
- Update archetype-lambda to use AWS CRT HTTP client as the default HTTP client and bump dependency version.

## __AWS Cloud9__
- ### Features
- This release adds the requirement to include the imageId parameter in the CreateEnvironmentEC2 API call.

## __AWS CloudFormation__
- ### Features
- Including UPDATE_* states as a success status for CreateStack waiter.

## __AWS Elemental MediaLive__
- ### Features
- Adds support for custom color correction on channels using 3D LUT files.

## __AWS SDK for Java v2__
- ### Features
- Updated endpoint and partition metadata.

## __AWS Service Catalog App Registry__
- ### Features
- Documentation-only updates for Dawn

## __AWSBillingConductor__
- ### Features
- This release adds the ability to specify a linked account of the billing group for the custom line item resource.

## __Amazon S3__
- ### Bugfixes
- Fixes double checksum validation for GetObject. Now when ChecksumMode is enabled, x-amz-te:append-md5 will not be sent, and only the flexible checksum will be validated. If ChecksumMode is enabled and no ChecksumAlgorithm was returned, no validation will be performed.

## __Amazon SQS__
- ### Features
- Adds a client builder option to disable the default MD5 checksum validation for SendMessage, ReceiveMessage and SendMessageBatch

## __Braket__
- ### Features
- This release enhances service support to create quantum tasks and hybrid jobs associated with Braket Direct Reservations.

## __FinSpace User Environment Management service__
- ### Features
- Release General Purpose type clusters

# __2.21.37__ __2023-12-01__
## __Amazon DynamoDB Enhanced__
- ### Features
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ To automatically manage module versions (currently all modules have the same ver
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>bom</artifactId>
<version>2.21.37</version>
<version>2.21.38</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -86,12 +86,12 @@ Alternatively you can add dependencies for the specific services you use only:
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>ec2</artifactId>
<version>2.21.37</version>
<version>2.21.38</version>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>s3</artifactId>
<version>2.21.37</version>
<version>2.21.38</version>
</dependency>
```

Expand All @@ -103,7 +103,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>aws-sdk-java</artifactId>
<version>2.21.37</version>
<version>2.21.38</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion archetypes/archetype-app-quickstart/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>archetypes</artifactId>
<groupId>software.amazon.awssdk</groupId>
<version>2.21.38-SNAPSHOT</version>
<version>2.21.38</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion archetypes/archetype-lambda/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>archetypes</artifactId>
<groupId>software.amazon.awssdk</groupId>
<version>2.21.38-SNAPSHOT</version>
<version>2.21.38</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>archetype-lambda</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion archetypes/archetype-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>archetypes</artifactId>
<groupId>software.amazon.awssdk</groupId>
<version>2.21.38-SNAPSHOT</version>
<version>2.21.38</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion archetypes/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>aws-sdk-java-pom</artifactId>
<groupId>software.amazon.awssdk</groupId>
<version>2.21.38-SNAPSHOT</version>
<version>2.21.38</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>archetypes</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion aws-sdk-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<parent>
<groupId>software.amazon.awssdk</groupId>
<artifactId>aws-sdk-java-pom</artifactId>
<version>2.21.38-SNAPSHOT</version>
<version>2.21.38</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>aws-sdk-java</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion bom-internal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>aws-sdk-java-pom</artifactId>
<groupId>software.amazon.awssdk</groupId>
<version>2.21.38-SNAPSHOT</version>
<version>2.21.38</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<parent>
<groupId>software.amazon.awssdk</groupId>
<artifactId>aws-sdk-java-pom</artifactId>
<version>2.21.38-SNAPSHOT</version>
<version>2.21.38</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>bom</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion bundle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>software.amazon.awssdk</groupId>
<artifactId>aws-sdk-java-pom</artifactId>
<version>2.21.38-SNAPSHOT</version>
<version>2.21.38</version>
</parent>
<artifactId>bundle</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion codegen-lite-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>software.amazon.awssdk</groupId>
<artifactId>aws-sdk-java-pom</artifactId>
<version>2.21.38-SNAPSHOT</version>
<version>2.21.38</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>codegen-lite-maven-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion codegen-lite/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>software.amazon.awssdk</groupId>
<artifactId>aws-sdk-java-pom</artifactId>
<version>2.21.38-SNAPSHOT</version>
<version>2.21.38</version>
</parent>
<artifactId>codegen-lite</artifactId>
<name>AWS Java SDK :: Code Generator Lite</name>
Expand Down
2 changes: 1 addition & 1 deletion codegen-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>software.amazon.awssdk</groupId>
<artifactId>aws-sdk-java-pom</artifactId>
<version>2.21.38-SNAPSHOT</version>
<version>2.21.38</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>codegen-maven-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion codegen/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>software.amazon.awssdk</groupId>
<artifactId>aws-sdk-java-pom</artifactId>
<version>2.21.38-SNAPSHOT</version>
<version>2.21.38</version>
</parent>
<artifactId>codegen</artifactId>
<name>AWS Java SDK :: Code Generator</name>
Expand Down
2 changes: 1 addition & 1 deletion core/annotations/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>core</artifactId>
<groupId>software.amazon.awssdk</groupId>
<version>2.21.38-SNAPSHOT</version>
<version>2.21.38</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion core/arns/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>core</artifactId>
<groupId>software.amazon.awssdk</groupId>
<version>2.21.38-SNAPSHOT</version>
<version>2.21.38</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion core/auth-crt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>software.amazon.awssdk</groupId>
<artifactId>core</artifactId>
<version>2.21.38-SNAPSHOT</version>
<version>2.21.38</version>
</parent>

<artifactId>auth-crt</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion core/auth/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>software.amazon.awssdk</groupId>
<artifactId>core</artifactId>
<version>2.21.38-SNAPSHOT</version>
<version>2.21.38</version>
</parent>

<artifactId>auth</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion core/aws-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>software.amazon.awssdk</groupId>
<artifactId>core</artifactId>
<version>2.21.38-SNAPSHOT</version>
<version>2.21.38</version>
</parent>

<artifactId>aws-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion core/checksums-spi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>software.amazon.awssdk</groupId>
<artifactId>core</artifactId>
<version>2.21.38-SNAPSHOT</version>
<version>2.21.38</version>
</parent>

<artifactId>checksums-spi</artifactId>
Expand Down
Loading

0 comments on commit 57bcd75

Please sign in to comment.