Skip to content

Commit 0066051

Browse files
Merge branch 'master' into alexwoo/json_marshall_opt
2 parents a3feb6c + 9568628 commit 0066051

541 files changed

Lines changed: 2777 additions & 573 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.

.changes/2.43.2.json

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
{
2+
"version": "2.43.2",
3+
"date": "2026-04-30",
4+
"entries": [
5+
{
6+
"type": "feature",
7+
"category": "CloudWatch Observability Admin Service",
8+
"contributor": "",
9+
"description": "Observability Admin enablement launch for AWS Kafka, Bedrock Agent Core Workload Identity and OTel metric enablement."
10+
},
11+
{
12+
"type": "feature",
13+
"category": "Amazon Bedrock AgentCore",
14+
"contributor": "",
15+
"description": "AgentCore Identity now supports on-behalf-of token exchange OAuth2. AgentCore Memory now supports metadata for LongTerm Memory Records."
16+
},
17+
{
18+
"type": "feature",
19+
"category": "Amazon Route 53 Global Resolver",
20+
"contributor": "",
21+
"description": "Adds support for regions in the UpdateGlobalResolver input."
22+
},
23+
{
24+
"type": "feature",
25+
"category": "Amazon SageMaker Service",
26+
"contributor": "",
27+
"description": "Add InstancePools support to Endpoint for flexible provisioning across a prioritized list of instance types. Add Specifications support to InferenceComponent for per-instance-type model configurations."
28+
},
29+
{
30+
"type": "bugfix",
31+
"category": "AWS SDK for Java v2",
32+
"contributor": "",
33+
"description": "Improved error message when `ResponseTransformer.toFile()` or `AsyncResponseTransformer.toFile()` fails because the parent directory does not exist. The error now indicates that the parent directory must be created before calling the method."
34+
},
35+
{
36+
"type": "feature",
37+
"category": "AWS Single Sign-On Admin",
38+
"contributor": "",
39+
"description": "Add InstanceArn and IdentityStoreArn in the response of CreateApplication API and IdentityStoreArn in the response of DescribeApplication API"
40+
},
41+
{
42+
"type": "bugfix",
43+
"category": "Url Connection Client",
44+
"contributor": "",
45+
"description": "Allow retry when URL Connection HTTP Client encounters a NullPointerException wrapped in a RuntimeException"
46+
},
47+
{
48+
"type": "feature",
49+
"category": "Managed Streaming for Kafka",
50+
"contributor": "",
51+
"description": "Adds support for ZookeeperAccess field to control the Client-Zookeeper connectivity."
52+
},
53+
{
54+
"type": "feature",
55+
"category": "Payment Cryptography Control Plane",
56+
"contributor": "",
57+
"description": "Adds support for resource-based policies on AWS Payment Cryptography keys, enabling cross-account key sharing. Also adds Multi-Party Approval (MPA) team association APIs for protecting sensitive import root public key operations."
58+
},
59+
{
60+
"type": "feature",
61+
"category": "Amazon DataZone",
62+
"contributor": "",
63+
"description": "Adds support for asynchronous notebook runs"
64+
},
65+
{
66+
"type": "feature",
67+
"category": "Amazon Bedrock AgentCore Control",
68+
"contributor": "",
69+
"description": "AgentCore Identity now supports on-behalf-of token exchange OAuth2. AgentCore Memory now supports metadata for LongTerm Memory Records."
70+
},
71+
{
72+
"type": "feature",
73+
"category": "Amazon Elastic Kubernetes Service",
74+
"contributor": "",
75+
"description": "Vended logs update param for capability vended logs feature"
76+
},
77+
{
78+
"type": "feature",
79+
"category": "AWS SDK for Java v2",
80+
"contributor": "",
81+
"description": "Updated endpoint and partition metadata."
82+
}
83+
]
84+
}
Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Build SDK
22
on:
33
merge_group:
4-
pull_request:
4+
pull_request_target:
55
push:
66
branches:
77
- master
@@ -11,7 +11,7 @@ on:
1111
- 'docs/**'
1212

1313
concurrency:
14-
group: start-pull-request-build-${{ github.ref }}
14+
group: start-pull-request-build-${{ github.event.pull_request.number || github.ref }}
1515
cancel-in-progress: true
1616

1717
env:
@@ -20,18 +20,28 @@ env:
2020

