Skip to content

Commit 508fd8d

Browse files
author
AWS
committed
Updated release version to 2.1.4
1 parent 8bd5ebf commit 508fd8d

File tree

218 files changed

+308
-271
lines changed

Some content is hidden

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

218 files changed

+308
-271
lines changed

.changes/2.1.4.json

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
{
2+
"date": "2018-12-07",
3+
"version": "2.1.4",
4+
"entries": [
5+
{
6+
"category": "AWS CodeDeploy",
7+
"type": "feature",
8+
"description": "Supporting AWS CodeDeploy"
9+
},
10+
{
11+
"category": "AWS SDK for Java v2",
12+
"type": "bugfix",
13+
"description": "Fixes nullpointerexception when server responds with null values in map."
14+
},
15+
{
16+
"category": "Amazon S3",
17+
"type": "bugfix",
18+
"description": "Turns off trailing checksums when using SSE-C or SSE-KMS"
19+
},
20+
{
21+
"category": "core",
22+
"type": "feature",
23+
"description": "Netty 4.1.32.Final"
24+
},
25+
{
26+
"category": "Netty NIO Async HTTP Client",
27+
"type": "bugfix",
28+
"description": "Close created `ChannelPool`s in `close()` method."
29+
},
30+
{
31+
"category": "AWS SDK for Java v2",
32+
"type": "feature",
33+
"description": "Add `modifyException` API to `ExecutionInterceptor`."
34+
},
35+
{
36+
"category": "Amazon S3",
37+
"type": "bugfix",
38+
"description": "Update S3 headObject/headBucket operations to throw NoSuchKey/NoSuchException when S3 is returning 404. See [#123](https://github.com/aws/aws-sdk-java-v2/issues/123), [#544](https://github.com/aws/aws-sdk-java-v2/issues/544)"
39+
},
40+
{
41+
"category": "AWS SDK for Java v2",
42+
"type": "feature",
43+
"description": "Update spot bugs version to 3.1.9"
44+
},
45+
{
46+
"category": "Netty NIO Async HTTP Client",
47+
"type": "bugfix",
48+
"description": "Fix the issue where streaming requests with `Expect: 100-continue` header sometimes are hanging because 100Continue response message is not being read automatically. See [#459](https://github.com/aws/aws-sdk-java-v2/issues/459)"
49+
},
50+
{
51+
"category": "AWS SDK for Java v2",
52+
"type": "bugfix",
53+
"description": "Use the class loader that loaded the SDK to load the HTTP implementations. See [#56](https://github.com/aws/aws-sdk-java-v2/issues/56)"
54+
},
55+
{
56+
"category": "AWS SDK for Java v2",
57+
"type": "bugfix",
58+
"description": "Fix infinite stream of results bug in auto paginator APIs when the next token is an empty string"
59+
},
60+
{
61+
"category": "AWS SDK for Java v2",
62+
"type": "feature",
63+
"description": "Updated to the latest service models."
64+
},
65+
{
66+
"category": "AWS SDK for Java v2",
67+
"type": "feature",
68+
"description": "Add application/gzip mime type"
69+
}
70+
]
71+
}

.changes/next-release/bugfix-AWSSDKforJavav2-2e246bc.json

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

.changes/next-release/bugfix-AWSSDKforJavav2-508ab51.json

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

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

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

.changes/next-release/bugfix-AmazonS3-22d85db.json

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

.changes/next-release/bugfix-AmazonS3-b7ad196.json

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

.changes/next-release/bugfix-NettyNIOAsyncHTTPClient-07f0d1e.json

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

.changes/next-release/bugfix-NettyNIOAsyncHTTPClient-5b20e7b.json

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

.changes/next-release/feature-AWSCodeDeploy-f06b1c2.json

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

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

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

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

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

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

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

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

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

