Skip to content

Commit 0d0a874

Browse files
committed
prepare version 2.66.0
1 parent 3593bbd commit 0d0a874

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
This is the code repository of the HTML parser used by HtmlUnit.
44

5-
For a long time HtmlUnit uses the CyberNeko HTML Parser (http://nekohtml.sourceforge.net/). But because the development
6-
seems to end somewhere around 2014 we started our own fork that now has many improvements.
5+
HtmlUnit has been using CyberNeko HTML parser (http://nekohtml.sourceforge.net/) for a long time.
6+
But since the development was discontinued around 2014, we started our own fork, which now has many improvements.
77

88
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/net.sourceforge.htmlunit/neko-htmlunit/badge.svg)](https://maven-badges.herokuapp.com/maven-central/net.sourceforge.htmlunit/neko-htmlunit)
99

@@ -12,7 +12,7 @@ seems to end somewhere around 2014 we started our own fork that now has many imp
1212
### Project News
1313
[HtmlUnit@Twitter][3]
1414

15-
### Latest release Version 2.65.0 / October 02, 2022
15+
### Latest release Version 2.66.0 / October 22, 2022
1616

1717
#### CVE-2022-29546
1818
#### HtmlUnit - NekoHtml Parser suffers from a denial of service vulnerability on versions 2.60.0 and below. A specifically crafted input regarding the parsing of processing instructions leads to heap memory consumption. Please update to at least version 2.62.0.
@@ -22,10 +22,10 @@ For maven, you would add:
2222
<dependency>
2323
<groupId>net.sourceforge.htmlunit</groupId>
2424
<artifactId>neko-htmlunit</artifactId>
25-
<version>2.65.0</version>
25+
<version>2.66.0</version>
2626
</dependency>
2727

28-
### Latest CI build
28+
### Last CI build
2929
The latest builds are available from our
3030
[Jenkins CI build server][2]
3131

@@ -37,7 +37,7 @@ If you use maven please add:
3737
<dependency>
3838
<groupId>net.sourceforge.htmlunit</groupId>
3939
<artifactId>neko-htmlunit</artifactId>
40-
<version>2.65.0-SNAPSHOT</version>
40+
<version>2.67.0-SNAPSHOT</version>
4141
</dependency>
4242

4343
You have to add the sonatype snapshot repository to your pom distributionManagement section also:

pom.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>net.sourceforge.htmlunit</groupId>
77
<artifactId>neko-htmlunit</artifactId>
8-
<version>2.65.0</version>
8+
<version>2.66.0</version>
99
<name>HtmlUnit NekoHtml</name>
1010
<organization>
1111
<name>Gargoyle Software Inc.</name>
@@ -35,7 +35,7 @@
3535
<dependency>
3636
<groupId>org.junit.jupiter</groupId>
3737
<artifactId>junit-jupiter-engine</artifactId>
38-
<version>5.8.1</version>
38+
<version>5.9.1</version>
3939
<scope>test</scope>
4040
</dependency>
4141
</dependencies>
@@ -92,10 +92,10 @@
9292
<version>3.4.1</version>
9393
<configuration>
9494
<quiet>true</quiet>
95-
<additionalparam>--allow-script-in-comments</additionalparam>
96-
<links>
97-
<link>https://docs.oracle.com/javase/8/docs/api/</link>
98-
</links>
95+
<doclint>html,missing,reference,syntax</doclint>
96+
<detectLinks>true</detectLinks>
97+
<detectJavaApiLink>true</detectJavaApiLink>
98+
<excludePackageNames>netscape:netscape.*</excludePackageNames>
9999
</configuration>
100100
<executions>
101101
<execution>

0 commit comments

Comments
 (0)