Skip to content

Commit f2b3e85

Browse files
Merge pull request #2926 from aws/staging/060dc7d7-ab84-47b9-a4ba-b53253872b82
Pull request: release <- staging/060dc7d7-ab84-47b9-a4ba-b53253872b82
2 parents 2aa5ad4 + 11e5e3a commit f2b3e85

File tree

476 files changed

+2114
-2057
lines changed

Some content is hidden

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

476 files changed

+2114
-2057
lines changed

.changes/2.25.10.json

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
{
2+
"version": "2.25.10",
3+
"date": "2024-03-14",
4+
"entries": [
5+
{
6+
"type": "bugfix",
7+
"category": "AWS SDK for Java v2",
8+
"contributor": "",
9+
"description": "Fixed an issue in `ByteBufferStoringSubscriber` where it could buffer more data than configured, resulting in out of memory error. See [#4999](https://github.com/aws/aws-sdk-java-v2/issues/4999)."
10+
},
11+
{
12+
"type": "feature",
13+
"category": "AWS Amplify",
14+
"contributor": "",
15+
"description": "Documentation updates for Amplify. Identifies the APIs available only to apps created using Amplify Gen 1."
16+
},
17+
{
18+
"type": "feature",
19+
"category": "AWS EC2 Instance Connect",
20+
"contributor": "",
21+
"description": "This release includes a new exception type \"SerialConsoleSessionUnsupportedException\" for SendSerialConsoleSSHPublicKey API."
22+
},
23+
{
24+
"type": "feature",
25+
"category": "AWS Fault Injection Simulator",
26+
"contributor": "",
27+
"description": "This release adds support for previewing target resources before running a FIS experiment. It also adds resource ARNs for actions, experiments, and experiment templates to API responses."
28+
},
29+
{
30+
"type": "feature",
31+
"category": "AWS Secrets Manager",
32+
"contributor": "",
33+
"description": "Doc only update for Secrets Manager"
34+
},
35+
{
36+
"type": "feature",
37+
"category": "Amazon Relational Database Service",
38+
"contributor": "",
39+
"description": "Updates Amazon RDS documentation for EBCDIC collation for RDS for Db2."
40+
},
41+
{
42+
"type": "feature",
43+
"category": "Elastic Load Balancing",
44+
"contributor": "",
45+
"description": "This release allows you to configure HTTP client keep-alive duration for communication between clients and Application Load Balancers."
46+
},
47+
{
48+
"type": "feature",
49+
"category": "Timestream InfluxDB",
50+
"contributor": "",
51+
"description": "This is the initial SDK release for Amazon Timestream for InfluxDB. Amazon Timestream for InfluxDB is a new time-series database engine that makes it easy for application developers and DevOps teams to run InfluxDB databases on AWS for near real-time time-series applications using open source APIs."
52+
},
53+
{
54+
"type": "feature",
55+
"category": "AWS SDK for Java v2",
56+
"contributor": "",
57+
"description": "Updated endpoint and partition metadata."
58+
}
59+
]
60+
}

CHANGELOG.md

