Skip to content

Commit e63e900

Browse files
Merge pull request #207 from contentstack/staging
DX | 05-01-2026 | Release
2 parents f448d05 + dabf41f commit e63e900

File tree

4 files changed

+27
-7
lines changed

4 files changed

+27
-7
lines changed

.mvn/jvm.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-Xmx1024m

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2012 - 2025 Contentstack
3+
Copyright (c) 2012 - 2026 Contentstack
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

changelog.md

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

3+
## v1.10.1
4+
5+
### Jan 05, 2026
6+
7+
- Snyk Fixes
8+
39
## v1.10.0
410

511
### Oct 27, 2025

pom.xml

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<artifactId>cms</artifactId>
88
<packaging>jar</packaging>
99
<name>contentstack-management-java</name>
10-
<version>1.10.0</version>
10+
<version>1.10.1</version>
1111
<description>Contentstack Java Management SDK for Content Management API, Contentstack is a headless CMS with an
1212
API-first approach
1313
</description>
@@ -88,15 +88,15 @@
8888
<maven-source-plugin.version>2.2.1</maven-source-plugin.version>
8989
<maven-javadoc-plugin.version>3.0.0</maven-javadoc-plugin.version>
9090
<dotenv-source.version>5.2.2</dotenv-source.version>
91-
<rxjava-source.version>3.1.10</rxjava-source.version>
91+
<rxjava-source.version>3.1.12</rxjava-source.version>
9292
<retrofit-source.version>2.12.0</retrofit-source.version>
9393
<converter-gson-version>2.12.0</converter-gson-version>
94-
<okhttp.version>4.12.0</okhttp.version>
94+
<okhttp.version>5.1.0</okhttp.version>
9595
<jococo-plugin.version>0.8.13</jococo-plugin.version>
9696
<lombok-source.version>1.18.38</lombok-source.version>
9797
<junit-jupiter.version>5.11.4</junit-jupiter.version>
9898
<junit-jupiter-engine.version>5.10.1</junit-jupiter-engine.version>
99-
<gson.version>2.13.1</gson.version>
99+
<gson.version>2.13.2</gson.version>
100100
<maven-site-plugin.version>3.3</maven-site-plugin.version>
101101
<maven-gpg-plugin.version>1.5</maven-gpg-plugin.version>
102102
<maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
@@ -186,6 +186,13 @@
186186
<artifactId>json-simple</artifactId>
187187
<version>1.1.1</version>
188188
<scope>compile</scope>
189+
<exclusions>
190+
<!-- Exclude vulnerable junit 4.10 - not needed at runtime -->
191+
<exclusion>
192+
<groupId>junit</groupId>
193+
<artifactId>junit</artifactId>
194+
</exclusion>
195+
</exclusions>
189196
</dependency>
190197
<dependency>
191198
<groupId>javax.activation</groupId>
@@ -207,18 +214,24 @@
207214
<dependency>
208215
<groupId>org.jsoup</groupId>
209216
<artifactId>jsoup</artifactId>
210-
<version>1.20.1</version>
217+
<version>1.21.2</version>
211218
</dependency>
212219
<dependency>
213220
<groupId>org.jetbrains.kotlin</groupId>
214221
<artifactId>kotlin-stdlib</artifactId>
215-
<version>2.1.21</version>
222+
<version>2.2.21</version>
216223
</dependency>
217224
<dependency>
218225
<groupId>com.warrenstrange</groupId>
219226
<artifactId>googleauth</artifactId>
220227
<version>1.5.0</version>
221228
</dependency>
229+
<!-- Override vulnerable transitive dependency from googleauth -->
230+
<dependency>
231+
<groupId>org.apache.httpcomponents</groupId>
232+
<artifactId>httpclient</artifactId>
233+
<version>4.5.14</version>
234+
</dependency>
222235
</dependencies>
223236

224237

0 commit comments

Comments
 (0)