Skip to content

Commit 62ea40e

Browse files
authored
1.0.1 lambda-java-serialization release (#379)
* 1.0.1 lambda-java-serialization release
1 parent 04ef611 commit 62ea40e

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ This package defines the Lambda serialization logic using in the `aws-lambda-jav
154154
<dependency>
155155
<groupId>com.amazonaws</groupId>
156156
<artifactId>aws-lambda-java-serialization</artifactId>
157-
<version>1.0.0</version>
157+
<version>1.0.1</version>
158158
</dependency>
159159
```
160160

Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### November 21, 2022
2+
`1.0.1`:
3+
- Updated `jackson-databind` dependency from 2.12.6.1 to 2.13.4.1
4+
15
### December 01, 2020
26
`1.0.0`:
37
- Initial release of AWS Lambda Java Serialization

aws-lambda-java-serialization/pom.xml

+6-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.amazonaws</groupId>
66
<artifactId>aws-lambda-java-serialization</artifactId>
7-
<version>1.0.0</version>
7+
<version>1.0.1</version>
88
<packaging>jar</packaging>
99

1010
<name>AWS Lambda Java Runtime Serialization</name>
@@ -32,6 +32,8 @@
3232
<maven.compiler.source>1.8</maven.compiler.source>
3333
<maven.compiler.target>1.8</maven.compiler.target>
3434
<relocation.prefix>com.amazonaws.lambda.thirdparty</relocation.prefix>
35+
<junit.version>5.9.1</junit.version>
36+
<owasp.version>7.3.2</owasp.version>
3537
</properties>
3638

3739
<!-- If you're adding a new dependency, make sure it and its dependencies are relocated in the shade stage below -->
@@ -55,13 +57,13 @@
5557
<dependency>
5658
<groupId>org.junit.jupiter</groupId>
5759
<artifactId>junit-jupiter-engine</artifactId>
58-
<version>5.8.2</version>
60+
<version>${junit.version}</version>
5961
<scope>test</scope>
6062
</dependency>
6163
<dependency>
6264
<groupId>org.junit.jupiter</groupId>
6365
<artifactId>junit-jupiter-params</artifactId>
64-
<version>5.8.2</version>
66+
<version>${junit.version}</version>
6567
<scope>test</scope>
6668
</dependency>
6769
<dependency>
@@ -85,7 +87,7 @@
8587
<plugin>
8688
<groupId>org.owasp</groupId>
8789
<artifactId>dependency-check-maven</artifactId>
88-
<version>5.3.2</version>
90+
<version>${owasp.version}</version>
8991
<executions>
9092
<execution>
9193
<phase>validate</phase>

0 commit comments

Comments
 (0)