Skip to content

Commit 709a8d4

Browse files
committed
4.5.0
1 parent c385603 commit 709a8d4

File tree

3 files changed

+40
-8
lines changed

3 files changed

+40
-8
lines changed

README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@ using different versions of Jetty, this repo provides a shaded version of the je
1111

1212
### Project News
1313

14+
**[Developer Blog][5]**
15+
1416
[HtmlUnit@mastodon][4] | [HtmlUnit@Twitter][3]
1517

16-
### Latest release Version 4.4.0 / July 28, 2024
18+
### Latest release Version 4.5.0 / October 20, 2024
1719

1820
### Maven
1921

@@ -23,7 +25,7 @@ Add to your `pom.xml`:
2325
<dependency>
2426
<groupId>org.htmlunit</groupId>
2527
<artifactId>htmlunit-websocket-client</artifactId>
26-
<version>4.4.0</version>
28+
<version>4.5.0</version>
2729
</dependency>
2830
```
2931

@@ -32,7 +34,7 @@ Add to your `pom.xml`:
3234
Add to your `build.gradle`:
3335

3436
```groovy
35-
implementation group: 'org.htmlunit', name: 'htmlunit-websocket-client', version: '4.4.0'
37+
implementation group: 'org.htmlunit', name: 'htmlunit-websocket-client', version: '4.5.0'
3638
```
3739

3840
### Last CI build
@@ -47,7 +49,7 @@ If you use maven please add:
4749
<dependency>
4850
<groupId>org.htmlunit</groupId>
4951
<artifactId>htmlunit-websocket-client</artifactId>
50-
<version>4.5.0-SNAPSHOT</version>
52+
<version>4.6.0-SNAPSHOT</version>
5153
</dependency>
5254

5355
You have to add the sonatype snapshot repository to your pom `repositories` section also:
@@ -130,8 +132,12 @@ This part is intended for committer who are packaging a release.
130132
* append
131133
* htmlunit-websocket-client-4.x.x.jar
132134
* htmlunit-websocket-client-4.x.x.jar.asc
135+
* htmlunit-websocket-client-4.x.x.pom
136+
* htmlunit-websocket-client-4.x.x.pom.asc
133137
* htmlunit-websocket-client-4.x.x-javadoc.jar
134138
* htmlunit-websocket-client-4.x.x-javadoc.jar.asc
139+
* htmlunit-websocket-client-4.x.x-sources.jar
140+
* htmlunit-websocket-client-4.x.x-sources.jar.asc
135141
* and publish the release
136142

137143
* Update the version number in pom.xml to start next snapshot development
@@ -153,4 +159,5 @@ Many thanks to all of you contributing to HtmlUnit/CSSParser/Rhino in the past.
153159

154160
[2]: https://jenkins.wetator.org/job/HtmlUnit%20-%20Websocket%20Client/ "HtmlUnit - Websocket Client CI"
155161
[3]: https://twitter.com/HtmlUnit "https://twitter.com/HtmlUnit"
156-
[4]: https://fosstodon.org/@HtmlUnit
162+
[4]: https://fosstodon.org/@HtmlUnit
163+
[5]: https://htmlunit.github.io/htmlunit-blog/

owasp-suppressions.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd">
3+
<suppress>
4+
<cve>CVE-2024-6763</cve>
5+
</suppress>
6+
</suppressions>

pom.xml

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>org.htmlunit</groupId>
77
<artifactId>htmlunit-websocket-client</artifactId>
8-
<version>4.5.0-SNAPSHOT</version>
8+
<version>4.5.0</version>
99

1010
<name>HtmlUnit WebSocket Client</name>
1111
<organization>
@@ -28,6 +28,8 @@
2828
<maven.compiler.target>8</maven.compiler.target>
2929

3030
<jetty.version>9.4.56.v20240826</jetty.version>
31+
32+
<dependencycheck.version>10.0.4</dependencycheck.version>
3133
</properties>
3234

3335
<dependencies>
@@ -40,6 +42,23 @@
4042

4143
<build>
4244
<plugins>
45+
<plugin>
46+
<groupId>org.owasp</groupId>
47+
<artifactId>dependency-check-maven</artifactId>
48+
<version>${dependencycheck.version}</version>
49+
<configuration>
50+
<suppressionFiles>owasp-suppressions.xml</suppressionFiles>
51+
<failBuildOnCVSS>0</failBuildOnCVSS>
52+
<assemblyAnalyzerEnabled>false</assemblyAnalyzerEnabled>
53+
</configuration>
54+
<executions>
55+
<execution>
56+
<goals>
57+
<goal>check</goal>
58+
</goals>
59+
</execution>
60+
</executions>
61+
</plugin>
4362
<plugin>
4463
<groupId>org.apache.maven.plugins</groupId>
4564
<artifactId>maven-enforcer-plugin</artifactId>
@@ -137,7 +156,7 @@
137156
<plugin>
138157
<groupId>org.apache.maven.plugins</groupId>
139158
<artifactId>maven-javadoc-plugin</artifactId>
140-
<version>3.8.0</version>
159+
<version>3.10.1</version>
141160
<configuration>
142161
<quiet>true</quiet>
143162
<!-- see https://stackoverflow.com/questions/69320220/maven-javadoc-listed-classes-twice -->
@@ -161,7 +180,7 @@
161180
<plugin>
162181
<groupId>org.apache.maven.plugins</groupId>
163182
<artifactId>maven-gpg-plugin</artifactId>
164-
<version>3.2.4</version>
183+
<version>3.2.7</version>
165184
<executions>
166185
<execution>
167186
<phase>verify</phase>

0 commit comments

Comments
 (0)