Skip to content

Commit 0db759f

Browse files
committed
4.27.0
1 parent 22fc221 commit 0db759f

File tree

3 files changed

+22
-16
lines changed

3 files changed

+22
-16
lines changed

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,12 @@ HtmlUnitDriver is a WebDriver compatible driver for the [HtmlUnit](https://www.h
44

55
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.seleniumhq.selenium/htmlunit3-driver/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.seleniumhq.selenium/htmlunit3-driver)
66

7-
##### News
8-
[<img src="https://www.htmlunit.org/images/logos/twitter.png" alt="Twitter" height="44" width="60">](https://twitter.com/HtmlUnit)
7+
## News
8+
9+
**[Developer Blog][15]**
10+
11+
[HtmlUnit@mastodon](https://fosstodon.org/@HtmlUnit) | [HtmlUnit@LinkedIn](https://www.linkedin.com/in/ronald-brill-a93271197/) | [HtmlUnit@Twitter](https://twitter.com/HtmlUnit)
12+
913

1014
[![Build Status](https://jenkins.wetator.org/buildStatus/icon?job=HtmlUnitDriver+-+Selenium+4)](https://jenkins.wetator.org/view/HtmlUnit%20Driver/job/HtmlUnitDriver%20-%20Selenium%204/)
1115

@@ -29,7 +33,7 @@ Add to your `pom.xml`:
2933
<dependency>
3034
<groupId>org.seleniumhq.selenium</groupId>
3135
<artifactId>htmlunit3-driver</artifactId>
32-
<version>4.26.0</version>
36+
<version>4.27.0</version>
3337
</dependency>
3438
```
3539

@@ -38,7 +42,7 @@ Add to your `pom.xml`:
3842
Add to your `build.gradle`:
3943

4044
```groovy
41-
implementation group: 'org.seleniumhq.selenium', name: 'htmlunit3-driver', version: '4.26.0'
45+
implementation group: 'org.seleniumhq.selenium', name: 'htmlunit3-driver', version: '4.27.0'
4246
```
4347

4448

compatibility.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
# Htmlunitdriver - Selenium Compatibility
22

3-
Starting with Selenium 4.5 we use the same version numbers for the driver - e.g. HtmlUnit-Driver 4.26.0
4-
is for Selenium 4.26.0.
3+
Starting with Selenium 4.5 we use the same version numbers for the driver - e.g. HtmlUnit-Driver 4.27.0
4+
is for Selenium 4.27.0.
55

66

77
***htmlunit3-driver***
88

99
| selenium | htmlunit-driver | htmlunit | artifactId | JDK |
1010
|----------|-----------------|----------------|------------------|------|
11-
| 4.26.0 | **4.26.0** | **4.6.0** | htmlunit3-driver | 11 |
11+
| 4.27.0 | **4.27.0** | **4.7.0** | htmlunit3-driver | 11 |
12+
| 4.26.0 | 4.26.0 | 4.6.0 | htmlunit3-driver | 11 |
1213
| 4.25.0 | 4.25.0 | 4.5.0 | htmlunit3-driver | 11 |
1314
| 4.23.0 | 4.23.0 | 4.4.0 | htmlunit3-driver | 11 |
1415
| 4.22.0 | 4.22.0 | 4.3.0 | htmlunit3-driver | 11 |

pom.xml

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

66
<groupId>org.seleniumhq.selenium</groupId>
77
<artifactId>htmlunit3-driver</artifactId>
8-
<version>4.26.0</version>
8+
<version>4.27.0</version>
99

1010
<name>${project.artifactId}</name>
1111
<description>WebDriver compatible driver for HtmlUnit headless browser</description>
@@ -18,13 +18,13 @@
1818
<maven.compiler.source>11</maven.compiler.source>
1919
<maven.compiler.target>11</maven.compiler.target>
2020

21-
<selenium.version>4.26.0</selenium.version>
22-
<selenium.devtools.artifactId>selenium-devtools-v130</selenium.devtools.artifactId>
23-
<htmlunit.version>4.6.0</htmlunit.version>
21+
<selenium.version>4.27.0</selenium.version>
22+
<selenium.devtools.artifactId>selenium-devtools-v131</selenium.devtools.artifactId>
23+
<htmlunit.version>4.7.0</htmlunit.version>
2424

2525
<jetty.version>9.4.56.v20240826</jetty.version>
2626

27-
<checkstyle.version>10.18.2</checkstyle.version>
27+
<checkstyle.version>10.20.1</checkstyle.version>
2828
<spotbugs.version>4.8.6</spotbugs.version>
2929
<archunit.version>1.3.0</archunit.version>
3030
<dependencycheck.version>10.0.4</dependencycheck.version>
@@ -205,7 +205,7 @@
205205
<plugin>
206206
<groupId>org.apache.maven.plugins</groupId>
207207
<artifactId>maven-checkstyle-plugin</artifactId>
208-
<version>3.5.0</version>
208+
<version>3.6.0</version>
209209
<configuration>
210210
<configLocation>checkstyle.xml</configLocation>
211211
<suppressionsLocation>checkstyle_suppressions.xml</suppressionsLocation>
@@ -222,7 +222,7 @@
222222
<plugin>
223223
<groupId>com.github.spotbugs</groupId>
224224
<artifactId>spotbugs-maven-plugin</artifactId>
225-
<version>4.8.6.4</version>
225+
<version>4.8.6.6</version>
226226
<dependencies>
227227
<dependency>
228228
<groupId>com.github.spotbugs</groupId>
@@ -251,7 +251,7 @@
251251
<plugin>
252252
<groupId>org.apache.maven.plugins</groupId>
253253
<artifactId>maven-javadoc-plugin</artifactId>
254-
<version>3.10.1</version>
254+
<version>3.11.1</version>
255255
<configuration>
256256
<quiet>true</quiet>
257257
<detectLinks>true</detectLinks>
@@ -268,7 +268,7 @@
268268
<plugin>
269269
<groupId>org.apache.maven.plugins</groupId>
270270
<artifactId>maven-surefire-plugin</artifactId>
271-
<version>3.5.1</version>
271+
<version>3.5.2</version>
272272
<configuration>
273273
<includes>
274274
<include>**/*.java</include>
@@ -296,6 +296,7 @@
296296
<suppressionFiles>owasp-suppressions.xml</suppressionFiles>
297297
<failBuildOnCVSS>0</failBuildOnCVSS>
298298
<assemblyAnalyzerEnabled>false</assemblyAnalyzerEnabled>
299+
<nvdDatafeedUrl>https://mirror.cveb.in/nvd/json/cve/1.1/nvdcve-1.1-{0}.json.gz</nvdDatafeedUrl>
299300
</configuration>
300301
<executions>
301302
<execution>

0 commit comments

Comments
 (0)