From e15cfd683a29081a5adc8aea9e8509f6dbfad2a1 Mon Sep 17 00:00:00 2001
From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com>
Date: Sat, 21 Oct 2023 16:36:03 +0000
Subject: [PATCH 1/2] Update selenium monorepo to v4.14.1
---
grails-forge-core/src/main/resources/pom.xml | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/grails-forge-core/src/main/resources/pom.xml b/grails-forge-core/src/main/resources/pom.xml
index d57c5f76..d0abc8d5 100644
--- a/grails-forge-core/src/main/resources/pom.xml
+++ b/grails-forge-core/src/main/resources/pom.xml
@@ -100,32 +100,32 @@
org.seleniumhq.selenium
selenium-api
- 4.10.0
+ 4.14.1
org.seleniumhq.selenium
selenium-support
- 4.10.0
+ 4.14.1
org.seleniumhq.selenium
selenium-remote-driver
- 4.10.0
+ 4.14.1
org.seleniumhq.selenium
selenium-chrome-driver
- 4.10.0
+ 4.14.1
org.seleniumhq.selenium
selenium-safari-driver
- 4.10.0
+ 4.14.1
org.seleniumhq.selenium
selenium-firefox-driver
- 4.10.0
+ 4.14.1
org.zeroturnaround
From 955cd405928fbb117c6bade05ff1c6b3324d7c5c Mon Sep 17 00:00:00 2001
From: Puneet Behl
Date: Sun, 22 Oct 2023 00:15:15 +0530
Subject: [PATCH 2/2] Update GebSpec.groovy
---
.../org/grails/forge/feature/test/GebSpec.groovy | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/grails-forge-core/src/test/groovy/org/grails/forge/feature/test/GebSpec.groovy b/grails-forge-core/src/test/groovy/org/grails/forge/feature/test/GebSpec.groovy
index d29775ab..c0f2ea5f 100644
--- a/grails-forge-core/src/test/groovy/org/grails/forge/feature/test/GebSpec.groovy
+++ b/grails-forge-core/src/test/groovy/org/grails/forge/feature/test/GebSpec.groovy
@@ -18,11 +18,11 @@ class GebSpec extends ApplicationContextSpec implements CommandOutputFixture {
expect:
buildGradle.contains("testImplementation(\"org.grails.plugins:geb\")")
- buildGradle.contains("testImplementation(\"org.seleniumhq.selenium:selenium-api:4.10.0\")")
- buildGradle.contains("testImplementation(\"org.seleniumhq.selenium:selenium-support:4.10.0\")")
- buildGradle.contains("testImplementation(\"org.seleniumhq.selenium:selenium-remote-driver:4.10.0\")")
- buildGradle.contains("testRuntimeOnly(\"org.seleniumhq.selenium:selenium-chrome-driver:4.10.0\")")
- buildGradle.contains("testRuntimeOnly(\"org.seleniumhq.selenium:selenium-firefox-driver:4.10.0\")")
+ buildGradle.contains("testImplementation(\"org.seleniumhq.selenium:selenium-api:4.14.1\")")
+ buildGradle.contains("testImplementation(\"org.seleniumhq.selenium:selenium-support:4.14.1\")")
+ buildGradle.contains("testImplementation(\"org.seleniumhq.selenium:selenium-remote-driver:4.14.1\")")
+ buildGradle.contains("testRuntimeOnly(\"org.seleniumhq.selenium:selenium-chrome-driver:4.14.1\")")
+ buildGradle.contains("testRuntimeOnly(\"org.seleniumhq.selenium:selenium-firefox-driver:4.14.1\")")
}
void "test GebConfig.groovy file is present"() {
@@ -40,7 +40,7 @@ class GebSpec extends ApplicationContextSpec implements CommandOutputFixture {
expect:
buildGradle.contains("if (details.requested.group == 'org.seleniumhq.selenium') {\n" +
- " details.useVersion('4.10.0')\n" +
+ " details.useVersion('4.14.1')\n" +
" }")
}