Skip to content

Commit

Permalink
4.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Nov 6, 2024
1 parent 5c7cd6e commit 820325f
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 10 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ![HtmlUnit Logo](https://github.com/HtmlUnit/htmlunit/blob/master/src/site/resources/images/htmlunit.png)

Version 4.5.0 / October 20, 2024
Version 4.6.0 / November 06, 2024

:heart: [Sponsor](https://github.com/sponsors/rbri)

Expand Down Expand Up @@ -53,7 +53,7 @@ Add to your `pom.xml`:
<dependency>
<groupId>org.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
<version>4.5.0</version>
<version>4.6.0</version>
</dependency>
```

Expand All @@ -62,7 +62,7 @@ Add to your `pom.xml`:
Add to your `build.gradle`:

```groovy
implementation group: 'org.htmlunit', name: 'htmlunit', version: '4.5.0'
implementation group: 'org.htmlunit', name: 'htmlunit', version: '4.6.0'
```

## Vulnerabilities
Expand Down Expand Up @@ -136,7 +136,7 @@ Add the snapshot repository and dependency to your `pom.xml`:
<dependency>
<groupId>org.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
<version>4.6.0-SNAPSHOT</version>
<version>4.7.0-SNAPSHOT</version>
</dependency>
<!-- ... -->
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
<version>4.6.0-SNAPSHOT</version>
<version>4.6.0</version>
<name>HtmlUnit</name>
<organization>
<name>Gargoyle Software Inc.</name>
Expand Down Expand Up @@ -34,7 +34,7 @@

<httpcomponents.version>4.5.14</httpcomponents.version>

<htmlunitdriver.version>4.26.0-SNAPSHOT</htmlunitdriver.version>
<htmlunitdriver.version>4.26.0</htmlunitdriver.version>
<selenium.version>4.26.0</selenium.version>
<selenium.devtools.artifactId>selenium-devtools-v130</selenium.devtools.artifactId>

Expand Down
31 changes: 30 additions & 1 deletion src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,36 @@
</properties>

<body>
<release version="4.6.0" date="xxxx, 2024" description="Chrome/Edge 130, Firefox 132, Bugfixes">
<release version="4.6.0" date="November 06, 2024" description="Chrome/Edge 130, Firefox 132, Bugfixes">
<action type="update" dev="rbri">
INCOMPATIBLE CHANGE: HtmlPage.getBody() no longer returns an HtmlFrameSet.
</action>
<action type="fix" dev="rbri">
disable early cdata closing for xhtml pages
</action>
<action type="add" dev="rbri">
neko: feature 'http://cyberneko.org/html/features/scanner/cdata-early-closing' to disable early
closing of cdata sections added
</action>
<action type="update" dev="rbri">
neko: interface HTMLEventInfo merged into Augmentations
</action>
<action type="add" dev="rbri">
neko: feature 'http://cyberneko.org/html/features/scanner/allow-selfclosing-script' to allow
parsing of self closing script tags added
</action>
<action type="fix" dev="rbri">
neko: wrong default for NamespaceBinder 'http://cyberneko.org/html/properties/names/elems' property
</action>
<action type="update" dev="rbri">
neko: code improvements for string handling
</action>
<action type="update" dev="rbri">
Bunch of minor changes to reduce object creation and improve performance during DOM creation.
</action>
<action type="fix" dev="rbri">
The DOMTree might include cycles in some border cases; fixed.
</action>
<action type="fix" dev="rbri">
No longer use getElementsByTagName() in cases we do not need the live update capabilites of the result.
This reduces the internal workload and should make some cases faster.
Expand Down
6 changes: 3 additions & 3 deletions src/site/xdoc/index.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@
<section name="Where to find...">
<p>
<dl>
<dt>Latest release <date>October 20, 2024</date></dt>
<dt>Latest release <date>November 06, 2024</date></dt>
<dd>
<p><a href="https://github.com/HtmlUnit/htmlunit/releases/tag/4.5.0">version 4.5.0</a></p>
<p><a href="https://github.com/HtmlUnit/htmlunit/releases/tag/4.6.0">version 4.6.0</a></p>
</dd>

<dt>Source code</dt>
Expand Down Expand Up @@ -194,7 +194,7 @@
<dependency>
<groupId>org.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
<version>4.5.0</version>
<version>4.6.0</version>
</dependency>]]></source>
</p>

Expand Down

0 comments on commit 820325f

Please sign in to comment.