Skip to content

Commit 5568f99

Browse files
Merge pull request #475 from aws/staging/416f5504-caf9-45ad-a842-345f2cb15bf8
Pull request: release <- staging/416f5504-caf9-45ad-a842-345f2cb15bf8
2 parents fa88050 + 2c75a01 commit 5568f99

File tree

233 files changed

+1716
-544
lines changed

Some content is hidden

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

233 files changed

+1716
-544
lines changed

.changes/2.5.26.json

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"date": "2019-04-16",
3+
"version": "2.5.26",
4+
"entries": [
5+
{
6+
"category": "Netty NIO Http Client",
7+
"type": "bugfix",
8+
"description": "Update `UnusedChannelExceptionHandler` to check the cause of the exception so that it does emit warn logs if the cause is netty io exception. See [#1171](https://github.com/aws/aws-sdk-java-v2/issues/1171)"
9+
},
10+
{
11+
"category": "Amazon Redshift",
12+
"type": "feature",
13+
"description": "DescribeResize can now return percent of data transferred from source cluster to target cluster for a classic resize."
14+
},
15+
{
16+
"category": "Amazon CloudWatch",
17+
"type": "feature",
18+
"description": "Documentation updates for monitoring"
19+
},
20+
{
21+
"category": "AWS Storage Gateway",
22+
"type": "feature",
23+
"description": "This change allows you to select either a weekly or monthly maintenance window for your volume or tape gateway. It also allows you to tag your tape and volume resources on creation by adding a Tag value on calls to the respective api endpoints."
24+
},
25+
{
26+
"category": "AWS SDK for Java v2",
27+
"type": "feature",
28+
"description": "Enable support for credential_process in an AWS credential profile"
29+
},
30+
{
31+
"category": "AmazonMQ",
32+
"type": "feature",
33+
"description": "This release adds the ability to retrieve information about broker engines and broker instance options. See Broker Engine Types and Broker Instance Options in the Amazon MQ REST API Reference."
34+
},
35+
{
36+
"category": "AWS Organizations",
37+
"type": "feature",
38+
"description": "Documentation updates for organizations"
39+
},
40+
{
41+
"category": "Amazon Cognito Identity Provider",
42+
"type": "feature",
43+
"description": "This release adds support for the new email configuration in Amazon Cognito User Pools. You can now specify whether Amazon Cognito emails your users by using its built-in email functionality or your Amazon SES email configuration."
44+
}
45+
]
46+
}

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,36 @@
1+
# __2.5.26__ __2019-04-16__
2+
## __AWS Organizations__
3+
- ### Features
4+
- Documentation updates for organizations
5+
6+
## __AWS SDK for Java v2__
7+
- ### Features
8+
- Enable support for credential_process in an AWS credential profile
9+
10+
## __AWS Storage Gateway__
11+
- ### Features
12+
- This change allows you to select either a weekly or monthly maintenance window for your volume or tape gateway. It also allows you to tag your tape and volume resources on creation by adding a Tag value on calls to the respective api endpoints.
13+
14+
## __Amazon CloudWatch__
15+
- ### Features
16+
- Documentation updates for monitoring
17+
18+
## __Amazon Cognito Identity Provider__
19+
- ### Features
20+
- This release adds support for the new email configuration in Amazon Cognito User Pools. You can now specify whether Amazon Cognito emails your users by using its built-in email functionality or your Amazon SES email configuration.
21+
22+
## __Amazon Redshift__
23+
- ### Features
24+
- DescribeResize can now return percent of data transferred from source cluster to target cluster for a classic resize.
25+
26+
## __AmazonMQ__
27+
- ### Features
28+
- This release adds the ability to retrieve information about broker engines and broker instance options. See Broker Engine Types and Broker Instance Options in the Amazon MQ REST API Reference.
29+
30+
## __Netty NIO Http Client__
31+
- ### Bugfixes
32+
- Update `UnusedChannelExceptionHandler` to check the cause of the exception so that it does emit warn logs if the cause is netty io exception. See [#1171](https://github.com/aws/aws-sdk-java-v2/issues/1171)
33+
134
# __2.5.25__ __2019-04-05__
235
## __AWS Elemental MediaConvert__
336
- ### Features

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ artifact source.
1111

1212
* [SDK Homepage][sdk-website]
1313
* [1.11 to 2.0 Changelog](docs/LaunchChangelog.md)
14+
* [Best Practices](docs/BestPractices.md)
1415
* [Sample Code](#sample-code)
1516
* [API Docs][docs-api]
1617
* [Developer Guide][docs-guide] ([source][docs-guide-source])
@@ -44,7 +45,7 @@ You can import the whole SDK into your project (includes all services) as follow
4445
<dependency>
4546
<groupId>software.amazon.awssdk</groupId>
4647
<artifactId>aws-sdk-java</artifactId>
47-
<version>2.5.25</version>
48+
<version>2.5.26</version>
4849
</dependency>
4950
```
5051

@@ -56,12 +57,12 @@ Alternatively you can add dependencies for the specific services you use only:
5657
<dependency>
5758
<groupId>software.amazon.awssdk</groupId>
5859
<artifactId>ec2</artifactId>
59-
<version>2.5.25</version>
60+
<version>2.5.26</version>
6061
</dependency>
6162
<dependency>
6263
<groupId>software.amazon.awssdk</groupId>
6364
<artifactId>s3</artifactId>
64-
<version>2.5.25</version>
65+
<version>2.5.26</version>
6566
</dependency>
6667
```
6768

@@ -75,7 +76,7 @@ To automatically manage module versions (currently all modules have the same ver
7576
<dependency>
7677
<groupId>software.amazon.awssdk</groupId>
7778
<artifactId>bom</artifactId>
78-
<version>2.5.25</version>
79+
<version>2.5.26</version>
7980
<type>pom</type>
8081
<scope>import</scope>
8182
</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.5.25</version>
7+
<version>2.5.26</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>aws-sdk-java</artifactId>

bom-internal/pom.xml

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

bom/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.5.25</version>
7+
<version>2.5.26</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>bom</artifactId>

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.5.25</version>
24+
<version>2.5.26</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.5.25</version>
10+
<version>2.5.26</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.5.25</version>
9+
<version>2.5.26</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.5.25</version>
25+
<version>2.5.26</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.5.25</version>
24+
<version>2.5.26</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.5.25</version>
8+
<version>2.5.26</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.5.25</version>
10+
<version>2.5.26</version>
1111
</parent>
1212

1313
<artifactId>auth</artifactId>

0 commit comments

Comments
 (0)