Skip to content

Commit 88e4f6f

Browse files
authored
Merge pull request #312 from contentstack/fix/jsoup-xss
fix: pin jsoup to 1.23.1 to resolve XSS vulnerability
2 parents 28f3587 + d886d37 commit 88e4f6f

2 files changed

Lines changed: 12 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG
22

3+
## v2.8.1
4+
5+
### Aug 17, 2026
6+
- Snyk fixes
7+
38
## v2.8.0
49

510
### Jul 20, 2026

pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>com.contentstack.sdk</groupId>
77
<artifactId>java</artifactId>
8-
<version>2.8.0</version>
8+
<version>2.8.1</version>
99
<packaging>jar</packaging>
1010
<name>contentstack-java</name>
1111
<description>Java SDK for Contentstack Content Delivery API</description>
@@ -220,6 +220,12 @@
220220
<artifactId>commons-lang3</artifactId>
221221
<version>3.18.0</version>
222222
</dependency>
223+
<!-- Fix Cross-site Scripting (XSS) in jsoup pulled by contentstack-utils transitive deps -->
224+
<dependency>
225+
<groupId>org.jsoup</groupId>
226+
<artifactId>jsoup</artifactId>
227+
<version>1.23.1</version>
228+
</dependency>
223229
<!-- Fix Spring vulnerabilities from contentstack-utils transitive deps -->
224230
<dependency>
225231
<groupId>org.springframework</groupId>

0 commit comments

Comments
 (0)