Skip to content

Commit b12827f

Browse files
Add support for Hooks (#392)
* Added support for Hooks * Version bump to 2.0.12
1 parent 432e560 commit b12827f

110 files changed

Lines changed: 8159 additions & 95 deletions

File tree

Some content is hidden

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

pom.xml

Lines changed: 39 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>software.amazon.cloudformation</groupId>
55
<artifactId>aws-cloudformation-rpdk-java-plugin</artifactId>
6-
<version>2.0.11</version>
6+
<version>2.0.12</version>
77
<name>AWS CloudFormation RPDK Java Plugin</name>
88
<description>The CloudFormation Resource Provider Development Kit (RPDK) allows you to author your own resource providers that can be used by CloudFormation. This plugin library helps to provide runtime bindings for the execution of your providers by CloudFormation.
99
</description>
@@ -118,13 +118,43 @@
118118
<dependency>
119119
<groupId>com.amazonaws</groupId>
120120
<artifactId>aws-java-sdk-core</artifactId>
121-
<version>1.11.555</version>
121+
<version>1.11.1034</version>
122122
</dependency>
123123
<!-- https://mvnrepository.com/artifact/com.amazonaws/aws-lambda-java-core -->
124124
<dependency>
125125
<groupId>com.amazonaws</groupId>
126126
<artifactId>aws-lambda-java-core</artifactId>
127-
<version>1.2.0</version>
127+
<version>1.2.1</version>
128+
</dependency>
129+
<!-- https://mvnrepository.com/artifact/com.amazonaws/aws-lambda-java-log4j2 -->
130+
<dependency>
131+
<groupId>com.amazonaws</groupId>
132+
<artifactId>aws-lambda-java-log4j2</artifactId>
133+
<version>1.5.1</version>
134+
</dependency>
135+
<!--https://mvnrepository.com/artifact/com.amazonaws/aws-encryption-sdk-java -->
136+
<dependency>
137+
<groupId>com.amazonaws</groupId>
138+
<artifactId>aws-encryption-sdk-java</artifactId>
139+
<version>1.7.0</version>
140+
</dependency>
141+
<!-- https://mvnrepository.com/artifact/com.amazonaws/aws-java-sdk-sts -->
142+
<dependency>
143+
<groupId>com.amazonaws</groupId>
144+
<artifactId>aws-java-sdk-sts</artifactId>
145+
<version>1.11.1034</version>
146+
</dependency>
147+
<!-- https://mvnrepository.com/artifact/com.google.code.findbugs/annotations -->
148+
<dependency>
149+
<groupId>com.google.code.findbugs</groupId>
150+
<artifactId>annotations</artifactId>
151+
<version>3.0.0</version>
152+
</dependency>
153+
<!-- https://mvnrepository.com/artifact/com.amazonaws/aws-java-sdk-kms -->
154+
<dependency>
155+
<groupId>com.amazonaws</groupId>
156+
<artifactId>aws-java-sdk-kms</artifactId>
157+
<version>1.11.1034</version>
128158
</dependency>
129159
<!-- AWS Java SDK v2 Dependencies -->
130160
<dependency>
@@ -173,6 +203,12 @@
173203
<artifactId>commons-lang3</artifactId>
174204
<version>3.9</version>
175205
</dependency>
206+
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-collections4 -->
207+
<dependency>
208+
<groupId>org.apache.commons</groupId>
209+
<artifactId>commons-collections4</artifactId>
210+
<version>4.4</version>
211+
</dependency>
176212
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
177213
<dependency>
178214
<groupId>com.google.guava</groupId>

python/rpdk/java/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import logging
22

3-
__version__ = "2.0.11"
3+
__version__ = "2.0.12"
44

55
logging.getLogger(__name__).addHandler(logging.NullHandler())

0 commit comments

Comments
 (0)