Skip to content

Commit

Permalink
4.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Oct 20, 2024
1 parent afc7379 commit 98c7e86
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
10 changes: 5 additions & 5 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.4.0 / July 28, 2024
Version 4.5.0 / October 20, 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.4.0</version>
<version>4.5.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.4.0'
implementation group: 'org.htmlunit', name: 'htmlunit', version: '4.5.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.5.0-SNAPSHOT</version>
<version>4.6.0-SNAPSHOT</version>
</dependency>
<!-- ... -->
</dependencies>
Expand All @@ -155,7 +155,7 @@ repositories {
}
// ...
dependencies {
implementation group: 'org.htmlunit', name: 'htmlunit', version: '4.4.0-SNAPSHOT'
implementation group: 'org.htmlunit', name: 'htmlunit', version: '4.6.0-SNAPSHOT'
// ...
}
```
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.5.0-SNAPSHOT</version>
<version>4.5.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.25.0-SNAPSHOT</htmlunitdriver.version>
<htmlunitdriver.version>4.25.0</htmlunitdriver.version>
<selenium.version>4.25.0</selenium.version>
<selenium.devtools.artifactId>selenium-devtools-v129</selenium.devtools.artifactId>

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

<body>
<release version="4.5.0" date="xxxx, 2024" description="Chrome/Edge 129, Firefox 131, FirefoxESR 128, WebWorker, Bugfixes">
<release version="4.5.0" date="October 20, 2024" description="Chrome/Edge 129, Firefox 131, FirefoxESR 128, WebWorker, Javascript, Bugfixes">
<action type="update" dev="rbri">
INCOMPATIBLE CHANGE: Return type of AbstractCssStyleDeclaration.item(int) has changed from Object to String.
</action>
Expand Down Expand Up @@ -292,6 +292,9 @@
<action type="add" dev="Lai Quang Duong">
RadioNodeList getter and setter for value attribute implemented.
</action>
<action type="update" dev="rbri" issue="#851">
WebRequest.getParameters() updated again to be more compatible with Spring.
</action>
<action type="update" dev="rbri" issue="#836">
WebRequest.getParameters() updated to deliver the same results as the servlet API
will report if this request reaches a servlet. This implies several changes: For url-encoded and
Expand Down
8 changes: 4 additions & 4 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>July 28, 2024</date></dt>
<dt>Latest release <date>October 20, 2024</date></dt>
<dd>
<p><a href="https://github.com/HtmlUnit/htmlunit/releases/tag/4.4.0">version 4.4.0</a></p>
<p><a href="https://github.com/HtmlUnit/htmlunit/releases/tag/4.5.0">version 4.5.0</a></p>
</dd>

<dt>Source code</dt>
Expand Down Expand Up @@ -185,7 +185,7 @@
<p>
Place <a href="dependencies.html">all the required jars</a> in your classpath.
All of these can be found in the lib directory of the HtmlUnit installation
(<a href="https://github.com/HtmlUnit/htmlunit/releases" target="blank">htmlunit-3.xx.x-bin.zip</a>
(<a href="https://github.com/HtmlUnit/htmlunit/releases" target="blank">htmlunit-4.xx.x-bin.zip</a>
contains everything you need including all required dependencies).
</p>
<p>
Expand All @@ -194,7 +194,7 @@
<dependency>
<groupId>org.htmlunit</groupId>
<artifactId>htmlunit</artifactId>
<version>4.4.0</version>
<version>4.5.0</version>
</dependency>]]></source>
</p>

Expand Down

0 comments on commit 98c7e86

Please sign in to comment.