Skip to content

Commit 1cc8062

Browse files
Merge pull request #2871 from aws/staging/6a11e764-329c-484d-8b19-653c828dcbe6
Pull request: release <- staging/6a11e764-329c-484d-8b19-653c828dcbe6
2 parents 3810512 + 91686d0 commit 1cc8062

File tree

485 files changed

+624
-527
lines changed

Some content is hidden

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

485 files changed

+624
-527
lines changed

.changes/2.23.14.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"version": "2.23.14",
3+
"date": "2024-01-30",
4+
"entries": [
5+
{
6+
"type": "feature",
7+
"category": "Amazon DataZone",
8+
"contributor": "",
9+
"description": "Add new skipDeletionCheck to DeleteDomain. Add new skipDeletionCheck to DeleteProject which also automatically deletes dependent objects"
10+
},
11+
{
12+
"type": "feature",
13+
"category": "Amazon Route 53",
14+
"contributor": "",
15+
"description": "Update the SDKs for text changes in the APIs."
16+
},
17+
{
18+
"type": "feature",
19+
"category": "Amazon S3",
20+
"contributor": "",
21+
"description": "Reduce memory usage when request-level plugins aren't used."
22+
}
23+
]
24+
}

.github/workflows/closed-issue-message.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,5 @@ jobs:
1313
# These inputs are both required
1414
repo-token: "${{ secrets.GITHUB_TOKEN }}"
1515
message: |
16-
### ⚠️COMMENT VISIBILITY WARNING⚠️
17-
Comments on closed issues are hard for our team to see.
18-
If you need more assistance, please open a new issue that references this one.
19-
If you wish to keep having a conversation with other community members under this issue feel free to do so.
16+
This issue is now closed. Comments on closed issues are hard for our team to see.
17+
If you need more assistance, please open a new issue that references this one.

.github/workflows/stale-issue.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ jobs:
4242
closed-for-staleness-label: closed-for-staleness
4343

4444
# Issue timing
45-
days-before-stale: 5
46-
days-before-close: 2
45+
days-before-stale: 10
46+
days-before-close: 4
4747
days-before-ancient: 36500
4848

4949
# If you don't want to mark a issue as being ancient based on a

CHANGELOG.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# __2.23.14__ __2024-01-30__
2+
## __Amazon DataZone__
3+
- ### Features
4+
- Add new skipDeletionCheck to DeleteDomain. Add new skipDeletionCheck to DeleteProject which also automatically deletes dependent objects
5+
6+
## __Amazon Route 53__
7+
- ### Features
8+
- Update the SDKs for text changes in the APIs.
9+
10+
## __Amazon S3__
11+
- ### Features
12+
- Reduce memory usage when request-level plugins aren't used.
13+
114
# __2.23.13__ __2024-01-29__
215
## __AWS SDK for Java v2__
316
- ### Features
@@ -3019,7 +3032,7 @@ Special thanks to the following contributors to this release:
30193032
## __Contributors__
30203033
Special thanks to the following contributors to this release:
30213034

3022-
[@psnilesh](https://github.com/psnilesh), [@faucct](https://github.com/faucct)
3035+
[@faucct](https://github.com/faucct), [@psnilesh](https://github.com/psnilesh)
30233036
# __2.20.146__ __2023-09-12__
30243037
## __AWS CRT-based S3 Client__
30253038
- ### Bugfixes
@@ -4760,7 +4773,7 @@ Special thanks to the following contributors to this release:
47604773
## __Contributors__
47614774
Special thanks to the following contributors to this release:
47624775

4763-
[@breader124](https://github.com/breader124), [@bmaizels](https://github.com/bmaizels)
4776+
[@bmaizels](https://github.com/bmaizels), [@breader124](https://github.com/breader124)
47644777
# __2.20.85__ __2023-06-13__
47654778
## __AWS CloudTrail__
47664779
- ### 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.23.13</version>
55+
<version>2.23.14</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.23.13</version>
89+
<version>2.23.14</version>
9090
</dependency>
9191
<dependency>
9292
<groupId>software.amazon.awssdk</groupId>
9393
<artifactId>s3</artifactId>
94-
<version>2.23.13</version>
94+
<version>2.23.14</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.23.13</version>
106+
<version>2.23.14</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.23.13</version>
23+
<version>2.23.14</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.23.13</version>
23+
<version>2.23.14</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.23.13</version>
23+
<version>2.23.14</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.23.13</version>
23+
<version>2.23.14</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.23.13</version>
20+
<version>2.23.14</version>
2121
<relativePath>../pom.xml</relativePath>
2222
</parent>
2323
<artifactId>aws-sdk-java</artifactId>

0 commit comments

Comments
 (0)