Skip to content

Commit 2fa64ca

Browse files
committed
Update to next snapshot version 2.0.0-preview-13-SNAPSHOT
1 parent 584ba35 commit 2fa64ca

File tree

167 files changed

+259
-221
lines changed

Some content is hidden

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

167 files changed

+259
-221
lines changed

.changes/2.0.0-preview-12.json

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
{
2+
"date": "2018-09-18",
3+
"version": "2.0.0-preview-12",
4+
"entries": [
5+
{
6+
"category": "Aamazon S3",
7+
"type": "bugfix",
8+
"description": "Fix NPE for S3 GET request using http protocol. see [#612](https://github.com/aws/aws-sdk-java-v2/issues/612)"
9+
},
10+
{
11+
"category": "AWS SDK for Java v2",
12+
"type": "bugfix",
13+
"description": "Fix Response Fetcher hasNextPage to check if the output token is non null or non empty if it is a collection or map type. Related to [#677](https://github.com/aws/aws-sdk-java-v2/issues/677)"
14+
},
15+
{
16+
"category": "AWS SDK for Java v2",
17+
"type": "bugfix",
18+
"description": "RetryPolicy bug fix: adding throttlingBackoffStrategy to `RetryPolicy.Builder`. see [#646](https://github.com/aws/aws-sdk-java-v2/issues/646)"
19+
},
20+
{
21+
"category": "runtime",
22+
"type": "bugfix",
23+
"description": "Netty 4.1.26.Final -> 4.1.28.Final"
24+
},
25+
{
26+
"category": "AWS SDK for Java v2",
27+
"type": "feature",
28+
"description": "Improve logging for debuggability. see `SdkStandardLogger`."
29+
},
30+
{
31+
"category": "AWS SDK for Java v2",
32+
"type": "feature",
33+
"description": "Replacing legacy `HttpResponse` with `SdkHttpFullResponse`."
34+
},
35+
{
36+
"category": "AWS SDK for Java v2",
37+
"type": "feature",
38+
"description": "Refactored all services to make module names match the service id from the service model"
39+
},
40+
{
41+
"category": "AWS SDK for Java v2",
42+
"type": "feature",
43+
"description": "Update service models to be current as of 2018-09-07."
44+
},
45+
{
46+
"category": "AWS SDK for Java v2",
47+
"type": "feature",
48+
"description": "Removed sdk-core dependency from the profiles module. This allows reading from profile files without pulling in the rest of the SDK."
49+
},
50+
{
51+
"category": "AWS SDK for Java v2",
52+
"type": "feature",
53+
"description": "Implement apiCallAttemptTimeout and apiCallTimeout feature for asynchrounous calls. Customers can specify timeout via `ClientOverrideConfiguaration.Builder#apiCallTimeout(Duration)` or `RequestOverrideConfiguration.Builder#apiCallAttemptTimeout(Duration)`. Note: this feature is only implemented for asynchrounous api calls."
54+
},
55+
{
56+
"category": "AWS SDK for Java v2",
57+
"type": "feature",
58+
"description": "Add mfa_serial to ProfileProperty"
59+
},
60+
{
61+
"category": "AWS SDK for Java v2",
62+
"type": "feature",
63+
"description": "Allow clients to add Socket Channel Option"
64+
},
65+
{
66+
"category": "AWS STS",
67+
"type": "feature",
68+
"description": "Add the ability to provide a Supplier<AssumeRoleRequest> to StsAssumeRoleCredentialsProvider"
69+
},
70+
{
71+
"category": "Amazon SimpleDB",
72+
"type": "removal",
73+
"description": "Amazon SimpleDB module is removed from the SDK 2.0. To use SimpleDB, use SDK 1.11.x. Note that you can run SDK 1.11 and 2.0 in the same application."
74+
}
75+
]
76+
}