2121
jobs:
2222
aws-sdk-pr-build:
23-
if: github.event_name == 'merge_group' || github.event.pull_request.draft == false
23+
if: >
24+
github.event_name != 'pull_request_target' ||
25+
github.event.pull_request.draft == false
2426
runs-on: ubuntu-latest
2527
permissions:
2628
id-token: write
2729
issues: write
2830
pull-requests: write
2931
contents: read
32+
# Fork PRs, require manual approval via the "fork-ci" environment.
33+
# Internal PRs and merge_group events run with no environment gate.
34+
environment: >-
35+
${{
36+
github.event_name == 'pull_request_target' &&
37+
github.event.pull_request.head.repo.full_name != github.repository &&
38+
'fork-ci' || ''
39+
}}
3040
steps:
3141
- name: Configure AWS Credentials
3242
uses: aws-actions/configure-aws-credentials@v4
3343
with:
34-
role-to-assume: ${{secrets.PR_WORKFLOW_IAM_ROLE_ARN}}
44+
role-to-assume: ${{ secrets.PR_WORKFLOW_IAM_ROLE_ARN }}
3545
role-session-name: PullRequestBuildGitHubAction
3646
aws-region: us-west-2
3747
role-duration-seconds: 10800 # 3 hrs
@@ -42,15 +52,18 @@ jobs:
4252
- name: Build
4353
env:
4454
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
45-
HEAD_REF: ${{ github.event.pull_request.head.ref || github.ref_name }}
55+
HEAD_SHA: ${{ github.event.pull_request.head.sha || github.sha }}
56+
HEAD_REF: ${{ github.event.pull_request.head.ref || github.ref }}
4657
PR_NUMBER: ${{ github.event.pull_request.number }}
4758
run: |
59+
# For merge_group events, extract the PR number from the ref name
60+
# (e.g. gh-readonly-queue/main/pr-1234-<sha>)
4861
if [ -z "$PR_NUMBER" ] && [[ "$HEAD_REF" =~ ^gh-readonly-queue/.+/pr-([0-9]+)- ]]; then
4962
PR_NUMBER="${BASH_REMATCH[1]}"
5063
fi
5164
./$DOWNLOAD_FOLDER/$SCRIPT_LOCATION \
5265
--repo "${{ github.repository }}" \
53-
--branch "$HEAD_REF" \
66+
--branch "$HEAD_SHA" \
5467
--pr-number "$PR_NUMBER" \
5568
--run-id "${{ github.run_id }}"
56-
timeout-minutes: 120
69+
timeout-minutes: 120

CHANGELOG.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,56 @@
11
#### 👋 _Looking for changelogs for older versions? You can find them in the [changelogs](./changelogs) directory._
2+
# __2.43.2__ __2026-04-30__
3+
## __AWS SDK for Java v2__
4+
- ### Features
5+
- Updated endpoint and partition metadata.
6+
7+
- ### Bugfixes
8+
- Improved error message when `ResponseTransformer.toFile()` or `AsyncResponseTransformer.toFile()` fails because the parent directory does not exist. The error now indicates that the parent directory must be created before calling the method.
9+
10+
## __AWS Single Sign-On Admin__
11+
- ### Features
12+
- Add InstanceArn and IdentityStoreArn in the response of CreateApplication API and IdentityStoreArn in the response of DescribeApplication API
13+
14+
## __Amazon Bedrock AgentCore__
15+
- ### Features
16+
- AgentCore Identity now supports on-behalf-of token exchange OAuth2. AgentCore Memory now supports metadata for LongTerm Memory Records.
17+
18+
## __Amazon Bedrock AgentCore Control__
19+
- ### Features
20+
- AgentCore Identity now supports on-behalf-of token exchange OAuth2. AgentCore Memory now supports metadata for LongTerm Memory Records.
21+
22+
## __Amazon DataZone__
23+
- ### Features
24+
- Adds support for asynchronous notebook runs
25+
26+
## __Amazon Elastic Kubernetes Service__
27+
- ### Features
28+
- Vended logs update param for capability vended logs feature
29+
30+
## __Amazon Route 53 Global Resolver__
31+
- ### Features
32+
- Adds support for regions in the UpdateGlobalResolver input.
33+
34+
## __Amazon SageMaker Service__
35+
- ### Features
36+
- Add InstancePools support to Endpoint for flexible provisioning across a prioritized list of instance types. Add Specifications support to InferenceComponent for per-instance-type model configurations.
37+
38+
## __CloudWatch Observability Admin Service__
39+
- ### Features
40+
- Observability Admin enablement launch for AWS Kafka, Bedrock Agent Core Workload Identity and OTel metric enablement.
41+
42+
## __Managed Streaming for Kafka__
43+
- ### Features
44+
- Adds support for ZookeeperAccess field to control the Client-Zookeeper connectivity.
45+
46+
## __Payment Cryptography Control Plane__
47+
- ### Features
48+
- Adds support for resource-based policies on AWS Payment Cryptography keys, enabling cross-account key sharing. Also adds Multi-Party Approval (MPA) team association APIs for protecting sensitive import root public key operations.
49+
50+
## __Url Connection Client__
51+
- ### Bugfixes
52+
- Allow retry when URL Connection HTTP Client encounters a NullPointerException wrapped in a RuntimeException
53+
254
# __2.43.1__ __2026-04-29__
355
## __AWS Account__
456
- ### 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.43.1</version>
54+
<version>2.43.2</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.43.1</version>
88+
<version>2.43.2</version>
8989
</dependency>
9090
<dependency>
9191
<groupId>software.amazon.awssdk</groupId>
9292
<artifactId>s3</artifactId>
93-
<version>2.43.1</version>
93+
<version>2.43.2</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.43.1</version>
105+
<version>2.43.2</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.43.2-SNAPSHOT</version>
23+
<version>2.43.3-SNAPSHOT</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.43.2-SNAPSHOT</version>
23+
<version>2.43.3-SNAPSHOT</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.43.2-SNAPSHOT</version>
23+
<version>2.43.3-SNAPSHOT</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.43.2-SNAPSHOT</version>
23+
<version>2.43.3-SNAPSHOT</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626
<artifactId>archetypes</artifactId>

aws-sdk-java/pom.xml

Lines changed: 1 addition & 1 deletion
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.43.2-SNAPSHOT</version>
20+
<version>2.43.3-SNAPSHOT</version>
2121
<relativePath>../pom.xml</relativePath>
2222
</parent>
2323
<artifactId>aws-sdk-java</artifactId>

bom-internal/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.43.2-SNAPSHOT</version>
23+
<version>2.43.3-SNAPSHOT</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626

0 commit comments

Comments
 (0)