Skip to content

Commit

Permalink
version 4.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Mar 20, 2023
1 parent e67542f commit 3508969
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 9 deletions.
10 changes: 6 additions & 4 deletions README.md
Expand Up @@ -15,13 +15,14 @@ There are two versions available

### Selenium compatibility

Starting with Selenium 4.5 we use the same version numbers for the driver - e.g. HtmlUnit-Driver 4.7.0
is for Selenium 4.7.0.
Starting with Selenium 4.5 we use the same version numbers for the driver - e.g. HtmlUnit-Driver 4.8.1
is for Selenium 4.8.1.

For older versions and Selenium 3 please check the following table:

| selenium | htmlunit-driver | htmlunit |
|----------|-----------------|-----------------|
| 4.8.1 | 4.8.1 | 3.0.0 |
| 4.8.0 | 4.8.0 | 2.70.0 |
| | | |
| 4.7.2 | 4.7.2 | 2.67.0 |
Expand All @@ -38,6 +39,7 @@ For older versions and Selenium 3 please check the following table:
| 4.1.0 | 3.56.0 - 3.60.0 | 2.56.0 - 2.60.0 |
| 4.0.0 | 3.55.0 | 3.55.0 |
| | | |
| 3.141.59 | 2.70.0 | 2.70.0 |
| 3.141.59 | 2.67.0 | 2.67.0 |
| 3.141.59 | 2.66.0 | 2.66.0 |
| 3.141.59 | 2.65.0 | 2.65.1 |
Expand All @@ -58,14 +60,14 @@ Add to your `pom.xml`:
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>htmlunit-driver</artifactId>
<version>4.8.0</version>
<version>4.8.1</version>
</dependency>
```

Add to your `build.gradle`:

```groovy
implementation group: 'org.seleniumhq.selenium', name: 'htmlunit-driver', version: '4.8.0'
implementation group: 'org.seleniumhq.selenium', name: 'htmlunit-driver', version: '4.8.1'
```


Expand Down
5 changes: 5 additions & 0 deletions owasp-suppressions.xml
Expand Up @@ -40,4 +40,9 @@
<cve>CVE-2022-41881</cve>
<cve>CVE-2021-21409</cve>
</suppress>

<suppress>
<filePath regex="true">.*guava-31\.1-jre\.jar</filePath>
<cve>CVE-2020-8908</cve>
</suppress>
</suppressions>
21 changes: 16 additions & 5 deletions pom.xml
Expand Up @@ -5,7 +5,7 @@

<groupId>org.seleniumhq.selenium</groupId>
<artifactId>htmlunit-driver</artifactId>
<version>4.8.0</version>
<version>4.8.1</version>

<name>htmlunit-driver</name>
<description>WebDriver compatible driver for HtmlUnit headless browser</description>
Expand All @@ -18,10 +18,10 @@
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>

<selenium.version>4.8.0</selenium.version>
<htmlunit.version>2.70.0</htmlunit.version>
<selenium.version>4.8.1</selenium.version>
<htmlunit.version>3.0.0</htmlunit.version>

<jetty.version>9.4.50.v20221201</jetty.version>
<jetty.version>9.4.51.v20230217</jetty.version>

<checkstyle.version>9.3</checkstyle.version>
<spotbugs.version>4.7.3</spotbugs.version>
Expand Down Expand Up @@ -99,7 +99,7 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.htmlunit</groupId>
<groupId>org.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
<version>${htmlunit.version}</version>
</dependency>
Expand Down Expand Up @@ -426,5 +426,16 @@
<id>OSS Sonatype snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
<repository>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
<id>S01 OSS Sonatype snapshots</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>
</project>

0 comments on commit 3508969

Please sign in to comment.