Skip to content

Commit f340ed9

Browse files
authored
Bump jackson version to 2.18.6 (#1086)
* Bump jackson version to 2.18.6 * Fix java.lang.NoSuchMethodError: 'void com.fasterxml.jackson.core.util.BufferRecycler.releaseToPool()
1 parent f8aabf7 commit f340ed9

3 files changed

Lines changed: 10 additions & 4 deletions

File tree

gxazureserverless/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,12 @@
4444
<artifactId>cloudevents-json-jackson</artifactId>
4545
<version>4.0.1</version>
4646
</dependency>
47+
<!-- overwrite from io.cloudevents due to transitive CVEs -->
48+
<dependency>
49+
<groupId>com.fasterxml.jackson.core</groupId>
50+
<artifactId>jackson-core</artifactId>
51+
<version>${jackson.version}</version>
52+
</dependency>
4753

4854
<dependency>
4955
<groupId>com.azure</groupId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<jersey.jakarta.version>3.0.17</jersey.jakarta.version>
2323
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2424
<poi.version>5.4.1</poi.version>
25-
<jackson.version>2.16.2</jackson.version>
25+
<jackson.version>2.18.6</jackson.version>
2626
<junit.version>4.13.2</junit.version>
2727
<software.awssdk.version>2.40.8</software.awssdk.version>
2828
<software.azure.cosmos.version>4.74.0</software.azure.cosmos.version>

wrapperjakarta/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,19 +76,19 @@
7676
<dependency>
7777
<groupId>com.fasterxml.jackson.core</groupId>
7878
<artifactId>jackson-core</artifactId>
79-
<version>2.15.2</version>
79+
<version>${jackson.version}</version>
8080
</dependency>
8181

8282
<dependency>
8383
<groupId>com.fasterxml.jackson.core</groupId>
8484
<artifactId>jackson-annotations</artifactId>
85-
<version>2.15.2</version>
85+
<version>${jackson.version}</version>
8686
</dependency>
8787

8888
<dependency>
8989
<groupId>com.fasterxml.jackson.core</groupId>
9090
<artifactId>jackson-databind</artifactId>
91-
<version>2.15.2</version>
91+
<version>${jackson.version}</version>
9292
</dependency>
9393

9494
<dependency>

0 commit comments

Comments
 (0)