Skip to content

Commit 50c9605

Browse files
AWSmillems
authored andcommitted
Updated release version to 2.1.1
1 parent 82430d6 commit 50c9605

File tree

202 files changed

+256
-231
lines changed

Some content is hidden

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

202 files changed

+256
-231
lines changed

.changes/2.1.1.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"date": "2018-11-27",
3+
"version": "2.1.1",
4+
"entries": [
5+
{
6+
"category": "AWS SDK for Java v2",
7+
"type": "bugfix",
8+
"description": "Preserve computedChecksum in `ChecksumValidatingInputStream` so that it doesn't throw error if it validates more than once. See [#873](https://github.com/aws/aws-sdk-java-v2/issues/873)"
9+
},
10+
{
11+
"category": "AWS SDK for Java V2",
12+
"type": "bugfix",
13+
"description": "Fixes Issue [#864](https://github.com/aws/aws-sdk-java-v2/issues/864) by checking for embedded JSON objects while unmarshalling bytes."
14+
},
15+
{
16+
"category": "AWS SDK for Java v2",
17+
"type": "bugfix",
18+
"description": "Fix async pagination javadocs to use the correct method name `SdkPublisher#subscribe`."
19+
},
20+
{
21+
"category": "AWS SDK for Java v2",
22+
"type": "bugfix",
23+
"description": "Fixed an issue where close() and abort() weren't being honored for streaming responses in all cases."
24+
},
25+
{
26+
"category": "AWS SDK for Java v2",
27+
"type": "feature",
28+
"description": "Updated to the latest service models."
29+
},
30+
{
31+
"category": "AWS SDK for Java v2",
32+
"type": "feature",
33+
"description": "Updated to the latest service models."
34+
},
35+
{
36+
"category": "AWS Organizations",
37+
"type": "bugfix",
38+
"description": "Add `organizations` to `aws-sdk-java` module."
39+
}
40+
]
41+
}

.changes/next-release/bugfix-AWSOrganizations-e9534c7.json

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

.changes/next-release/bugfix-AWSSDKforJavaV2-7ae0927.json

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

.changes/next-release/bugfix-AWSSDKforJavav2-135b2d9.json

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

.changes/next-release/bugfix-AWSSDKforJavav2-89a97c3.json

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

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

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

.changes/next-release/feature-AWSSDKforJavaV2-7bd24b3.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.

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
# __2.1.1__ __2018-11-27__
2+
## __AWS Organizations__
3+
- ### Bugfixes
4+
- Add `organizations` to `aws-sdk-java` module.
5+
6+
## __AWS SDK for Java V2__
7+
- ### Bugfixes
8+
- Fixes Issue [#864](https://github.com/aws/aws-sdk-java-v2/issues/864) by checking for embedded JSON objects while unmarshalling bytes.
9+
10+
## __AWS SDK for Java v2__
11+
- ### Features
12+
- Updated to the latest service models.
13+
- Updated to the latest service models.
14+
15+
- ### Bugfixes
16+
- Fix async pagination javadocs to use the correct method name `SdkPublisher#subscribe`.
17+
- Fixed an issue where close() and abort() weren't being honored for streaming responses in all cases.
18+
- Preserve computedChecksum in `ChecksumValidatingInputStream` so that it doesn't throw error if it validates more than once. See [#873](https://github.com/aws/aws-sdk-java-v2/issues/873)
19+
120
# __2.1.0__ __2018-11-19__
221
## __AWS SDK for Java v2__
322
- ### 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.0</version>
46+
<version>2.1.1</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.0</version>
58+
<version>2.1.1</version>
5959
</dependency>
6060
<dependency>
6161
<groupId>software.amazon.awssdk</groupId>
6262
<artifactId>s3</artifactId>
63-
<version>2.1.0</version>
63+
<version>2.1.1</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.0</version>
77+
<version>2.1.1</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
@@ -18,7 +18,7 @@
1818
<parent>
1919
<groupId>software.amazon.awssdk</groupId>
2020
<artifactId>aws-sdk-java-pom</artifactId>
21-
<version>2.1.1-SNAPSHOT</version>
21+
<version>2.1.1</version>
2222
<relativePath>../pom.xml</relativePath>
2323
</parent>
2424
<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.1.1-SNAPSHOT</version>
24+
<version>2.1.1</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.1.1-SNAPSHOT</version>
24+
<version>2.1.1</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.1-SNAPSHOT</version>
10+
<version>2.1.1</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.1-SNAPSHOT</version>
9+
<version>2.1.1</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.1-SNAPSHOT</version>
25+
<version>2.1.1</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.1-SNAPSHOT</version>
24+
<version>2.1.1</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.1-SNAPSHOT</version>
8+
<version>2.1.1</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.1-SNAPSHOT</version>
10+
<version>2.1.1</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.1-SNAPSHOT</version>
10+
<version>2.1.1</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.1-SNAPSHOT</version>
24+
<version>2.1.1</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.1-SNAPSHOT</version>
25+
<version>2.1.1</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.1-SNAPSHOT</version>
8+
<version>2.1.1</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.1-SNAPSHOT</version>
8+
<version>2.1.1</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.1-SNAPSHOT</version>
8+
<version>2.1.1</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.1-SNAPSHOT</version>
8+
<version>2.1.1</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.1-SNAPSHOT</version>
8+
<version>2.1.1</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.1-SNAPSHOT</version>
8+
<version>2.1.1</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.1-SNAPSHOT</version>
8+
<version>2.1.1</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.1-SNAPSHOT</version>
25+
<version>2.1.1</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.1.1-SNAPSHOT</version>
24+
<version>2.1.1</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.1.1-SNAPSHOT</version>
25+
<version>2.1.1</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.1.1-SNAPSHOT</version>
24+
<version>2.1.1</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.1.1-SNAPSHOT</version>
23+
<version>2.1.1</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.1.1-SNAPSHOT</version>
24+
<version>2.1.1</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.1.1-SNAPSHOT</version>
23+
<version>2.1.1</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.1.1-SNAPSHOT</version>
23+
<version>2.1.1</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.1.1-SNAPSHOT</version>
24+
<version>2.1.1</version>
2525
</parent>
2626
<artifactId>acm</artifactId>
2727
<name>AWS Java SDK :: Services :: AWS Certificate Manager</name>

0 commit comments

Comments
 (0)