Skip to content

Commit ed2128c

Browse files
author
AWS
committed
Release 2.20.109. Updated CHANGELOG.md, README.md and all pom.xml.
1 parent 4e20242 commit ed2128c

File tree

423 files changed

+486
-455
lines changed

Some content is hidden

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

423 files changed

+486
-455
lines changed

.changes/2.20.109.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"version": "2.20.109",
3+
"date": "2023-07-21",
4+
"entries": [
5+
{
6+
"type": "bugfix",
7+
"category": "S3 Transfer Manager",
8+
"contributor": "",
9+
"description": "Fix a bug where the SSE-C parameters are not copied to the CompleteMultipartUpload request when transforming to a multipart copy."
10+
},
11+
{
12+
"type": "feature",
13+
"category": "AWS Elemental MediaConvert",
14+
"contributor": "",
15+
"description": "This release includes improvements to Preserve 444 handling, compatibility of HEVC sources without frame rates, and general improvements to MP4 outputs."
16+
},
17+
{
18+
"type": "feature",
19+
"category": "AWS Glue",
20+
"contributor": "",
21+
"description": "This release adds support for AWS Glue Crawler with Apache Hudi Tables, allowing Crawlers to discover Hudi Tables in S3 and register them in Glue Data Catalog for query engines to query against."
22+
},
23+
{
24+
"type": "feature",
25+
"category": "Amazon Relational Database Service",
26+
"contributor": "",
27+
"description": "Adds support for the DBSystemID parameter of CreateDBInstance to RDS Custom for Oracle."
28+
},
29+
{
30+
"type": "feature",
31+
"category": "Amazon WorkSpaces",
32+
"contributor": "",
33+
"description": "Fixed VolumeEncryptionKey descriptions"
34+
},
35+
{
36+
"type": "feature",
37+
"category": "AWS SDK for Java v2",
38+
"contributor": "",
39+
"description": "Updated endpoint and partition metadata."
40+
}
41+
]
42+
}

.changes/next-release/bugfix-S3TransferManager-d9c09d4.json

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

.changes/next-release/feature-AWSElementalMediaConvert-b6afdfc.json

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

.changes/next-release/feature-AWSGlue-52354c5.json

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

.changes/next-release/feature-AWSSDKforJavav2-0443982.json

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

.changes/next-release/feature-AmazonRelationalDatabaseService-845082c.json

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

.changes/next-release/feature-AmazonWorkSpaces-c6aa83e.json

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

CHANGELOG.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
# __2.20.109__ __2023-07-21__
2+
## __AWS Elemental MediaConvert__
3+
- ### Features
4+
- This release includes improvements to Preserve 444 handling, compatibility of HEVC sources without frame rates, and general improvements to MP4 outputs.
5+
6+
## __AWS Glue__
7+
- ### Features
8+
- This release adds support for AWS Glue Crawler with Apache Hudi Tables, allowing Crawlers to discover Hudi Tables in S3 and register them in Glue Data Catalog for query engines to query against.
9+
10+
## __AWS SDK for Java v2__
11+
- ### Features
12+
- Updated endpoint and partition metadata.
13+
14+
## __Amazon Relational Database Service__
15+
- ### Features
16+
- Adds support for the DBSystemID parameter of CreateDBInstance to RDS Custom for Oracle.
17+
18+
## __Amazon WorkSpaces__
19+
- ### Features
20+
- Fixed VolumeEncryptionKey descriptions
21+
22+
## __S3 Transfer Manager__
23+
- ### Bugfixes
24+
- Fix a bug where the SSE-C parameters are not copied to the CompleteMultipartUpload request when transforming to a multipart copy.
25+
126
# __2.20.108__ __2023-07-20__
227
## __Amazon CodeCatalyst__
328
- ### Features
@@ -676,7 +701,7 @@ Special thanks to the following contributors to this release:
676701
## __Contributors__
677702
Special thanks to the following contributors to this release:
678703

679-
[@bmaizels](https://github.com/bmaizels), [@breader124](https://github.com/breader124)
704+
[@breader124](https://github.com/breader124), [@bmaizels](https://github.com/bmaizels)
680705
# __2.20.85__ __2023-06-13__
681706
## __AWS CloudTrail__
682707
- ### Features

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ To automatically manage module versions (currently all modules have the same ver
5252
<dependency>
5353
<groupId>software.amazon.awssdk</groupId>
5454
<artifactId>bom</artifactId>
55-
<version>2.20.108</version>
55+
<version>2.20.109</version>
5656
<type>pom</type>
5757
<scope>import</scope>
5858
</dependency>
@@ -86,12 +86,12 @@ Alternatively you can add dependencies for the specific services you use only:
8686
<dependency>
8787
<groupId>software.amazon.awssdk</groupId>
8888
<artifactId>ec2</artifactId>
89-
<version>2.20.108</version>
89+
<version>2.20.109</version>
9090
</dependency>
9191
<dependency>
9292
<groupId>software.amazon.awssdk</groupId>
9393
<artifactId>s3</artifactId>
94-
<version>2.20.108</version>
94+
<version>2.20.109</version>
9595
</dependency>
9696
```
9797

@@ -103,7 +103,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please
103103
<dependency>
104104
<groupId>software.amazon.awssdk</groupId>
105105
<artifactId>aws-sdk-java</artifactId>
106-
<version>2.20.108</version>
106+
<version>2.20.109</version>
107107
</dependency>
108108
```
109109

archetypes/archetype-app-quickstart/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<artifactId>archetypes</artifactId>
2222
<groupId>software.amazon.awssdk</groupId>
23-
<version>2.20.109-SNAPSHOT</version>
23+
<version>2.20.109</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626

0 commit comments

Comments
 (0)