Skip to content

Commit 7179385

Browse files
Merge pull request #4888 from aws/staging/1577ac5d-d1a7-4997-bad9-ab173bde9451
Pull request: release <- staging/1577ac5d-d1a7-4997-bad9-ab173bde9451
2 parents dfec31b + 8dfb914 commit 7179385

590 files changed

Lines changed: 54825 additions & 660 deletions

File tree

Some content is hidden

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

.brazil.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@
103103
"s3-benchmarks": { "skipImport": true },
104104
"http-client-benchmarks": { "skipImport": true },
105105
"sdk-benchmarks": { "skipImport": true },
106+
"sdk-standard-benchmarks": { "skipImport": true },
106107
"sdk-native-image-test": { "skipImport": true },
107108
"service-test-utils": { "skipImport": true },
108109
"services": { "skipImport": true },

.changes/2.42.36.json

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
{
2+
"version": "2.42.36",
3+
"date": "2026-04-17",
4+
"entries": [
5+
{
6+
"type": "bugfix",
7+
"category": "AWS CRT HTTP Client",
8+
"contributor": "WillChilds-Klein",
9+
"description": "Java CRT 0.39.3 enables and prefers Post Quantum TLS (PQ TLS) by default when supported by the platform and service. The `postQuantumTlsEnabled` builder option in aws-sdk-java-v2 now becomes an opt-out mechanism; setting it to false explicitly disables PQ TLS."
10+
},
11+
{
12+
"type": "bugfix",
13+
"category": "AWS SSO OIDC",
14+
"contributor": "",
15+
"description": "Add defensive checks to ensure token cache file is created with user read only where possible and use atomic write/copy."
16+
},
17+
{
18+
"type": "bugfix",
19+
"category": "AWS Signin",
20+
"contributor": "",
21+
"description": "Add defensive checks to ensure token cache file is writen with user read permissions only where possible."
22+
},
23+
{
24+
"type": "feature",
25+
"category": "AWS Clean Rooms Service",
26+
"contributor": "",
27+
"description": "This release adds support for configurable spark properties for Cleanrooms PySpark workloads."
28+
},
29+
{
30+
"type": "feature",
31+
"category": "AWS Ground Station",
32+
"contributor": "",
33+
"description": "Adds support for updating contacts, listing antennas, and listing ground station reservations. New API operations - UpdateContact, ListContactVersions, DescribeContactVersion, ListAntennas, and ListGroundStationReservations."
34+
},
35+
{
36+
"type": "feature",
37+
"category": "AWS Security Token Service",
38+
"contributor": "",
39+
"description": "The STS client now supports configuring SigV4a through the auth scheme preference setting. SigV4a uses asymmetric cryptography, enabling customers using long-term IAM credentials to continue making STS API calls even when a region is isolated from the partition leader."
40+
},
41+
{
42+
"type": "feature",
43+
"category": "AmazonConnectCampaignServiceV2",
44+
"contributor": "",
45+
"description": "This release adds support for campaign entry limits configuration and hourly refresh frequency in Amazon Connect Outbound Campaigns."
46+
},
47+
{
48+
"type": "feature",
49+
"category": "Amazon Connect Service",
50+
"contributor": "",
51+
"description": "Fixes in SDK for customers using TestCase APIs"
52+
},
53+
{
54+
"type": "feature",
55+
"category": "Amazon Neptune",
56+
"contributor": "",
57+
"description": "Improving Documentation for Neptune"
58+
},
59+
{
60+
"type": "feature",
61+
"category": "Amazon QuickSight",
62+
"contributor": "",
63+
"description": "Public release of dashboard customization summary, S3 Tables data source type, Athena cross-account connector, custom sorting for controls, and AI-powered analysis generation."
64+
},
65+
{
66+
"type": "feature",
67+
"category": "Amazon SageMaker Service",
68+
"contributor": "",
69+
"description": "Adds support for providing NetworkInterface for efa enabled instances and Simplified cluster creation for Slurm-orchestrated clusters with optional Lifecycle Script (LCS) configuration."
70+
},
71+
{
72+
"type": "feature",
73+
"category": "EC2 Image Builder",
74+
"contributor": "",
75+
"description": "ImportDiskImage API adds registerImageOptions for Secure Boot control and custom UEFI data. It adds windowsConfiguration for selecting a specific edition from multi-image .wim files during ISO import."
76+
},
77+
{
78+
"type": "feature",
79+
"category": "AWS SDK for Java v2",
80+
"contributor": "",
81+
"description": "Updated endpoint and partition metadata."
82+
}
83+
]
84+
}

.github/workflows/issue-regression-labeler.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,16 @@ jobs:
3131
else
3232
gh issue edit ${{ github.event.issue.number }} --remove-label "potential-regression" -R ${{ github.repository }}
3333
fi
34+
- name: Notify Slack
35+
if: steps.check_regression.outputs.is_regression == 'true' && github.event.action == 'opened'
36+
run: |
37+
curl -sfS -X POST "$SLACK_WEBHOOK_URL" \
38+
-H 'Content-type: application/json' \
39+
--data "$(jq -n \
40+
--arg text "🚨 Potential regression reported: <$ISSUE_URL|#$ISSUE_NUM: $ISSUE_TITLE>" \
41+
'{text: $text}')"
42+
env:
43+
SLACK_WEBHOOK_URL: ${{ secrets.CI_SLACK_WEBHOOK_URL }}
44+
ISSUE_URL: ${{ github.event.issue.html_url }}
45+
ISSUE_NUM: ${{ github.event.issue.number }}
46+
ISSUE_TITLE: ${{ github.event.issue.title }}

