Skip to content

Commit

Permalink
lib updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Dec 2, 2023
1 parent 2a972ce commit 1587961
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
15 changes: 7 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>

<htmlunitcssparser.version>3.8.0</htmlunitcssparser.version>
<htmlunitneko.version>3.9.0-SNAPSHOT</htmlunitneko.version>
<htmlunitxpath.version>3.8.0</htmlunitxpath.version>
<htmlunitcsp.version>3.9.0-SNAPSHOT</htmlunitcsp.version>
<htmlunitcssparser.version>3.9.0</htmlunitcssparser.version>
<htmlunitneko.version>3.9.0</htmlunitneko.version>
<htmlunitxpath.version>3.9.0</htmlunitxpath.version>
<htmlunitcsp.version>3.9.0</htmlunitcsp.version>
<htmlunitcorejs.version>3.8.0</htmlunitcorejs.version>

<htmlunitdriver.version>4.15.0</htmlunitdriver.version>
Expand All @@ -40,7 +40,7 @@

<!-- As a property, as it is included in Checkstyle build -->
<checkstyle.version>9.3</checkstyle.version>
<spotbugs.version>4.8.1</spotbugs.version>
<spotbugs.version>4.8.2</spotbugs.version>
<pmd.version>6.50.0</pmd.version>
<junit.version>4.13.2</junit.version>
<archunit.version>1.2.0</archunit.version>
Expand Down Expand Up @@ -1160,7 +1160,6 @@
<artifactId>htmlunit-csp</artifactId>
<version>${htmlunitcsp.version}</version>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
Expand All @@ -1180,12 +1179,12 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.15.0</version>
<version>2.15.1</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.2</version>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>commons-net</groupId>
Expand Down
6 changes: 6 additions & 0 deletions src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@

<body>
<release version="3.9.0" date="December xx, 2023" description="Bugfixes">
<action type="update" dev="rbri">
Upgrade commons-logging to 1.3.0
</action>
<action type="update" dev="rbri">
Upgrade Apache commons-io to 2.15.1.
</action>
<action type="add" dev="rbri">
New subproject htmlunit-csp. This replaces shapesecurity/salvation.
</action>
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/htmlunit/ExternalTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public class ExternalTest {
static String CHROME_DRIVER_URL_ =
"https://googlechromelabs.github.io/chrome-for-testing/last-known-good-versions-with-downloads.json";

static String EDGE_DRIVER_ = "119.0.2151.93";
static String EDGE_DRIVER_ = "119.0.2151.97";
static String EDGE_DRIVER_URL_ = "https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/";

/** Gecko driver. */
Expand Down
3 changes: 3 additions & 0 deletions src/test/java/org/htmlunit/archunit/ArchitectureTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ public class ArchitectureTest {
.and().doNotHaveFullyQualifiedName("org.htmlunit.platform.font.AwtFontUtil")
.and().doNotHaveFullyQualifiedName("org.htmlunit.platform.font.FontUtil")
.and().doNotHaveFullyQualifiedName("org.htmlunit.platform.font.NoOpFontUtil")

.and().doNotHaveFullyQualifiedName("org.htmlunit.csp.Utils")

.should().resideInAPackage("org.htmlunit.util");

/**
Expand Down

0 comments on commit 1587961

Please sign in to comment.