Skip to content

Commit 3c21b9b

Browse files
author
AWS
committed
Release 2.29.10. Updated CHANGELOG.md, README.md and all pom.xml.
1 parent 95cfe02 commit 3c21b9b

File tree

484 files changed

+559
-520
lines changed

Some content is hidden

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

484 files changed

+559
-520
lines changed

.changes/2.29.10.json

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
{
2+
"version": "2.29.10",
3+
"date": "2024-11-11",
4+
"entries": [
5+
{
6+
"type": "bugfix",
7+
"category": "AWS SDK for Java v2",
8+
"contributor": "vsudilov",
9+
"description": "SigV4: Add host header only when not already provided"
10+
},
11+
{
12+
"type": "feature",
13+
"category": "AWS Lambda",
14+
"contributor": "",
15+
"description": "Add Python 3.13 (python3.13) support to AWS Lambda"
16+
},
17+
{
18+
"type": "feature",
19+
"category": "AWS Outposts",
20+
"contributor": "",
21+
"description": "This release updates StartCapacityTask to allow an active Outpost to be modified. It also adds a new API to list all running EC2 instances on the Outpost."
22+
},
23+
{
24+
"type": "feature",
25+
"category": "Amazon CloudFront",
26+
"contributor": "",
27+
"description": "No API changes from previous release. This release migrated the model to Smithy keeping all features unchanged."
28+
},
29+
{
30+
"type": "feature",
31+
"category": "Amazon OpenSearch Service",
32+
"contributor": "",
33+
"description": "Adds Support for new AssociatePackages and DissociatePackages API in Amazon OpenSearch Service that allows association and dissociation operations to be carried out on multiple packages at the same time."
34+
},
35+
{
36+
"type": "feature",
37+
"category": "Inspector2",
38+
"contributor": "",
39+
"description": "Adds support for filePath filter."
40+
},
41+
{
42+
"type": "feature",
43+
"category": "AWS SDK for Java v2",
44+
"contributor": "",
45+
"description": "Updated endpoint and partition metadata."
46+
}
47+
]
48+
}

.changes/next-release/bugfix-AWSSDKforJavav2-b3fbc61.json

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

.changes/next-release/feature-AWSLambda-9fb0266.json

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

.changes/next-release/feature-AWSOutposts-dab3654.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-AmazonCloudFront-c38acc9.json

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

.changes/next-release/feature-AmazonOpenSearchService-60c86bf.json

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

.changes/next-release/feature-Inspector2-21c7c75.json

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

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,37 @@
11
#### 👋 _Looking for changelogs for older versions? You can find them in the [changelogs](./changelogs) directory._
2+
# __2.29.10__ __2024-11-11__
3+
## __AWS Lambda__
4+
- ### Features
5+
- Add Python 3.13 (python3.13) support to AWS Lambda
6+
7+
## __AWS Outposts__
8+
- ### Features
9+
- This release updates StartCapacityTask to allow an active Outpost to be modified. It also adds a new API to list all running EC2 instances on the Outpost.
10+
11+
## __AWS SDK for Java v2__
12+
- ### Features
13+
- Updated endpoint and partition metadata.
14+
15+
- ### Bugfixes
16+
- SigV4: Add host header only when not already provided
17+
- Contributed by: [@vsudilov](https://github.com/vsudilov)
18+
19+
## __Amazon CloudFront__
20+
- ### Features
21+
- No API changes from previous release. This release migrated the model to Smithy keeping all features unchanged.
22+
23+
## __Amazon OpenSearch Service__
24+
- ### Features
25+
- Adds Support for new AssociatePackages and DissociatePackages API in Amazon OpenSearch Service that allows association and dissociation operations to be carried out on multiple packages at the same time.
26+
27+
## __Inspector2__
28+
- ### Features
29+
- Adds support for filePath filter.
30+
31+
## __Contributors__
32+
Special thanks to the following contributors to this release:
33+
34+
[@vsudilov](https://github.com/vsudilov)
235
# __2.29.9__ __2024-11-08__
336
## __AWS Batch__
437
- ### Features

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ To automatically manage module versions (currently all modules have the same ver
5151
<dependency>
5252
<groupId>software.amazon.awssdk</groupId>
5353
<artifactId>bom</artifactId>
54-
<version>2.29.9</version>
54+
<version>2.29.10</version>
5555
<type>pom</type>
5656
<scope>import</scope>
5757
</dependency>
@@ -85,12 +85,12 @@ Alternatively you can add dependencies for the specific services you use only:
8585
<dependency>
8686
<groupId>software.amazon.awssdk</groupId>
8787
<artifactId>ec2</artifactId>
88-
<version>2.29.9</version>
88+
<version>2.29.10</version>
8989
</dependency>
9090
<dependency>
9191
<groupId>software.amazon.awssdk</groupId>
9292
<artifactId>s3</artifactId>
93-
<version>2.29.9</version>
93+
<version>2.29.10</version>
9494
</dependency>
9595
```
9696

@@ -102,7 +102,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please
102102
<dependency>
103103
<groupId>software.amazon.awssdk</groupId>
104104
<artifactId>aws-sdk-java</artifactId>
105-
<version>2.29.9</version>
105+
<version>2.29.10</version>
106106
</dependency>
107107
```
108108

0 commit comments

Comments
 (0)