.changes/next-release/feature-core-d7ed82f.json

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

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
# __2.1.4__ __2018-12-07__
2+
## __AWS CodeDeploy__
3+
- ### Features
4+
- Supporting AWS CodeDeploy
5+
6+
## __AWS SDK for Java v2__
7+
- ### Features
8+
- Add `modifyException` API to `ExecutionInterceptor`.
9+
- Add application/gzip mime type
10+
- Update spot bugs version to 3.1.9
11+
- Updated to the latest service models.
12+
13+
- ### Bugfixes
14+
- Fix infinite stream of results bug in auto paginator APIs when the next token is an empty string
15+
- Fixes nullpointerexception when server responds with null values in map.
16+
- Use the class loader that loaded the SDK to load the HTTP implementations. See [#56](https://github.com/aws/aws-sdk-java-v2/issues/56)
17+
18+
## __Amazon S3__
19+
- ### Bugfixes
20+
- Turns off trailing checksums when using SSE-C or SSE-KMS
21+
- Update S3 headObject/headBucket operations to throw NoSuchKey/NoSuchException when S3 is returning 404. See [#123](https://github.com/aws/aws-sdk-java-v2/issues/123), [#544](https://github.com/aws/aws-sdk-java-v2/issues/544)
22+
23+
## __Netty NIO Async HTTP Client__
24+
- ### Bugfixes
25+
- Close created `ChannelPool`s in `close()` method.
26+
- Fix the issue where streaming requests with `Expect: 100-continue` header sometimes are hanging because 100Continue response message is not being read automatically. See [#459](https://github.com/aws/aws-sdk-java-v2/issues/459)
27+
28+
## __core__
29+
- ### Features
30+
- Netty 4.1.32.Final
31+
132
# __2.1.3__ __2018-11-29__
233
## __AWS SDK for Java v2__
334
- ### Features

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ You can import the whole SDK into your project (includes all services) as follow
4343
<dependency>
4444
<groupId>software.amazon.awssdk</groupId>
4545
<artifactId>aws-sdk-java</artifactId>
46-
<version>2.1.3</version>
46+
<version>2.1.4</version>
4747
</dependency>
4848
```
4949

@@ -55,12 +55,12 @@ Alternatively you can add dependencies for the specific services you use only:
5555
<dependency>
5656
<groupId>software.amazon.awssdk</groupId>
5757
<artifactId>ec2</artifactId>
58-
<version>2.1.3</version>
58+
<version>2.1.4</version>
5959
</dependency>
6060
<dependency>
6161
<groupId>software.amazon.awssdk</groupId>
6262
<artifactId>s3</artifactId>
63-
<version>2.1.3</version>
63+
<version>2.1.4</version>
6464
</dependency>
6565
```
6666

@@ -74,7 +74,7 @@ To automatically manage module versions (currently all modules have the same ver
7474
<dependency>
7575
<groupId>software.amazon.awssdk</groupId>
7676
<artifactId>bom</artifactId>
77-
<version>2.1.3</version>
77+
<version>2.1.4</version>
7878
<type>pom</type>
7979
<scope>import</scope>
8080
</dependency>

aws-sdk-java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>software.amazon.awssdk</groupId>
66
<artifactId>aws-sdk-java-pom</artifactId>
7-
<version>2.1.4-SNAPSHOT</version>
7+
<version>2.1.4</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>aws-sdk-java</artifactId>

bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>software.amazon.awssdk</groupId>
88
<artifactId>aws-sdk-java-pom</artifactId>
9-
<version>2.1.4-SNAPSHOT</version>
9+
<version>2.1.4</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

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.1.4-SNAPSHOT</version>
24+
<version>2.1.4</version>
2525
</parent>
2626
<artifactId>bundle</artifactId>
2727
<packaging>jar</packaging>

codegen-lite-maven-plugin/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>aws-sdk-java-pom</artifactId>
10-
<version>2.1.4-SNAPSHOT</version>
10+
<version>2.1.4</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313
<artifactId>codegen-lite-maven-plugin</artifactId>

codegen-lite/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>software.amazon.awssdk</groupId>
88
<artifactId>aws-sdk-java-pom</artifactId>
9-
<version>2.1.4-SNAPSHOT</version>
9+
<version>2.1.4</version>
1010
</parent>
1111
<artifactId>codegen-lite</artifactId>
1212
<name>AWS Java SDK :: Code Generator Lite</name>

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.1.4-SNAPSHOT</version>
25+
<version>2.1.4</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.1.4-SNAPSHOT</version>
24+
<version>2.1.4</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.1.4-SNAPSHOT</version>
8+
<version>2.1.4</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.1.4-SNAPSHOT</version>
10+
<version>2.1.4</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.1.4-SNAPSHOT</version>
10+
<version>2.1.4</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.1.4-SNAPSHOT</version>
24+
<version>2.1.4</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.1.4-SNAPSHOT</version>
25+
<version>2.1.4</version>
2626
</parent>
2727

2828
<artifactId>profiles</artifactId>

core/protocols/aws-cbor-protocol/pom.xml

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

core/protocols/aws-ion-protocol/pom.xml

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

core/protocols/aws-json-protocol/pom.xml

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

core/protocols/aws-query-protocol/pom.xml

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

core/protocols/aws-xml-protocol/pom.xml

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

core/protocols/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.1.4-SNAPSHOT</version>
8+
<version>2.1.4</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

core/protocols/protocol-core/pom.xml

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

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.1.4-SNAPSHOT</version>
25+
<version>2.1.4</version>
2626
</parent>
2727

2828
<artifactId>regions</artifactId>

0 commit comments

Comments
 (0)