Skip to content

Commit 9913ab1

Browse files
committed
version 4.12.0
1 parent 9a57977 commit 9913ab1

4 files changed

Lines changed: 18 additions & 15 deletions

File tree

README.md

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

3-
HtmlUnitDriver is a WebDriver compatible driver for the [HtmlUnit](http://htmlunit.sourceforge.net/) headless browser.
3+
HtmlUnitDriver is a WebDriver compatible driver for the [HtmlUnit](https://www.htmlunit.org) headless browser.
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

77
##### News
8-
[<img src="http://htmlunit.sourceforge.net/images/logos/twitter.png" alt="Twitter" height="44" width="60">](https://twitter.com/HtmlUnit)
8+
[<img src="https://www.htmlunit.org/images/logos/twitter.png" alt="Twitter" height="44" width="60">](https://twitter.com/HtmlUnit)
99

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

@@ -15,8 +15,8 @@ There are two versions available
1515

1616
### Selenium compatibility
1717

18-
Starting with Selenium 4.5 we use the same version numbers for the driver - e.g. HtmlUnit-Driver 4.11.0
19-
is for Selenium 4.11.0.
18+
Starting with Selenium 4.5 we use the same version numbers for the driver - e.g. HtmlUnit-Driver 4.12.0
19+
is for Selenium 4.12.0.
2020

2121
Because there are so many tools working on top HtmlUnitDriver, we now maintain two version (artifact id's).
2222

@@ -30,7 +30,8 @@ For an overview please check the following tables:
3030

3131
| selenium | htmlunit-driver | htmlunit | artifactId |
3232
|----------|-----------------|-----------------|------------------|
33-
| 4.11.0 | **4.11.0** | 3.4.0 | htmlunit3-driver |
33+
| 4.12.0 | **4.12.0** | 3.5.0 | htmlunit3-driver |
34+
| 4.11.0 | 4.11.0 | 3.4.0 | htmlunit3-driver |
3435
| 4.10.0 | 4.10.0 | 3.3.0 | htmlunit3-driver |
3536
| 4.9.1 | 4.9.1 | 3.2.0 | htmlunit3-driver |
3637
| 4.9.0 | 4.9.0 | 3.1.0 | htmlunit3-driver |
@@ -42,7 +43,8 @@ For an overview please check the following tables:
4243

4344
| selenium | htmlunit-driver | htmlunit | artifactId |
4445
|----------|-----------------|-----------------|------------------|
45-
| 4.11.0 | **4.11.0** | 2.70.0 | htmlunit-driver |
46+
| 4.12.0 | **4.12.0** | 2.70.0 | htmlunit-driver |
47+
| 4.11.0 | 4.11.0 | 2.70.0 | htmlunit-driver |
4648
| 4.10.0 | 4.10.0 | 2.70.0 | htmlunit-driver |
4749
| 4.9.1 | 4.9.1 | 2.70.0 | htmlunit-driver |
4850
| 4.9.0 | 4.9.0 | 2.70.0 | htmlunit-driver |
@@ -87,14 +89,14 @@ Add to your `pom.xml`:
8789
<dependency>
8890
<groupId>org.seleniumhq.selenium</groupId>
8991
<artifactId>htmlunit3-driver</artifactId>
90-
<version>4.11.0</version>
92+
<version>4.12.0</version>
9193
</dependency>
9294
```
9395

9496
Add to your `build.gradle`:
9597

9698
```groovy
97-
implementation group: 'org.seleniumhq.selenium', name: 'htmlunit3-driver', version: '4.11.0'
99+
implementation group: 'org.seleniumhq.selenium', name: 'htmlunit3-driver', version: '4.12.0'
98100
```
99101

100102

owasp-suppressions.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<cve>CVE-2022-41881</cve>
1111
<cve>CVE-2021-21409</cve>
1212
<cve>CVE-2021-43797</cve>
13+
<cve>CVE-2023-4586</cve>
1314
</suppress>
1415

1516
<suppress>

pom.xml

Lines changed: 6 additions & 6 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.11.0</version>
8+
<version>4.12.0</version>
99

1010
<name>htmlunit-driver</name>
1111
<description>WebDriver compatible driver for HtmlUnit headless browser</description>
@@ -18,15 +18,15 @@
1818
<maven.compiler.source>8</maven.compiler.source>
1919
<maven.compiler.target>8</maven.compiler.target>
2020

21-
<selenium.version>4.11.0</selenium.version>
22-
<htmlunit.version>3.4.0</htmlunit.version>
21+
<selenium.version>4.12.0</selenium.version>
22+
<htmlunit.version>3.5.0</htmlunit.version>
2323

2424
<jetty.version>9.4.51.v20230217</jetty.version>
2525

2626
<checkstyle.version>9.3</checkstyle.version>
2727
<spotbugs.version>4.7.3</spotbugs.version>
28-
<archunit.version>1.0.1</archunit.version>
29-
<dependencycheck.version>8.3.1</dependencycheck.version>
28+
<archunit.version>1.1.0</archunit.version>
29+
<dependencycheck.version>8.4.0</dependencycheck.version>
3030
</properties>
3131

3232
<licenses>
@@ -317,7 +317,7 @@
317317
<plugin>
318318
<groupId>org.apache.maven.plugins</groupId>
319319
<artifactId>maven-gpg-plugin</artifactId>
320-
<version>3.0.1</version>
320+
<version>3.1.0</version>
321321
<executions>
322322
<execution>
323323
<phase>verify</phase>

src/main/java/org/openqa/selenium/htmlunit/HtmlUnitDriver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106

107107
/**
108108
* An implementation of {@link WebDriver} that drives
109-
* <a href="http://htmlunit.sourceforge.net/">HtmlUnit</a>, which is a headless
109+
* <a href="https://www.htmlunit.org">HtmlUnit</a>, which is a headless
110110
* (GUI-less) browser simulator.
111111
* <p>
112112
* The main supported browsers are Chrome, Edge, Firefox and Internet Explorer.

0 commit comments

Comments
 (0)