.changes/next-release/bugfix-AWSSDKforJavav2-532f520.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/next-release/bugfix-AWSSDKforJavav2-b093be5.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/next-release/bugfix-AamazonS3-06ed2a0.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/next-release/bugfix-runtime-d31e357.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/next-release/feature-AWSSDKforJavav2-0aac933.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/next-release/feature-AWSSDKforJavav2-0b114ac.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/next-release/feature-AWSSDKforJavav2-3344b57.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/next-release/feature-AWSSDKforJavav2-8138f04.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/next-release/feature-AWSSDKforJavav2-926e183.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/next-release/feature-AWSSDKforJavav2-bd6fe1d.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/next-release/feature-AWSSDKforJavav2-dfce555.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/next-release/feature-AWSSDKforJavav2.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/next-release/feature-AWSSTS-54034ec.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/next-release/removal-AmazonSimpleDB-063cf0a.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
# __2.0.0-preview-12__ __2018-09-18__
2+
## __AWS SDK for Java v2__
3+
- ### Features
4+
- Add mfa_serial to ProfileProperty
5+
- Allow clients to add Socket Channel Option
6+
- Implement apiCallAttemptTimeout and apiCallTimeout feature for asynchrounous calls. Customers can specify timeout via `ClientOverrideConfiguaration.Builder#apiCallTimeout(Duration)` or `RequestOverrideConfiguration.Builder#apiCallAttemptTimeout(Duration)`. Note: this feature is only implemented for asynchrounous api calls.
7+
- Improve logging for debuggability. see `SdkStandardLogger`.
8+
- Refactored all services to make module names match the service id from the service model
9+
- Removed sdk-core dependency from the profiles module. This allows reading from profile files without pulling in the rest of the SDK.
10+
- Replacing legacy `HttpResponse` with `SdkHttpFullResponse`.
11+
- Update service models to be current as of 2018-09-07.
12+
13+
- ### Bugfixes
14+
- Fix Response Fetcher hasNextPage to check if the output token is non null or non empty if it is a collection or map type. Related to [#677](https://github.com/aws/aws-sdk-java-v2/issues/677)
15+
- RetryPolicy bug fix: adding throttlingBackoffStrategy to `RetryPolicy.Builder`. see [#646](https://github.com/aws/aws-sdk-java-v2/issues/646)
16+
17+
## __AWS STS__
18+
- ### Features
19+
- Add the ability to provide a Supplier<AssumeRoleRequest> to StsAssumeRoleCredentialsProvider
20+
21+
## __Aamazon S3__
22+
- ### Bugfixes
23+
- Fix NPE for S3 GET request using http protocol. see [#612](https://github.com/aws/aws-sdk-java-v2/issues/612)
24+
25+
## __Amazon SimpleDB__
26+
- ### Removals
27+
- Amazon SimpleDB module is removed from the SDK 2.0. To use SimpleDB, use SDK 1.11.x. Note that you can run SDK 1.11 and 2.0 in the same application.
28+
29+
## __runtime__
30+
- ### Bugfixes
31+
- Netty 4.1.26.Final -> 4.1.28.Final
32+
133
# __2.0.0-preview-11__ __2018-07-30__
234
## __AWS SDK for Java v2__
335
- ### Features

aws-sdk-java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>software.amazon.awssdk</groupId>
2323
<artifactId>aws-sdk-java-pom</artifactId>
24-
<version>2.0.0-preview-12-SNAPSHOT</version>
24+
<version>2.0.0-preview-13-SNAPSHOT</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727
<artifactId>aws-sdk-java</artifactId>

bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>software.amazon.awssdk</groupId>
2323
<artifactId>aws-sdk-java-pom</artifactId>
24-
<version>2.0.0-preview-12-SNAPSHOT</version>
24+
<version>2.0.0-preview-13-SNAPSHOT</version>
2525
<relativePath>../pom.xml</relativePath>
2626
</parent>
2727

bundle/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>software.amazon.awssdk</groupId>
2323
<artifactId>aws-sdk-java-pom</artifactId>
24-
<version>2.0.0-preview-12-SNAPSHOT</version>
24+
<version>2.0.0-preview-13-SNAPSHOT</version>
2525
</parent>
2626
<artifactId>bundle</artifactId>
2727
<packaging>jar</packaging>

codegen-maven-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>software.amazon.awssdk</groupId>
2424
<artifactId>aws-sdk-java-pom</artifactId>
25-
<version>2.0.0-preview-12-SNAPSHOT</version>
25+
<version>2.0.0-preview-13-SNAPSHOT</version>
2626
<relativePath>../pom.xml</relativePath>
2727
</parent>
2828
<artifactId>codegen-maven-plugin</artifactId>

codegen/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>software.amazon.awssdk</groupId>
2323
<artifactId>aws-sdk-java-pom</artifactId>
24-
<version>2.0.0-preview-12-SNAPSHOT</version>
24+
<version>2.0.0-preview-13-SNAPSHOT</version>
2525
</parent>
2626
<artifactId>codegen</artifactId>
2727
<name>AWS Java SDK :: Code Generator</name>

core/annotations/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>core</artifactId>
77
<groupId>software.amazon.awssdk</groupId>
8-
<version>2.0.0-preview-12-SNAPSHOT</version>
8+
<version>2.0.0-preview-13-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

core/auth/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>software.amazon.awssdk</groupId>
99
<artifactId>core</artifactId>
10-
<version>2.0.0-preview-12-SNAPSHOT</version>
10+
<version>2.0.0-preview-13-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>auth</artifactId>

core/aws-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>software.amazon.awssdk</groupId>
99
<artifactId>core</artifactId>
10-
<version>2.0.0-preview-12-SNAPSHOT</version>
10+
<version>2.0.0-preview-13-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>aws-core</artifactId>

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<artifactId>aws-sdk-java-pom</artifactId>
2323
<groupId>software.amazon.awssdk</groupId>
24-
<version>2.0.0-preview-12-SNAPSHOT</version>
24+
<version>2.0.0-preview-13-SNAPSHOT</version>
2525
</parent>
2626

2727
<artifactId>core</artifactId>

core/profiles/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>software.amazon.awssdk</groupId>
2424
<artifactId>core</artifactId>
25-
<version>2.0.0-preview-12-SNAPSHOT</version>
25+
<version>2.0.0-preview-13-SNAPSHOT</version>
2626
</parent>
2727

2828
<artifactId>profiles</artifactId>

core/regions/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>software.amazon.awssdk</groupId>
2424
<artifactId>core</artifactId>
25-
<version>2.0.0-preview-12-SNAPSHOT</version>
25+
<version>2.0.0-preview-13-SNAPSHOT</version>
2626
</parent>
2727

2828
<artifactId>regions</artifactId>

core/sdk-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>software.amazon.awssdk</groupId>
2323
<artifactId>core</artifactId>
24-
<version>2.0.0-preview-12-SNAPSHOT</version>
24+
<version>2.0.0-preview-13-SNAPSHOT</version>
2525
</parent>
2626
<artifactId>sdk-core</artifactId>
2727
<name>AWS Java SDK :: SDK Core</name>

http-client-spi/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>aws-sdk-java-pom</artifactId>
2424
<groupId>software.amazon.awssdk</groupId>
25-
<version>2.0.0-preview-12-SNAPSHOT</version>
25+
<version>2.0.0-preview-13-SNAPSHOT</version>
2626
</parent>
2727
<artifactId>http-client-spi</artifactId>
2828
<name>AWS Java SDK :: HTTP Client Interface</name>

http-clients/apache-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<artifactId>http-clients</artifactId>
2323
<groupId>software.amazon.awssdk</groupId>
24-
<version>2.0.0-preview-12-SNAPSHOT</version>
24+
<version>2.0.0-preview-13-SNAPSHOT</version>
2525
</parent>
2626

2727
<artifactId>apache-client</artifactId>

http-clients/netty-nio-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<artifactId>http-clients</artifactId>
2222
<groupId>software.amazon.awssdk</groupId>
23-
<version>2.0.0-preview-12-SNAPSHOT</version>
23+
<version>2.0.0-preview-13-SNAPSHOT</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626

http-clients/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<artifactId>aws-sdk-java-pom</artifactId>
2323
<groupId>software.amazon.awssdk</groupId>
24-
<version>2.0.0-preview-12-SNAPSHOT</version>
24+
<version>2.0.0-preview-13-SNAPSHOT</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727

http-clients/url-connection-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<artifactId>http-clients</artifactId>
2222
<groupId>software.amazon.awssdk</groupId>
23-
<version>2.0.0-preview-12-SNAPSHOT</version>
23+
<version>2.0.0-preview-13-SNAPSHOT</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<modelVersion>4.0.0</modelVersion>
2121
<groupId>software.amazon.awssdk</groupId>
2222
<artifactId>aws-sdk-java-pom</artifactId>
23-
<version>2.0.0-preview-12-SNAPSHOT</version>
23+
<version>2.0.0-preview-13-SNAPSHOT</version>
2424
<packaging>pom</packaging>
2525
<name>AWS Java SDK :: Parent</name>
2626
<description>The Amazon Web Services SDK for Java provides Java APIs

services/acm/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>software.amazon.awssdk</groupId>
2323
<artifactId>services</artifactId>
24-
<version>2.0.0-preview-12-SNAPSHOT</version>
24+
<version>2.0.0-preview-13-SNAPSHOT</version>
2525
</parent>
2626
<artifactId>acm</artifactId>
2727
<name>AWS Java SDK :: Services :: AWS Certificate Manager</name>

services/alexaforbusiness/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<artifactId>services</artifactId>
2222
<groupId>software.amazon.awssdk</groupId>
23-
<version>2.0.0-preview-12-SNAPSHOT</version>
23+
<version>2.0.0-preview-13-SNAPSHOT</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626

services/apigateway/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>software.amazon.awssdk</groupId>
2323
<artifactId>services</artifactId>
24-
<version>2.0.0-preview-12-SNAPSHOT</version>
24+
<version>2.0.0-preview-13-SNAPSHOT</version>
2525
</parent>
2626
<artifactId>apigateway</artifactId>
2727
<name>AWS Java SDK :: Services :: Amazon API Gateway</name>

services/applicationautoscaling/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>software.amazon.awssdk</groupId>
2323
<artifactId>services</artifactId>
24-
<version>2.0.0-preview-12-SNAPSHOT</version>
24+
<version>2.0.0-preview-13-SNAPSHOT</version>
2525
</parent>
2626
<artifactId>applicationautoscaling</artifactId>
2727
<name>AWS Java SDK :: Services :: AWS Application Auto Scaling</name>

0 commit comments

Comments
 (0)