Skip to content

Commit 50746d0

Browse files
authored
Merge pull request #407 from aws/staging/4bbfb7ac-0e2a-494d-bf52-2876f0fc7276
Pull request: release <- staging/4bbfb7ac-0e2a-494d-bf52-2876f0fc7276
2 parents 2286f30 + c602c61 commit 50746d0

File tree

229 files changed

+1562
-1005
lines changed

Some content is hidden

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

229 files changed

+1562
-1005
lines changed

.changes/2.4.4.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"date": "2019-02-08",
3+
"version": "2.4.4",
4+
"entries": [
5+
{
6+
"category": "AWS Application Discovery Service",
7+
"type": "feature",
8+
"description": "Documentation updates for the AWS Application Discovery Service."
9+
},
10+
{
11+
"category": "AWS SDK for Java v2",
12+
"type": "feature",
13+
"description": "Never initialie the default region provider chain if the region is always specified in the client builder."
14+
},
15+
{
16+
"category": "AWS SDK for Java v2",
17+
"type": "bugfix",
18+
"description": "Defer all errors raised when creating `ProfileCredentialsProvider` to the `resolveCredentials()` call."
19+
},
20+
{
21+
"category": "AWS SDK for Java v2",
22+
"type": "feature",
23+
"description": "Never initialize the default credentials provider chain if credentials are always specified in the client builder."
24+
},
25+
{
26+
"category": "Amazon Data Lifecycle Manager",
27+
"type": "feature",
28+
"description": "This release is to correct the timestamp format to ISO8601 for the DateCreated and DateModified files in the GetLifecyclePolicy response object."
29+
},
30+
{
31+
"category": "Amazon EC2 Container Service",
32+
"type": "feature",
33+
"description": "Amazon ECS introduces the PutAccountSettingDefault API, an API that allows a user to set the default ARN/ID format opt-in status for all the roles and users in the account. Previously, setting the account's default opt-in status required the use of the root user with the PutAccountSetting API."
34+
},
35+
{
36+
"category": "AWS S3",
37+
"type": "bugfix",
38+
"description": "Use request header to determine if checksum validation should be enabled for `s3#putObject`"
39+
}
40+
]
41+
}

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
# __2.4.4__ __2019-02-08__
2+
## __AWS Application Discovery Service__
3+
- ### Features
4+
- Documentation updates for the AWS Application Discovery Service.
5+
6+
## __AWS S3__
7+
- ### Bugfixes
8+
- Use request header to determine if checksum validation should be enabled for `s3#putObject`
9+
10+
## __AWS SDK for Java v2__
11+
- ### Features
12+
- Never initialie the default region provider chain if the region is always specified in the client builder.
13+
- Never initialize the default credentials provider chain if credentials are always specified in the client builder.
14+
15+
- ### Bugfixes
16+
- Defer all errors raised when creating `ProfileCredentialsProvider` to the `resolveCredentials()` call.
17+
18+
## __Amazon Data Lifecycle Manager__
19+
- ### Features
20+
- This release is to correct the timestamp format to ISO8601 for the DateCreated and DateModified files in the GetLifecyclePolicy response object.
21+
22+
## __Amazon EC2 Container Service__
23+
- ### Features
24+
- Amazon ECS introduces the PutAccountSettingDefault API, an API that allows a user to set the default ARN/ID format opt-in status for all the roles and users in the account. Previously, setting the account's default opt-in status required the use of the root user with the PutAccountSetting API.
25+
126
# __2.4.3__ __2019-02-07__
227
## __AWS Elemental MediaLive__
328
- ### Features

README.md

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

