File tree 3 files changed +11
-5
lines changed
aws-lambda-java-serialization
3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ This package defines the Lambda serialization logic using in the `aws-lambda-jav
154
154
<dependency >
155
155
<groupId >com.amazonaws</groupId >
156
156
<artifactId >aws-lambda-java-serialization</artifactId >
157
- <version >1.0.0 </version >
157
+ <version >1.0.1 </version >
158
158
</dependency >
159
159
```
160
160
Original file line number Diff line number Diff line change
1
+ ### November 21, 2022
2
+ ` 1.0.1 ` :
3
+ - Updated ` jackson-databind ` dependency from 2.12.6.1 to 2.13.4.1
4
+
1
5
### December 01, 2020
2
6
` 1.0.0 ` :
3
7
- Initial release of AWS Lambda Java Serialization
Original file line number Diff line number Diff line change 4
4
5
5
<groupId >com.amazonaws</groupId >
6
6
<artifactId >aws-lambda-java-serialization</artifactId >
7
- <version >1.0.0 </version >
7
+ <version >1.0.1 </version >
8
8
<packaging >jar</packaging >
9
9
10
10
<name >AWS Lambda Java Runtime Serialization</name >
32
32
<maven .compiler.source>1.8</maven .compiler.source>
33
33
<maven .compiler.target>1.8</maven .compiler.target>
34
34
<relocation .prefix>com.amazonaws.lambda.thirdparty</relocation .prefix>
35
+ <junit .version>5.9.1</junit .version>
36
+ <owasp .version>7.3.2</owasp .version>
35
37
</properties >
36
38
37
39
<!-- If you're adding a new dependency, make sure it and its dependencies are relocated in the shade stage below -->
55
57
<dependency >
56
58
<groupId >org.junit.jupiter</groupId >
57
59
<artifactId >junit-jupiter-engine</artifactId >
58
- <version >5.8.2 </version >
60
+ <version >${junit.version} </version >
59
61
<scope >test</scope >
60
62
</dependency >
61
63
<dependency >
62
64
<groupId >org.junit.jupiter</groupId >
63
65
<artifactId >junit-jupiter-params</artifactId >
64
- <version >5.8.2 </version >
66
+ <version >${junit.version} </version >
65
67
<scope >test</scope >
66
68
</dependency >
67
69
<dependency >
85
87
<plugin >
86
88
<groupId >org.owasp</groupId >
87
89
<artifactId >dependency-check-maven</artifactId >
88
- <version >5.3.2 </version >
90
+ <version >${owasp.version} </version >
89
91
<executions >
90
92
<execution >
91
93
<phase >validate</phase >
You can’t perform that action at this time.
0 commit comments