You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2022/11/15 02:28:23 UTC

[groovy] 04/08: GROOVY-10829: Bump htmlunit to 2.66.0 (test dependency)

This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch GROOVY_4_0_X
in repository https://gitbox.apache.org/repos/asf/groovy.git

commit fbe11afbcae691537ccada4920f7c2c26cce1194
Author: Paul King <pa...@asert.com.au>
AuthorDate: Mon Nov 14 23:45:18 2022 +1000

    GROOVY-10829: Bump htmlunit to 2.66.0 (test dependency)
---
 .../groovy/org/apache/groovy/gradle/PerformanceTestsExtension.groovy    | 2 +-
 build.gradle                                                            | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/build-logic/src/main/groovy/org/apache/groovy/gradle/PerformanceTestsExtension.groovy b/build-logic/src/main/groovy/org/apache/groovy/gradle/PerformanceTestsExtension.groovy
index 365c68ce86..5b4f945ae3 100644
--- a/build-logic/src/main/groovy/org/apache/groovy/gradle/PerformanceTestsExtension.groovy
+++ b/build-logic/src/main/groovy/org/apache/groovy/gradle/PerformanceTestsExtension.groovy
@@ -97,7 +97,7 @@ class PerformanceTestsExtension {
             it.dependencies.add(dependencies.create(v == 'current' ? dependencies.project([path: ':groovy-templates']) : (v.startsWith('4') ? "org.apache.groovy:groovy-templates:$v" : "org.codehaus.groovy:groovy-templates:$v")))
             it.dependencies.add(dependencies.create('org.cyberneko:html:1.9.8'))
             it.dependencies.add(dependencies.create('commons-net:commons-net:3.8.0'))
-            it.dependencies.add(dependencies.create('net.sourceforge.htmlunit:htmlunit:2.63.0'))
+            it.dependencies.add(dependencies.create('net.sourceforge.htmlunit:htmlunit:2.66.0'))
             it.dependencies.add(dependencies.create('berkeleydb:je:3.2.76'))
             it.dependencies.add(dependencies.create('commons-httpclient:commons-httpclient:3.1'))
             it.dependencies.add(dependencies.create('net.sf.jopt-simple:jopt-simple:5.0.4'))
diff --git a/build.gradle b/build.gradle
index c92ff3aa22..07ea3acdbf 100644
--- a/build.gradle
+++ b/build.gradle
@@ -249,7 +249,7 @@ sonarqube {
     }
 }
 
-def UNSTABLE = /^([\d.-]+(alpha|beta|rc|m)[\d.-]+(groovy[\d.-]+)?|20030203.000550|20031129.200437|20040427|2004-03-19)$/
+def UNSTABLE = /^([\d.-]+(alpha|beta|rc|m)[\d.-]+(groovy[\d.-]+)?|20030203.000550|20031129.200437|200404\d\d|2004-03-19)$/
 // ignore non-stable releases
 tasks.named("dependencyUpdates")?.configure {
     gradleReleaseChannel = 'current'