Skip to content

Commit 9dc4e39

Browse files
author
AWS
committed
Release 2.25.16. Updated CHANGELOG.md, README.md and all pom.xml.
1 parent a7702d2 commit 9dc4e39

File tree

466 files changed

+533
-497
lines changed

Some content is hidden

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

466 files changed

+533
-497
lines changed

.changes/2.25.16.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"version": "2.25.16",
3+
"date": "2024-03-22",
4+
"entries": [
5+
{
6+
"type": "bugfix",
7+
"category": "AWS SDK for Java v2",
8+
"contributor": "akidambisrinivasan",
9+
"description": "Improve HTTP2/PING timeout logic. Improvement avoids premature timeouts due to delays in scheduling the write of PING frame to the channel and/or flushing it to the socket."
10+
},
11+
{
12+
"type": "feature",
13+
"category": "AWSKendraFrontendService",
14+
"contributor": "",
15+
"description": "Documentation update, March 2024. Corrects some docs for Amazon Kendra."
16+
},
17+
{
18+
"type": "feature",
19+
"category": "AWS Price List Service",
20+
"contributor": "",
21+
"description": "Add ResourceNotFoundException to ListPriceLists and GetPriceListFileUrl APIs"
22+
},
23+
{
24+
"type": "feature",
25+
"category": "AWS SecurityHub",
26+
"contributor": "",
27+
"description": "Added new resource detail object to ASFF, including resource for LastKnownExploitAt"
28+
},
29+
{
30+
"type": "feature",
31+
"category": "Amazon Kinesis Firehose",
32+
"contributor": "",
33+
"description": "Updates Amazon Firehose documentation for message regarding Enforcing Tags IAM Policy."
34+
},
35+
{
36+
"type": "feature",
37+
"category": "IAM Roles Anywhere",
38+
"contributor": "",
39+
"description": "This release relaxes constraints on the durationSeconds request parameter for the *Profile APIs that support it. This parameter can now take on values that go up to 43200."
40+
}
41+
]
42+
}

.changes/next-release/bugfix-AWSSDKforJavav2-9bd9da8.json

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

.changes/next-release/feature-AWSKendraFrontendService-952abea.json

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

.changes/next-release/feature-AWSPriceListService-4853b46.json

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

.changes/next-release/feature-AWSSecurityHub-8ffb6d2.json

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

.changes/next-release/feature-AmazonKinesisFirehose-3edad09.json

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

.changes/next-release/feature-IAMRolesAnywhere-cadb7d3.json

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

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,34 @@
11
#### 👋 _Looking for changelogs for older versions? You can find them in the [changelogs](./changelogs) directory._
2+
# __2.25.16__ __2024-03-22__
3+
## __AWS Price List Service__
4+
- ### Features
5+
- Add ResourceNotFoundException to ListPriceLists and GetPriceListFileUrl APIs
6+
7+
## __AWS SDK for Java v2__
8+
- ### Bugfixes
9+
- Improve HTTP2/PING timeout logic. Improvement avoids premature timeouts due to delays in scheduling the write of PING frame to the channel and/or flushing it to the socket.
10+
- Contributed by: [@akidambisrinivasan](https://github.com/akidambisrinivasan)
11+
12+
## __AWS SecurityHub__
13+
- ### Features
14+
- Added new resource detail object to ASFF, including resource for LastKnownExploitAt
15+
16+
## __AWSKendraFrontendService__
17+
- ### Features
18+
- Documentation update, March 2024. Corrects some docs for Amazon Kendra.
19+
20+
## __Amazon Kinesis Firehose__
21+
- ### Features
22+
- Updates Amazon Firehose documentation for message regarding Enforcing Tags IAM Policy.
23+
24+
## __IAM Roles Anywhere__
25+
- ### Features
26+
- This release relaxes constraints on the durationSeconds request parameter for the *Profile APIs that support it. This parameter can now take on values that go up to 43200.
27+
28+
## __Contributors__
29+
Special thanks to the following contributors to this release:
30+
31+
[@akidambisrinivasan](https://github.com/akidambisrinivasan)
232
# __2.25.15__ __2024-03-21__
333
## __CodeArtifact__
434
- ### 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.25.15</version>
55+
<version>2.25.16</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.25.15</version>
89+
<version>2.25.16</version>
9090
</dependency>
9191
<dependency>
9292
<groupId>software.amazon.awssdk</groupId>
9393
<artifactId>s3</artifactId>
94-
<version>2.25.15</version>
94+
<version>2.25.16</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.25.15</version>
106+
<version>2.25.16</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.25.16-SNAPSHOT</version>
23+
<version>2.25.16</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626

0 commit comments

Comments
 (0)