@@ -56,12 +56,12 @@ Alternatively you can add dependencies for the specific services you use only:
5656
<dependency>
5757
<groupId>software.amazon.awssdk</groupId>
5858
<artifactId>ec2</artifactId>
59-
<version>2.4.3</version>
59+
<version>2.4.4</version>
6060
</dependency>
6161
<dependency>
6262
<groupId>software.amazon.awssdk</groupId>
6363
<artifactId>s3</artifactId>
64-
<version>2.4.3</version>
64+
<version>2.4.4</version>
6565
</dependency>
6666
```
6767

@@ -75,7 +75,7 @@ To automatically manage module versions (currently all modules have the same ver
7575
<dependency>
7676
<groupId>software.amazon.awssdk</groupId>
7777
<artifactId>bom</artifactId>
78-
<version>2.4.3</version>
78+
<version>2.4.4</version>
7979
<type>pom</type>
8080
<scope>import</scope>
8181
</dependency>

aws-sdk-java/pom.xml

Lines changed: 3 additions & 56 deletions
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.4.3</version>
7+
<version>2.4.4</version>
88
<relativePath>../pom.xml</relativePath>
99
</parent>
1010
<artifactId>aws-sdk-java</artifactId>
@@ -15,7 +15,7 @@
1515
Amazon AutoScaling, etc).
1616
</description>
1717
<url>https://aws.amazon.com/sdkforjava</url>
18-
<!-- The dependencies section in pom.xml is auto generated. No manual changes are allowed -->
18+
1919
<dependencies>
2020
<dependency>
2121
<artifactId>pinpoint</artifactId>
@@ -633,17 +633,10 @@
633633
<version>${awsjavasdk.version}</version>
634634
</dependency>
635635
</dependencies>
636+
636637
<build>
637638
<finalName>${project.artifactId}-${project.version}</finalName>
638639
<plugins>
639-
<plugin>
640-
<groupId>org.apache.maven.plugins</groupId>
641-
<artifactId>maven-compiler-plugin</artifactId>
642-
</plugin>
643-
<plugin>
644-
<groupId>org.apache.maven.plugins</groupId>
645-
<artifactId>maven-javadoc-plugin</artifactId>
646-
</plugin>
647640
<plugin>
648641
<artifactId>maven-dependency-plugin</artifactId>
649642
<groupId>org.apache.maven.plugins</groupId>
@@ -655,50 +648,4 @@
655648
</plugin>
656649
</plugins>
657650
</build>
658-
<!-- This profile uses the JAPICMP plugin to generate a report of changes between the release version and the latest version -->
659-
<!-- For more information on the plugin, see https://github.com/siom79/japicmp -->
660-
<profiles>
661-
<profile>
662-
<id>versiondiff</id>
663-
<build>
664-
<plugins>
665-
<plugin>
666-
<groupId>com.github.siom79.japicmp</groupId>
667-
<artifactId>japicmp-maven-plugin</artifactId>
668-
<version>0.5.0</version>
669-
<executions>
670-
<execution>
671-
<phase>verify</phase>
672-
<goals>
673-
<goal>cmp</goal>
674-
</goals>
675-
</execution>
676-
</executions>
677-
<configuration>
678-
<oldVersion>
679-
<dependency>
680-
<groupId>software.amazon.awssdk</groupId>
681-
<artifactId>aws-java-sdk</artifactId>
682-
<version>RELEASE</version>
683-
</dependency>
684-
</oldVersion>
685-
<newVersion>
686-
<file>
687-
<path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path>
688-
</file>
689-
</newVersion>
690-
<parameter>
691-
<onlyModified>true</onlyModified>
692-
<accessModifier>public</accessModifier>
693-
<breakBuildOnModifications>false</breakBuildOnModifications>
694-
<breakBuildOnBinaryIncompatibleModifications>false
695-
</breakBuildOnBinaryIncompatibleModifications>
696-
<onlyBinaryIncompatible>false</onlyBinaryIncompatible>
697-
</parameter>
698-
</configuration>
699-
</plugin>
700-
</plugins>
701-
</build>
702-
</profile>
703-
</profiles>
704651
</project>

0 commit comments

Comments
 (0)