Skip to content

Commit cdb07f6

Browse files
Merge pull request #1925 from aws/staging/626de335-4865-44d6-9b55-006a73f73f17
Pull request: release <- staging/626de335-4865-44d6-9b55-006a73f73f17
2 parents 6fb5319 + f8e9877 commit cdb07f6

File tree

374 files changed

+558
-513
lines changed

Some content is hidden

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

374 files changed

+558
-513
lines changed

.changes/2.17.125.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"version": "2.17.125",
3+
"date": "2022-02-07",
4+
"entries": [
5+
{
6+
"type": "feature",
7+
"category": "AWS Systems Manager Incident Manager",
8+
"contributor": "",
9+
"description": "Update RelatedItem enum to support SSM Automation"
10+
},
11+
{
12+
"type": "feature",
13+
"category": "Synthetics",
14+
"contributor": "",
15+
"description": "Adding names parameters to the Describe APIs."
16+
},
17+
{
18+
"type": "feature",
19+
"category": "Amazon EventBridge",
20+
"contributor": "",
21+
"description": "Documentation updates for EventBridge"
22+
},
23+
{
24+
"type": "feature",
25+
"category": "AWS Audit Manager",
26+
"contributor": "",
27+
"description": "This release updates 3 API parameters. UpdateAssessmentFrameworkControlSet now requires the controls attribute, and CreateAssessmentFrameworkControl requires the id attribute. Additionally, UpdateAssessmentFramework now has a minimum length constraint for the controlSets attribute."
28+
}
29+
]
30+
}

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# __2.17.125__ __2022-02-07__
2+
## __AWS Audit Manager__
3+
- ### Features
4+
- This release updates 3 API parameters. UpdateAssessmentFrameworkControlSet now requires the controls attribute, and CreateAssessmentFrameworkControl requires the id attribute. Additionally, UpdateAssessmentFramework now has a minimum length constraint for the controlSets attribute.
5+
6+
## __AWS Systems Manager Incident Manager__
7+
- ### Features
8+
- Update RelatedItem enum to support SSM Automation
9+
10+
## __Amazon EventBridge__
11+
- ### Features
12+
- Documentation updates for EventBridge
13+
14+
## __Synthetics__
15+
- ### Features
16+
- Adding names parameters to the Describe APIs.
17+
118
# __2.17.124__ __2022-02-04__
219
## __AWS Lake Formation__
320
- ### Features

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ To automatically manage module versions (currently all modules have the same ver
5252
<dependency>
5353
<groupId>software.amazon.awssdk</groupId>
5454
<artifactId>bom</artifactId>
55-
<version>2.17.124</version>
55+
<version>2.17.125</version>
5656
<type>pom</type>
5757
<scope>import</scope>
5858
</dependency>
@@ -86,12 +86,12 @@ Alternatively you can add dependencies for the specific services you use only:
8686
<dependency>
8787
<groupId>software.amazon.awssdk</groupId>
8888
<artifactId>ec2</artifactId>
89-
<version>2.17.124</version>
89+
<version>2.17.125</version>
9090
</dependency>
9191
<dependency>
9292
<groupId>software.amazon.awssdk</groupId>
9393
<artifactId>s3</artifactId>
94-
<version>2.17.124</version>
94+
<version>2.17.125</version>
9595
</dependency>
9696
```
9797

@@ -103,7 +103,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please
103103
<dependency>
104104
<groupId>software.amazon.awssdk</groupId>
105105
<artifactId>aws-sdk-java</artifactId>
106-
<version>2.17.124</version>
106+
<version>2.17.125</version>
107107
</dependency>
108108
```
109109

archetypes/archetype-app-quickstart/pom.xml

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

archetypes/archetype-app-quickstart/src/main/resources/archetype-resources/pom.xml

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@
1616
<exec-maven-plugin.version>1.6.0</exec-maven-plugin.version>
1717
<aws.java.sdk.version>${javaSdkVersion}</aws.java.sdk.version>
1818
<slf4j.version>1.7.28</slf4j.version>
19-
<graalvm.version>21.0.0</graalvm.version>
19+
#if( $nativeImage == 'true')
20+
<graalvm.native.maven.plugin.version>0.9.6</graalvm.native.maven.plugin.version>
21+
#end
2022
<junit5.version>5.8.1</junit5.version>
2123
</properties>
2224

@@ -83,15 +85,6 @@
8385
</dependency>
8486
#end
8587

86-
#if( $nativeImage == 'true')
87-
<dependency>
88-
<groupId>org.graalvm.sdk</groupId>
89-
<artifactId>graal-sdk</artifactId>
90-
<version>${graalvm.version}</version>
91-
<scope>provided</scope>
92-
</dependency>
93-
#end
94-
9588
<!-- Test Dependencies -->
9689
<dependency>
9790
<groupId>org.junit.jupiter</groupId>
@@ -118,13 +111,14 @@
118111
<build>
119112
<plugins>
120113
<plugin>
121-
<groupId>org.graalvm.nativeimage</groupId>
122-
<artifactId>native-image-maven-plugin</artifactId>
123-
<version>${graalvm.version}</version>
114+
<groupId>org.graalvm.buildtools</groupId>
115+
<artifactId>native-maven-plugin</artifactId>
116+
<version>${graalvm.native.maven.plugin.version}</version>
124117
<executions>
125118
<execution>
119+
<id>build-native</id>
126120
<goals>
127-
<goal>native-image</goal>
121+
<goal>build</goal>
128122
</goals>
129123
<phase>package</phase>
130124
</execution>

archetypes/archetype-app-quickstart/src/test/resources/projects/apachehttpclient/reference/pom.xml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<exec-maven-plugin.version>1.6.0</exec-maven-plugin.version>
1616
<aws.java.sdk.version>2.11.0</aws.java.sdk.version>
1717
<slf4j.version>1.7.28</slf4j.version>
18-
<graalvm.version>21.0.0</graalvm.version>
18+
<graalvm.native.maven.plugin.version>0.9.6</graalvm.native.maven.plugin.version>
1919
<junit5.version>5.8.1</junit5.version>
2020
</properties>
2121

@@ -78,13 +78,6 @@
7878
<version>${slf4j.version}</version>
7979
</dependency>
8080

81-
<dependency>
82-
<groupId>org.graalvm.sdk</groupId>
83-
<artifactId>graal-sdk</artifactId>
84-
<version>${graalvm.version}</version>
85-
<scope>provided</scope>
86-
</dependency>
87-
8881
<!-- Test Dependencies -->
8982
<dependency>
9083
<groupId>org.junit.jupiter</groupId>
@@ -110,13 +103,14 @@
110103
<build>
111104
<plugins>
112105
<plugin>
113-
<groupId>org.graalvm.nativeimage</groupId>
114-
<artifactId>native-image-maven-plugin</artifactId>
115-
<version>${graalvm.version}</version>
106+
<groupId>org.graalvm.buildtools</groupId>
107+
<artifactId>native-maven-plugin</artifactId>
108+
<version>${graalvm.native.maven.plugin.version}</version>
116109
<executions>
117110
<execution>
111+
<id>build-native</id>
118112
<goals>
119-
<goal>native-image</goal>
113+
<goal>build</goal>
120114
</goals>
121115
<phase>package</phase>
122116
</execution>

archetypes/archetype-app-quickstart/src/test/resources/projects/apachehttpclientwithoutnativeimage/reference/pom.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
<exec-maven-plugin.version>1.6.0</exec-maven-plugin.version>
1616
<aws.java.sdk.version>2.11.0</aws.java.sdk.version>
1717
<slf4j.version>1.7.28</slf4j.version>
18-
<graalvm.version>21.0.0</graalvm.version>
1918
<junit5.version>5.8.1</junit5.version>
2019
</properties>
2120

@@ -78,7 +77,6 @@
7877
<version>${slf4j.version}</version>
7978
</dependency>
8079

81-
8280
<!-- Test Dependencies -->
8381
<dependency>
8482
<groupId>org.junit.jupiter</groupId>

archetypes/archetype-app-quickstart/src/test/resources/projects/nettyclient/reference/pom.xml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<exec-maven-plugin.version>1.6.0</exec-maven-plugin.version>
1616
<aws.java.sdk.version>2.11.0</aws.java.sdk.version>
1717
<slf4j.version>1.7.28</slf4j.version>
18-
<graalvm.version>21.0.0</graalvm.version>
18+
<graalvm.native.maven.plugin.version>0.9.6</graalvm.native.maven.plugin.version>
1919
<junit5.version>5.8.1</junit5.version>
2020
</properties>
2121

@@ -65,13 +65,6 @@
6565
</dependency>
6666

6767

68-
<dependency>
69-
<groupId>org.graalvm.sdk</groupId>
70-
<artifactId>graal-sdk</artifactId>
71-
<version>${graalvm.version}</version>
72-
<scope>provided</scope>
73-
</dependency>
74-
7568
<!-- Test Dependencies -->
7669
<dependency>
7770
<groupId>org.junit.jupiter</groupId>
@@ -97,13 +90,14 @@
9790
<build>
9891
<plugins>
9992
<plugin>
100-
<groupId>org.graalvm.nativeimage</groupId>
101-
<artifactId>native-image-maven-plugin</artifactId>
102-
<version>${graalvm.version}</version>
93+
<groupId>org.graalvm.buildtools</groupId>
94+
<artifactId>native-maven-plugin</artifactId>
95+
<version>${graalvm.native.maven.plugin.version}</version>
10396
<executions>
10497
<execution>
98+
<id>build-native</id>
10599
<goals>
106-
<goal>native-image</goal>
100+
<goal>build</goal>
107101
</goals>
108102
<phase>package</phase>
109103
</execution>

archetypes/archetype-app-quickstart/src/test/resources/projects/urlhttpclient/reference/pom.xml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<exec-maven-plugin.version>1.6.0</exec-maven-plugin.version>
1616
<aws.java.sdk.version>2.11.0</aws.java.sdk.version>
1717
<slf4j.version>1.7.28</slf4j.version>
18-
<graalvm.version>21.0.0</graalvm.version>
18+
<graalvm.native.maven.plugin.version>0.9.6</graalvm.native.maven.plugin.version>
1919
<junit5.version>5.8.1</junit5.version>
2020
</properties>
2121

@@ -65,13 +65,6 @@
6565
</dependency>
6666

6767

68-
<dependency>
69-
<groupId>org.graalvm.sdk</groupId>
70-
<artifactId>graal-sdk</artifactId>
71-
<version>${graalvm.version}</version>
72-
<scope>provided</scope>
73-
</dependency>
74-
7568
<!-- Test Dependencies -->
7669
<dependency>
7770
<groupId>org.junit.jupiter</groupId>
@@ -97,13 +90,14 @@
9790
<build>
9891
<plugins>
9992
<plugin>
100-
<groupId>org.graalvm.nativeimage</groupId>
101-
<artifactId>native-image-maven-plugin</artifactId>
102-
<version>${graalvm.version}</version>
93+
<groupId>org.graalvm.buildtools</groupId>
94+
<artifactId>native-maven-plugin</artifactId>
95+
<version>${graalvm.native.maven.plugin.version}</version>
10396
<executions>
10497
<execution>
98+
<id>build-native</id>
10599
<goals>
106-
<goal>native-image</goal>
100+
<goal>build</goal>
107101
</goals>
108102
<phase>package</phase>
109103
</execution>

archetypes/archetype-lambda/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<artifactId>archetypes</artifactId>
2222
<groupId>software.amazon.awssdk</groupId>
23-
<version>2.17.124</version>
23+
<version>2.17.125</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626
<artifactId>archetype-lambda</artifactId>

archetypes/archetype-tools/pom.xml

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

archetypes/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<artifactId>aws-sdk-java-pom</artifactId>
2222
<groupId>software.amazon.awssdk</groupId>
23-
<version>2.17.124</version>
23+
<version>2.17.125</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626
<artifactId>archetypes</artifactId>

aws-sdk-java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<groupId>software.amazon.awssdk</groupId>
1919
<artifactId>aws-sdk-java-pom</artifactId>
20-
<version>2.17.124</version>
20+
<version>2.17.125</version>
2121
<relativePath>../pom.xml</relativePath>
2222
</parent>
2323
<artifactId>aws-sdk-java</artifactId>

bom-internal/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<artifactId>aws-sdk-java-pom</artifactId>
2222
<groupId>software.amazon.awssdk</groupId>
23-
<version>2.17.124</version>
23+
<version>2.17.125</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626

bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<groupId>software.amazon.awssdk</groupId>
1919
<artifactId>aws-sdk-java-pom</artifactId>
20-
<version>2.17.124</version>
20+
<version>2.17.125</version>
2121
<relativePath>../pom.xml</relativePath>
2222
</parent>
2323
<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.17.124</version>
24+
<version>2.17.125</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
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>software.amazon.awssdk</groupId>
2424
<artifactId>aws-sdk-java-pom</artifactId>
25-
<version>2.17.124</version>
25+
<version>2.17.125</version>
2626
<relativePath>../pom.xml</relativePath>
2727
</parent>
2828
<artifactId>codegen-lite-maven-plugin</artifactId>

codegen-lite/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.17.124</version>
24+
<version>2.17.125</version>
2525
</parent>
2626
<artifactId>codegen-lite</artifactId>
2727
<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.17.124</version>
25+
<version>2.17.125</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.17.124</version>
24+
<version>2.17.125</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
@@ -20,7 +20,7 @@
2020
<parent>
2121
<artifactId>core</artifactId>
2222
<groupId>software.amazon.awssdk</groupId>
23-
<version>2.17.124</version>
23+
<version>2.17.125</version>
2424
</parent>
2525
<modelVersion>4.0.0</modelVersion>
2626

core/arns/pom.xml

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

0 commit comments

Comments
 (0)