Skip to content

Commit 1656150

Browse files
Merge pull request #1602 from aws/staging/5b0ed209-69d7-4ce6-b90e-6ce2be34975e
Pull request: release <- staging/5b0ed209-69d7-4ce6-b90e-6ce2be34975e
2 parents 41a61bd + e190152 commit 1656150

File tree

369 files changed

+8881
-7442
lines changed

Some content is hidden

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

369 files changed

+8881
-7442
lines changed

.changes/2.17.17.json

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
{
2+
"version": "2.17.17",
3+
"date": "2021-08-11",
4+
"entries": [
5+
{
6+
"type": "feature",
7+
"category": "AmazonNimbleStudio",
8+
"contributor": "",
9+
"description": "Add new attribute 'ownedBy' in Streaming Session APIs. 'ownedBy' represents the AWS SSO Identity Store User ID of the owner of the Streaming Session resource."
10+
},
11+
{
12+
"type": "bugfix",
13+
"category": "AWS SDK for Java v2",
14+
"contributor": "",
15+
"description": "Use \"full jitter\" & updated base delay for STANDARD retry mode defaults"
16+
},
17+
{
18+
"type": "documentation",
19+
"category": "AWS SDK for Java v2",
20+
"contributor": "",
21+
"description": "Move IntelliJ code style & copyright configuration to project-level settings"
22+
},
23+
{
24+
"type": "feature",
25+
"category": "Amazon Elastic Block Store",
26+
"contributor": "",
27+
"description": "Documentation updates for Amazon EBS direct APIs."
28+
},
29+
{
30+
"type": "feature",
31+
"category": "Amazon EC2 Container Service",
32+
"contributor": "",
33+
"description": "Documentation updates for ECS."
34+
},
35+
{
36+
"type": "feature",
37+
"category": "AWS Snow Device Management",
38+
"contributor": "",
39+
"description": "AWS Snow Family customers can remotely monitor and operate their connected AWS Snowcone devices."
40+
},
41+
{
42+
"type": "feature",
43+
"category": "Amazon Route 53",
44+
"contributor": "",
45+
"description": "Documentation updates for route53"
46+
},
47+
{
48+
"type": "feature",
49+
"category": "AWS CodeBuild",
50+
"contributor": "",
51+
"description": "CodeBuild now allows you to make the build results for your build projects available to the public without requiring access to an AWS account."
52+
},
53+
{
54+
"type": "documentation",
55+
"category": "AWS SDK for Java v2",
56+
"contributor": "",
57+
"description": "Create a shared, project-level IntelliJ inspection profile"
58+
}
59+
]
60+
}

.gitignore

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,14 @@
44
.settings/
55

66
# Intellij
7-
.idea/
7+
.idea/*
88
*.iml
99
*.ipr
1010
*.iws
11+
# IntelliJ un-ignore
12+
!.idea/codeStyles/
13+
!.idea/copyright/
14+
!.idea/inspectionProfiles/
1115

1216
# Mac
1317
.DS_Store

.idea/codeStyles/Project.xml

+49
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/profiles_settings.xml

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/AWS_Java_SDK_2_0.xml

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/profiles_settings.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

+33
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,36 @@
1+
# __2.17.17__ __2021-08-11__
2+
## __AWS CodeBuild__
3+
- ### Features
4+
- CodeBuild now allows you to make the build results for your build projects available to the public without requiring access to an AWS account.
5+
6+
## __AWS SDK for Java v2__
7+
- ### Bugfixes
8+
- Use "full jitter" & updated base delay for STANDARD retry mode defaults
9+
10+
- ### Documentations
11+
- Create a shared, project-level IntelliJ inspection profile
12+
- Move IntelliJ code style & copyright configuration to project-level settings
13+
14+
## __AWS Snow Device Management__
15+
- ### Features
16+
- AWS Snow Family customers can remotely monitor and operate their connected AWS Snowcone devices.
17+
18+
## __Amazon EC2 Container Service__
19+
- ### Features
20+
- Documentation updates for ECS.
21+
22+
## __Amazon Elastic Block Store__
23+
- ### Features
24+
- Documentation updates for Amazon EBS direct APIs.
25+
26+
## __Amazon Route 53__
27+
- ### Features
28+
- Documentation updates for route53
29+
30+
## __AmazonNimbleStudio__
31+
- ### Features
32+
- Add new attribute 'ownedBy' in Streaming Session APIs. 'ownedBy' represents the AWS SSO Identity Store User ID of the owner of the Streaming Session resource.
33+
134
# __2.17.16__ __2021-08-10__
235
## __AWS SDK for Java v2__
336
- ### Features

README.md

+4-4
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.17.16</version>
55+
<version>2.17.17</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.17.16</version>
89+
<version>2.17.17</version>
9090
</dependency>
9191
<dependency>
9292
<groupId>software.amazon.awssdk</groupId>
9393
<artifactId>s3</artifactId>
94-
<version>2.17.16</version>
94+
<version>2.17.17</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.17.16</version>
106+
<version>2.17.17</version>
107107
</dependency>
108108
```
109109

archetypes/archetype-app-quickstart/pom.xml

+1-1
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.17.16</version>
23+
<version>2.17.17</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626

archetypes/archetype-lambda/pom.xml

+1-1
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.17.16</version>
23+
<version>2.17.17</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626
<artifactId>archetype-lambda</artifactId>

archetypes/archetype-tools/pom.xml

+1-1
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.17.16</version>
23+
<version>2.17.17</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626

archetypes/pom.xml

+1-1
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.17.16</version>
23+
<version>2.17.17</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626
<artifactId>archetypes</artifactId>

aws-sdk-java/pom.xml

+6-1
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.17.16</version>
20+
<version>2.17.17</version>
2121
<relativePath>../pom.xml</relativePath>
2222
</parent>
2323
<artifactId>aws-sdk-java</artifactId>
@@ -1388,6 +1388,11 @@ Amazon AutoScaling, etc).</description>
13881388
<artifactId>chimesdkidentity</artifactId>
13891389
<version>${awsjavasdk.version}</version>
13901390
</dependency>
1391+
<dependency>
1392+
<groupId>software.amazon.awssdk</groupId>
1393+
<artifactId>snowdevicemanagement</artifactId>
1394+
<version>${awsjavasdk.version}</version>
1395+
</dependency>
13911396
</dependencies>
13921397
<build>
13931398
<finalName>${project.artifactId}-${project.version}</finalName>

bom-internal/pom.xml

+1-1
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.17.16</version>
23+
<version>2.17.17</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626

bom/pom.xml

+6-1
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.17.16</version>
20+
<version>2.17.17</version>
2121
<relativePath>../pom.xml</relativePath>
2222
</parent>
2323
<artifactId>bom</artifactId>
@@ -1528,6 +1528,11 @@
15281528
<artifactId>chimesdkidentity</artifactId>
15291529
<version>${awsjavasdk.version}</version>
15301530
</dependency>
1531+
<dependency>
1532+
<groupId>software.amazon.awssdk</groupId>
1533+
<artifactId>snowdevicemanagement</artifactId>
1534+
<version>${awsjavasdk.version}</version>
1535+
</dependency>
15311536
</dependencies>
15321537
</dependencyManagement>
15331538
</project>

0 commit comments

Comments
 (0)