Skip to content

Commit 056be3c

Browse files
Update project dependencies to latest versions
1 parent eb71dbd commit 056be3c

File tree

4 files changed

+38
-13
lines changed

4 files changed

+38
-13
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,23 @@
88
* Updated AbstractRequest to remove deprecated methods uploadFileItems and readBytes (were protected static). Use StreamUtils instead.
99
* Replaced org.apache.tika:tika library with org.overviewproject:mime-types in FileUtil to validate uploaded file mime types.
1010
* Updated FileUtil to make file extension and mime type validation case insensitive.
11+
* Updated the following dependencies:
12+
* wcomponents-core:
13+
* com.google.code.gson:gson from 2.13.1 to 2.13.2
14+
* org.apache.commons:commons-lang3 from 3.18.0 to 3.20.0
15+
* commons-io:commons-io from 2.19.0 to 2.21.0
16+
* com.google.errorprone:error_prone_annotations from 2.39.0 to 2.46.0
17+
* org.apache.httpcomponents.client5:httpclient5 from 5.5 to 5.6
18+
* org.apache.httpcomponents.core5:httpcore5 from 5.3.4 to 5.4
19+
* wcomponents-test-lib:
20+
* io.github.bonigarcia:webdrivermanager from 6.1.0 to 6.3.3
21+
* org.apache.commons:commons-compress from 1.27.1 to 1.28.0
22+
* commons-codec:commons-codec from 1.18.0 to 1.20.0
23+
* com.google.guava:guava from 33.4.8-jre to 33.5.0-jre
24+
* net.java.dev.jna:jna from 5.17.0 to 5.18.1
25+
* wcomponents-bundle:
26+
* org.ehcache:ehcahce from 3.10.8 to 3.11.1
27+
* org.glassfish.jaxb:jaxb-runtime from 4.0.5 to 4.0.6
1128

1229
### Bug Fixes
1330

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
<dependency>
8686
<groupId>org.ehcache</groupId>
8787
<artifactId>ehcache</artifactId>
88-
<version>3.10.8</version>
88+
<version>3.11.1</version>
8989
<exclusions>
9090
<!-- Exclude jaxb runtime as ehcache has a wildcard dependency that breaks the build -->
9191
<exclusion>
@@ -107,7 +107,7 @@
107107
<dependency>
108108
<groupId>org.glassfish.jaxb</groupId>
109109
<artifactId>jaxb-runtime</artifactId>
110-
<version>4.0.5</version>
110+
<version>4.0.6</version>
111111
</dependency>
112112

113113
<!-- Servlet Interface -->

wcomponents-core/pom.xml

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@
218218
<dependency>
219219
<groupId>com.google.code.gson</groupId>
220220
<artifactId>gson</artifactId>
221-
<version>2.13.1</version>
221+
<version>2.13.2</version>
222222
<exclusions>
223223
<exclusion>
224224
<groupId>com.google.errorprone</groupId>
@@ -248,6 +248,14 @@
248248
<groupId>xerces</groupId>
249249
<artifactId>xercesImpl</artifactId>
250250
</exclusion>
251+
<exclusion>
252+
<groupId>commons-io</groupId>
253+
<artifactId>commons-io</artifactId>
254+
</exclusion>
255+
<exclusion>
256+
<groupId>org.apache.httpcomponents.core5</groupId>
257+
<artifactId>httpcore5</artifactId>
258+
</exclusion>
251259
</exclusions>
252260
</dependency>
253261
<dependency>
@@ -308,22 +316,22 @@
308316
<dependency>
309317
<groupId>org.apache.commons</groupId>
310318
<artifactId>commons-lang3</artifactId>
311-
<version>3.18.0</version>
319+
<version>3.20.0</version>
312320
</dependency>
313321
<dependency>
314322
<groupId>commons-io</groupId>
315323
<artifactId>commons-io</artifactId>
316-
<version>2.19.0</version>
324+
<version>2.21.0</version>
317325
</dependency>
318326
<dependency>
319327
<groupId>com.google.errorprone</groupId>
320328
<artifactId>error_prone_annotations</artifactId>
321-
<version>2.39.0</version>
329+
<version>2.46.0</version>
322330
</dependency>
323331
<dependency>
324332
<groupId>org.apache.httpcomponents.client5</groupId>
325333
<artifactId>httpclient5</artifactId>
326-
<version>5.5</version>
334+
<version>5.6</version>
327335
<exclusions>
328336
<exclusion>
329337
<groupId>org.slf4j</groupId>
@@ -334,7 +342,7 @@
334342
<dependency>
335343
<groupId>org.apache.httpcomponents.core5</groupId>
336344
<artifactId>httpcore5</artifactId>
337-
<version>5.3.4</version>
345+
<version>5.4</version>
338346
</dependency>
339347

340348
<!-- Test dependencies -->

wcomponents-test-lib/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
<dependency>
8080
<groupId>io.github.bonigarcia</groupId>
8181
<artifactId>webdrivermanager</artifactId>
82-
<version>6.1.0</version>
82+
<version>6.3.3</version>
8383
<!-- Fix convergence -->
8484
<exclusions>
8585
<exclusion>
@@ -131,7 +131,7 @@
131131
<dependency>
132132
<groupId>org.apache.commons</groupId>
133133
<artifactId>commons-compress</artifactId>
134-
<version>1.27.1</version>
134+
<version>1.28.0</version>
135135
<!-- Fix convergence -->
136136
<exclusions>
137137
<exclusion>
@@ -151,12 +151,12 @@
151151
<dependency>
152152
<groupId>commons-codec</groupId>
153153
<artifactId>commons-codec</artifactId>
154-
<version>1.18.0</version>
154+
<version>1.20.0</version>
155155
</dependency>
156156
<dependency>
157157
<groupId>com.google.guava</groupId>
158158
<artifactId>guava</artifactId>
159-
<version>33.4.8-jre</version>
159+
<version>33.5.0-jre</version>
160160
<exclusions>
161161
<exclusion>
162162
<groupId>com.google.errorprone</groupId>
@@ -167,7 +167,7 @@
167167
<dependency>
168168
<groupId>net.java.dev.jna</groupId>
169169
<artifactId>jna</artifactId>
170-
<version>5.17.0</version>
170+
<version>5.18.1</version>
171171
</dependency>
172172

173173
<dependency>

0 commit comments

Comments
 (0)