.github/workflows/new-module-verification.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
echo "New module detected: $MODULE_DIR"
8484
8585
# Check if it's a test module
86-
if [[ "$MODULE_DIR" == *"/test/"* || "$MODULE_DIR" == *"/it/"* || "$MODULE_DIR" == *"-test"* || "$MODULE_DIR" == *"-tests"* ]]; then
86+
if [[ "$MODULE_DIR" == *"/test/"* || "$MODULE_DIR" == *"/it/"* || "$MODULE_DIR" == *"-test"* || "$MODULE_DIR" == *"-tests"* || "$MODULE_DIR" == *"-benchmarks"* ]]; then
8787
echo "::group::Test module: $MODULE_DIR"
8888
TEST_MODULES=$((TEST_MODULES + 1))
8989
@@ -106,7 +106,7 @@ jobs:
106106
fi
107107
108108
# 3. Check if Brazil import is skipped
109-
if ! grep -q "\"$MODULE_NAME\".*\"skip\".*true" .brazil.json 2>/dev/null; then
109+
if ! grep -q "\"$MODULE_NAME\".*\"skipImport\".*true" .brazil.json 2>/dev/null; then
110110
echo "::error::Module $MODULE_NAME is not configured to skip Brazil import in .brazil.json"
111111
HAS_ERRORS=1
112112
else

CHANGELOG.md

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,62 @@
11
#### 👋 _Looking for changelogs for older versions? You can find them in the [changelogs](./changelogs) directory._
2+
# __2.42.36__ __2026-04-17__
3+
## __AWS CRT HTTP Client__
4+
- ### Bugfixes
5+
- Java CRT 0.39.3 enables and prefers Post Quantum TLS (PQ TLS) by default when supported by the platform and service. The `postQuantumTlsEnabled` builder option in aws-sdk-java-v2 now becomes an opt-out mechanism; setting it to false explicitly disables PQ TLS.
6+
- Contributed by: [@WillChilds-Klein](https://github.com/WillChilds-Klein)
7+
8+
## __AWS Clean Rooms Service__
9+
- ### Features
10+
- This release adds support for configurable spark properties for Cleanrooms PySpark workloads.
11+
12+
## __AWS Ground Station__
13+
- ### Features
14+
- Adds support for updating contacts, listing antennas, and listing ground station reservations. New API operations - UpdateContact, ListContactVersions, DescribeContactVersion, ListAntennas, and ListGroundStationReservations.
15+
16+
## __AWS SDK for Java v2__
17+
- ### Features
18+
- Updated endpoint and partition metadata.
19+
20+
## __AWS SSO OIDC__
21+
- ### Bugfixes
22+
- Add defensive checks to ensure token cache file is created with user read only where possible and use atomic write/copy.
23+
24+
## __AWS Security Token Service__
25+
- ### Features
26+
- The STS client now supports configuring SigV4a through the auth scheme preference setting. SigV4a uses asymmetric cryptography, enabling customers using long-term IAM credentials to continue making STS API calls even when a region is isolated from the partition leader.
27+
28+
## __AWS Signin__
29+
- ### Bugfixes
30+
- Add defensive checks to ensure token cache file is writen with user read permissions only where possible.
31+
32+
## __Amazon Connect Service__
33+
- ### Features
34+
- Fixes in SDK for customers using TestCase APIs
35+
36+
## __Amazon Neptune__
37+
- ### Features
38+
- Improving Documentation for Neptune
39+
40+
## __Amazon QuickSight__
41+
- ### Features
42+
- Public release of dashboard customization summary, S3 Tables data source type, Athena cross-account connector, custom sorting for controls, and AI-powered analysis generation.
43+
44+
## __Amazon SageMaker Service__
45+
- ### Features
46+
- Adds support for providing NetworkInterface for efa enabled instances and Simplified cluster creation for Slurm-orchestrated clusters with optional Lifecycle Script (LCS) configuration.
47+
48+
## __AmazonConnectCampaignServiceV2__
49+
- ### Features
50+
- This release adds support for campaign entry limits configuration and hourly refresh frequency in Amazon Connect Outbound Campaigns.
51+
52+
## __EC2 Image Builder__
53+
- ### Features
54+
- ImportDiskImage API adds registerImageOptions for Secure Boot control and custom UEFI data. It adds windowsConfiguration for selecting a specific edition from multi-image .wim files during ISO import.
55+
56+
## __Contributors__
57+
Special thanks to the following contributors to this release:
58+
59+
[@WillChilds-Klein](https://github.com/WillChilds-Klein)
260
# __2.42.35__ __2026-04-16__
361
## __AWS DevOps Agent Service__
462
- ### 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.42.35</version>
54+
<version>2.42.36</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.42.35</version>
88+
<version>2.42.36</version>
8989
</dependency>
9090
<dependency>
9191
<groupId>software.amazon.awssdk</groupId>
9292
<artifactId>s3</artifactId>
93-
<version>2.42.35</version>
93+
<version>2.42.36</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.42.35</version>
105+
<version>2.42.36</version>
106106
</dependency>
107107
```
108108

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.42.35</version>
23+
<version>2.42.36</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626

archetypes/archetype-lambda/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.42.35</version>
23+
<version>2.42.36</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626
<artifactId>archetype-lambda</artifactId>

archetypes/archetype-tools/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.42.35</version>
23+
<version>2.42.36</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626

archetypes/pom.xml

Lines changed: 1 addition & 1 deletion
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.42.35</version>
23+
<version>2.42.36</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626
<artifactId>archetypes</artifactId>

0 commit comments

Comments
 (0)