+36
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,40 @@
11
#### 👋 _Looking for changelogs for older versions? You can find them in the [changelogs](./changelogs) directory._
2+
# __2.25.10__ __2024-03-14__
3+
## __AWS Amplify__
4+
- ### Features
5+
- Documentation updates for Amplify. Identifies the APIs available only to apps created using Amplify Gen 1.
6+
7+
## __AWS EC2 Instance Connect__
8+
- ### Features
9+
- This release includes a new exception type "SerialConsoleSessionUnsupportedException" for SendSerialConsoleSSHPublicKey API.
10+
11+
## __AWS Fault Injection Simulator__
12+
- ### Features
13+
- This release adds support for previewing target resources before running a FIS experiment. It also adds resource ARNs for actions, experiments, and experiment templates to API responses.
14+
15+
## __AWS SDK for Java v2__
16+
- ### Features
17+
- Updated endpoint and partition metadata.
18+
19+
- ### Bugfixes
20+
- Fixed an issue in `ByteBufferStoringSubscriber` where it could buffer more data than configured, resulting in out of memory error. See [#4999](https://github.com/aws/aws-sdk-java-v2/issues/4999).
21+
22+
## __AWS Secrets Manager__
23+
- ### Features
24+
- Doc only update for Secrets Manager
25+
26+
## __Amazon Relational Database Service__
27+
- ### Features
28+
- Updates Amazon RDS documentation for EBCDIC collation for RDS for Db2.
29+
30+
## __Elastic Load Balancing__
31+
- ### Features
32+
- This release allows you to configure HTTP client keep-alive duration for communication between clients and Application Load Balancers.
33+
34+
## __Timestream InfluxDB__
35+
- ### Features
36+
- This is the initial SDK release for Amazon Timestream for InfluxDB. Amazon Timestream for InfluxDB is a new time-series database engine that makes it easy for application developers and DevOps teams to run InfluxDB databases on AWS for near real-time time-series applications using open source APIs.
37+
238
# __2.25.9__ __2024-03-13__
339
## __Amazon Interactive Video Service RealTime__
440
- ### Features

README.md

+4-4
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.9</version>
55+
<version>2.25.10</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.9</version>
89+
<version>2.25.10</version>
9090
</dependency>
9191
<dependency>
9292
<groupId>software.amazon.awssdk</groupId>
9393
<artifactId>s3</artifactId>
94-
<version>2.25.9</version>
94+
<version>2.25.10</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.9</version>
106+
<version>2.25.10</version>
107107
</dependency>
108108
```
109109

archetypes/archetype-app-quickstart/pom.xml

+1-1
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.9</version>
23+
<version>2.25.10</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626

archetypes/archetype-lambda/pom.xml

+1-1
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.9</version>
23+
<version>2.25.10</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626
<artifactId>archetype-lambda</artifactId>

archetypes/archetype-tools/pom.xml

+1-1
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.9</version>
23+
<version>2.25.10</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626

archetypes/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<artifactId>aws-sdk-java-pom</artifactId>
2222
<groupId>software.amazon.awssdk</groupId>
23-
<version>2.25.9</version>
23+
<version>2.25.10</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626
<artifactId>archetypes</artifactId>

aws-sdk-java/pom.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<groupId>software.amazon.awssdk</groupId>
1919
<artifactId>aws-sdk-java-pom</artifactId>
20-
<version>2.25.9</version>
20+
<version>2.25.10</version>
2121
<relativePath>../pom.xml</relativePath>
2222
</parent>
2323
<artifactId>aws-sdk-java</artifactId>
@@ -1633,11 +1633,6 @@ Amazon AutoScaling, etc).</description>
16331633
<artifactId>chimesdkvoice</artifactId>
16341634
<version>${awsjavasdk.version}</version>
16351635
</dependency>
1636-
<dependency>
1637-
<groupId>software.amazon.awssdk</groupId>
1638-
<artifactId>iotroborunner</artifactId>
1639-
<version>${awsjavasdk.version}</version>
1640-
</dependency>
16411636
<dependency>
16421637
<groupId>software.amazon.awssdk</groupId>
16431638
<artifactId>oam</artifactId>
@@ -1933,6 +1928,11 @@ Amazon AutoScaling, etc).</description>
19331928
<artifactId>chatbot</artifactId>
19341929
<version>${awsjavasdk.version}</version>
19351930
</dependency>
1931+
<dependency>
1932+
<groupId>software.amazon.awssdk</groupId>
1933+
<artifactId>timestreaminfluxdb</artifactId>
1934+
<version>${awsjavasdk.version}</version>
1935+
</dependency>
19361936
</dependencies>
19371937
<build>
19381938
<finalName>${project.artifactId}-${project.version}</finalName>

bom-internal/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<artifactId>aws-sdk-java-pom</artifactId>
2222
<groupId>software.amazon.awssdk</groupId>
23-
<version>2.25.9</version>
23+
<version>2.25.10</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626

bom/pom.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<groupId>software.amazon.awssdk</groupId>
1919
<artifactId>aws-sdk-java-pom</artifactId>
20-
<version>2.25.9</version>
20+
<version>2.25.10</version>
2121
<relativePath>../pom.xml</relativePath>
2222
</parent>
2323
<artifactId>bom</artifactId>
@@ -1813,11 +1813,6 @@
18131813
<artifactId>chimesdkvoice</artifactId>
18141814
<version>${awsjavasdk.version}</version>
18151815
</dependency>
1816-
<dependency>
1817-
<groupId>software.amazon.awssdk</groupId>
1818-
<artifactId>iotroborunner</artifactId>
1819-
<version>${awsjavasdk.version}</version>
1820-
</dependency>
18211816
<dependency>
18221817
<groupId>software.amazon.awssdk</groupId>
18231818
<artifactId>oam</artifactId>
@@ -2113,6 +2108,11 @@
21132108
<artifactId>chatbot</artifactId>
21142109
<version>${awsjavasdk.version}</version>
21152110
</dependency>
2111+
<dependency>
2112+
<groupId>software.amazon.awssdk</groupId>
2113+
<artifactId>timestreaminfluxdb</artifactId>
2114+
<version>${awsjavasdk.version}</version>
2115+
</dependency>
21162116
</dependencies>
21172117
</dependencyManagement>
21182118
</project>

bundle-logging-bridge/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>software.amazon.awssdk</groupId>
2323
<artifactId>aws-sdk-java-pom</artifactId>
24-
<version>2.25.9</version>
24+
<version>2.25.10</version>
2525
</parent>
2626
<artifactId>bundle-logging-bridge</artifactId>
2727
<packaging>jar</packaging>

bundle-sdk/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>software.amazon.awssdk</groupId>
2323
<artifactId>aws-sdk-java-pom</artifactId>
24-
<version>2.25.9</version>
24+
<version>2.25.10</version>
2525
</parent>
2626
<artifactId>bundle-sdk</artifactId>
2727
<packaging>jar</packaging>

bundle/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>software.amazon.awssdk</groupId>
2323
<artifactId>aws-sdk-java-pom</artifactId>
24-
<version>2.25.9</version>
24+
<version>2.25.10</version>
2525
</parent>
2626
<artifactId>bundle</artifactId>
2727
<packaging>jar</packaging>

codegen-lite-maven-plugin/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>software.amazon.awssdk</groupId>
2424
<artifactId>aws-sdk-java-pom</artifactId>
25-
<version>2.25.9</version>
25+
<version>2.25.10</version>
2626
<relativePath>../pom.xml</relativePath>
2727
</parent>
2828
<artifactId>codegen-lite-maven-plugin</artifactId>

codegen-lite/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>software.amazon.awssdk</groupId>
2323
<artifactId>aws-sdk-java-pom</artifactId>
24-
<version>2.25.9</version>
24+
<version>2.25.10</version>
2525
</parent>
2626
<artifactId>codegen-lite</artifactId>
2727
<name>AWS Java SDK :: Code Generator Lite</name>

codegen-maven-plugin/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>software.amazon.awssdk</groupId>
2424
<artifactId>aws-sdk-java-pom</artifactId>
25-
<version>2.25.9</version>
25+
<version>2.25.10</version>
2626
<relativePath>../pom.xml</relativePath>
2727
</parent>
2828
<artifactId>codegen-maven-plugin</artifactId>

codegen/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>software.amazon.awssdk</groupId>
2323
<artifactId>aws-sdk-java-pom</artifactId>
24-
<version>2.25.9</version>
24+
<version>2.25.10</version>
2525
</parent>
2626
<artifactId>codegen</artifactId>
2727
<name>AWS Java SDK :: Code Generator</name>

core/annotations/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<artifactId>core</artifactId>
2222
<groupId>software.amazon.awssdk</groupId>
23-
<version>2.25.9</version>
23+
<version>2.25.10</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626

core/arns/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<artifactId>core</artifactId>
2222
<groupId>software.amazon.awssdk</groupId>
23-
<version>2.25.9</version>
23+
<version>2.25.10</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626

core/auth-crt/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>software.amazon.awssdk</groupId>
2424
<artifactId>core</artifactId>
25-
<version>2.25.9</version>
25+
<version>2.25.10</version>
2626
</parent>
2727

2828
<artifactId>auth-crt</artifactId>

core/auth/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>software.amazon.awssdk</groupId>
2424
<artifactId>core</artifactId>
25-
<version>2.25.9</version>
25+
<version>2.25.10</version>
2626
</parent>
2727

2828
<artifactId>auth</artifactId>

core/aws-core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>software.amazon.awssdk</groupId>
2424
<artifactId>core</artifactId>
25-
<version>2.25.9</version>
25+
<version>2.25.10</version>
2626
</parent>
2727

2828
<artifactId>aws-core</artifactId>

core/checksums-spi/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>software.amazon.awssdk</groupId>
2424
<artifactId>core</artifactId>
25-
<version>2.25.9</version>
25+
<version>2.25.10</version>
2626
</parent>
2727

2828
<artifactId>checksums-spi</artifactId>

core/checksums/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>software.amazon.awssdk</groupId>
2424
<artifactId>core</artifactId>
25-
<version>2.25.9</version>
25+
<version>2.25.10</version>
2626
</parent>
2727

2828
<artifactId>checksums</artifactId>

core/crt-core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>software.amazon.awssdk</groupId>
2323
<artifactId>core</artifactId>
24-
<version>2.25.9</version>
24+
<version>2.25.10</version>
2525
</parent>
2626

2727
<artifactId>crt-core</artifactId>

core/endpoints-spi/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<artifactId>core</artifactId>
2222
<groupId>software.amazon.awssdk</groupId>
23-
<version>2.25.9</version>
23+
<version>2.25.10</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626

core/http-auth-aws-crt/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>software.amazon.awssdk</groupId>
2424
<artifactId>core</artifactId>
25-
<version>2.25.9</version>
25+
<version>2.25.10</version>
2626
</parent>
2727

2828
<artifactId>http-auth-aws-crt</artifactId>

0 commit comments

Comments
 (0)