Skip to content

Commit 51f0800

Browse files
Merge pull request #1218 from aws/staging/b235279d-101a-4328-852c-bcf1e6171039
Pull request: release <- staging/b235279d-101a-4328-852c-bcf1e6171039
2 parents bf3b1b8 + 712bab5 commit 51f0800

File tree

320 files changed

+1276
-340
lines changed

Some content is hidden

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

320 files changed

+1276
-340
lines changed

.changes/2.16.16.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"version": "2.16.16",
3+
"date": "2021-03-10",
4+
"entries": [
5+
{
6+
"type": "feature",
7+
"category": "AWS SDK for Java v2",
8+
"contributor": "",
9+
"description": "Include the retry mode STANDARD or LEGACY in the user agents list."
10+
},
11+
{
12+
"type": "feature",
13+
"category": "AWS Backup",
14+
"contributor": "",
15+
"description": "Added support for enabling continuous backups."
16+
},
17+
{
18+
"type": "feature",
19+
"category": "Amazon Simple Systems Manager (SSM)",
20+
"contributor": "",
21+
"description": "Systems Manager support for tagging OpsMetadata."
22+
},
23+
{
24+
"type": "feature",
25+
"category": "Access Analyzer",
26+
"contributor": "",
27+
"description": "This release adds support to preview IAM Access Analyzer findings for a resource before deploying resource permission changes."
28+
},
29+
{
30+
"type": "feature",
31+
"category": "Amazon Simple Storage Service",
32+
"contributor": "",
33+
"description": "Adding ID element to the CORSRule schema"
34+
}
35+
]
36+
}

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# __2.16.16__ __2021-03-10__
2+
## __AWS Backup__
3+
- ### Features
4+
- Added support for enabling continuous backups.
5+
6+
## __AWS SDK for Java v2__
7+
- ### Features
8+
- Include the retry mode STANDARD or LEGACY in the user agents list.
9+
10+
## __Access Analyzer__
11+
- ### Features
12+
- This release adds support to preview IAM Access Analyzer findings for a resource before deploying resource permission changes.
13+
14+
## __Amazon Simple Storage Service__
15+
- ### Features
16+
- Adding ID element to the CORSRule schema
17+
18+
## __Amazon Simple Systems Manager (SSM)__
19+
- ### Features
20+
- Systems Manager support for tagging OpsMetadata.
21+
122
# __2.16.15__ __2021-03-09__
223
## __AWS IoT Wireless__
324
- ### Features

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver
4949
<dependency>
5050
<groupId>software.amazon.awssdk</groupId>
5151
<artifactId>bom</artifactId>
52-
<version>2.16.15</version>
52+
<version>2.16.16</version>
5353
<type>pom</type>
5454
<scope>import</scope>
5555
</dependency>
@@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only:
8383
<dependency>
8484
<groupId>software.amazon.awssdk</groupId>
8585
<artifactId>ec2</artifactId>
86-
<version>2.16.15</version>
86+
<version>2.16.16</version>
8787
</dependency>
8888
<dependency>
8989
<groupId>software.amazon.awssdk</groupId>
9090
<artifactId>s3</artifactId>
91-
<version>2.16.15</version>
91+
<version>2.16.16</version>
9292
</dependency>
9393
```
9494

@@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please
100100
<dependency>
101101
<groupId>software.amazon.awssdk</groupId>
102102
<artifactId>aws-sdk-java</artifactId>
103-
<version>2.16.15</version>
103+
<version>2.16.16</version>
104104
</dependency>
105105
```
106106

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.16.15</version>
23+
<version>2.16.16</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.16.15</version>
23+
<version>2.16.16</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.16.15</version>
23+
<version>2.16.16</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.16.15</version>
23+
<version>2.16.16</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.16.15</version>
20+
<version>2.16.16</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.16.15</version>
23+
<version>2.16.16</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626

bom/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.16.15</version>
20+
<version>2.16.16</version>
2121
<relativePath>../pom.xml</relativePath>
2222
</parent>
2323
<artifactId>bom</artifactId>

0 commit comments

Comments
 (0)