Skip to content

Commit c92bb45

Browse files
Merge pull request #4803 from aws/staging/9ab2df0b-e947-4d9f-a626-d67dbe46cecd
Pull request: release <- staging/9ab2df0b-e947-4d9f-a626-d67dbe46cecd
2 parents ef760ae + 9adc02b commit c92bb45

File tree

516 files changed

+814
-561
lines changed

Some content is hidden

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

516 files changed

+814
-561
lines changed

.changes/2.42.15.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"version": "2.42.15",
3+
"date": "2026-03-17",
4+
"entries": [
5+
{
6+
"type": "feature",
7+
"category": "AWS Glue",
8+
"contributor": "",
9+
"description": "Provide approval to overwrite existing Lake Formation permissions on all child resources with the default permissions specified in 'CreateTableDefaultPermissions' and 'CreateDatabaseDefaultPermissions' when updating catalog. Allowed values are [\"Accept\",\"Deny\"] ."
10+
},
11+
{
12+
"type": "feature",
13+
"category": "Amazon Bedrock AgentCore Control",
14+
"contributor": "",
15+
"description": "Deprecating namespaces field and adding namespaceTemplates."
16+
},
17+
{
18+
"type": "feature",
19+
"category": "Amazon DynamoDB Enhanced Client",
20+
"contributor": "",
21+
"description": "Improved performance of UpdateExpression conversion by replacing Stream.concat chains and String.format with direct iteration and StringJoiner."
22+
},
23+
{
24+
"type": "feature",
25+
"category": "Amazon EMR",
26+
"contributor": "",
27+
"description": "Add S3LoggingConfiguration to Control LogUploads"
28+
}
29+
]
30+
}
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Build SDK
2+
on:
3+
pull_request:
4+
types: [opened, synchronize, ready_for_review]
5+
6+
concurrency:
7+
group: start-pull-request-build-${{ github.ref }}
8+
cancel-in-progress: true
9+
10+
env:
11+
DOWNLOAD_FOLDER: '.build-scripts/'
12+
SCRIPT_LOCATION: 'workflows/start-pull-request-build/pull-request-build-v1.sh'
13+
14+
jobs:
15+
aws-sdk-pr-build:
16+
if: github.event.pull_request.draft == false
17+
runs-on: ubuntu-latest
18+
permissions:
19+
id-token: write
20+
issues: write
21+
pull-requests: write
22+
contents: read
23+
steps:
24+
- name: Configure AWS Credentials
25+
uses: aws-actions/configure-aws-credentials@v4
26+
with:
27+
role-to-assume: ${{secrets.PR_WORKFLOW_IAM_ROLE_ARN}}
28+
role-session-name: PullRequestBuildGitHubAction
29+
aws-region: us-west-2
30+
role-duration-seconds: 7200 # 2 hours
31+
- name: Download Build Script
32+
run: |
33+
aws s3 cp s3://aws-sdk-builds-github-assets-prod-us-west-2/$SCRIPT_LOCATION ./$DOWNLOAD_FOLDER/$SCRIPT_LOCATION --no-progress
34+
chmod +x ./$DOWNLOAD_FOLDER/$SCRIPT_LOCATION
35+
- name: Build
36+
env:
37+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38+
HEAD_REF: ${{ github.event.pull_request.head.ref }}
39+
run: |
40+
./$DOWNLOAD_FOLDER/$SCRIPT_LOCATION \
41+
--repo "${{ github.repository }}" \
42+
--branch "$HEAD_REF" \
43+
--pr-number "${{ github.event.pull_request.number }}" \
44+
--run-id "${{ github.run_id }}"
45+
timeout-minutes: 120

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
11
#### 👋 _Looking for changelogs for older versions? You can find them in the [changelogs](./changelogs) directory._
2+
# __2.42.15__ __2026-03-17__
3+
## __AWS Glue__
4+
- ### Features
5+
- Provide approval to overwrite existing Lake Formation permissions on all child resources with the default permissions specified in 'CreateTableDefaultPermissions' and 'CreateDatabaseDefaultPermissions' when updating catalog. Allowed values are ["Accept","Deny"] .
6+
7+
## __Amazon Bedrock AgentCore Control__
8+
- ### Features
9+
- Deprecating namespaces field and adding namespaceTemplates.
10+
11+
## __Amazon DynamoDB Enhanced Client__
12+
- ### Features
13+
- Improved performance of UpdateExpression conversion by replacing Stream.concat chains and String.format with direct iteration and StringJoiner.
14+
15+
## __Amazon EMR__
16+
- ### Features
17+
- Add S3LoggingConfiguration to Control LogUploads
18+
219
# __2.42.14__ __2026-03-16__
320
## __AWS SDK for Java v2__
421
- ### 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.14</version>
54+
<version>2.42.15</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.14</version>
88+
<version>2.42.15</version>
8989
</dependency>
9090
<dependency>
9191
<groupId>software.amazon.awssdk</groupId>
9292
<artifactId>s3</artifactId>
93-
<version>2.42.14</version>
93+
<version>2.42.15</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.14</version>
105+
<version>2.42.15</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.14</version>
23+
<version>2.42.15</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.14</version>
23+
<version>2.42.15</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.14</version>
23+
<version>2.42.15</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.14</version>
23+
<version>2.42.15</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.42.14</version>
20+
<version>2.42.15</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.42.14</version>
23+
<version>2.42.15</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626

0 commit comments

Comments
 (0)