Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Webdriver Update #6022

Merged
merged 2 commits into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions addOns/webdrivers/webdriverlinux/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## Unreleased
### Changed
- Update ChromeDriver to 131.0.6778.108.
- Update minimum ZAP version to 2.16.0.
- Update ChromeDriver to 131.0.6778.204.

## [116] - 2024-12-04
### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ <H1>Linux WebDrivers</H1>
<p>
The Linux WebDrivers add-on provides WebDrivers for the following browsers:
<ul>
<li>Chrome - ChromeDriver 131.0.6778.108</li>
<li>Chrome - ChromeDriver 131.0.6778.204</li>
<li>Firefox - geckodriver 0.35.0</li>
</ul>

Expand Down
3 changes: 1 addition & 2 deletions addOns/webdrivers/webdrivermacos/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## Unreleased
### Changed
- Update ChromeDriver to 131.0.6778.108.
- Update minimum ZAP version to 2.16.0.
- Update ChromeDriver to 131.0.6778.204.

## [116] - 2024-12-04
### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ <H1>MacOS WebDrivers</H1>
<p>
The MacOS WebDrivers add-on provides WebDrivers for the following browsers:
<ul>
<li>Chrome - ChromeDriver 131.0.6778.108</li>
<li>Chrome - ChromeDriver 131.0.6778.204</li>
<li>Firefox - geckodriver 0.35.0</li>
</ul>

Expand Down
4 changes: 3 additions & 1 deletion addOns/webdrivers/webdrivers.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import org.zaproxy.gradle.tasks.DownloadWebDriver
description = "Common configuration of the WebDriver add-ons."

val geckodriverVersion = "0.35.0"
val chromeDriverVersion = "131.0.6778.108"
val chromeDriverVersion = "131.0.6778.204"

fun configureDownloadTask(
outputDir: File,
Expand Down Expand Up @@ -80,6 +80,8 @@ subprojects {
sourceSets["main"].output.dir(mapOf("builtBy" to downloadTasks), webdriversDir)

zapAddOn {
zapVersion.set("2.15.0")

manifest {
files.from(webdriversDir)
}
Expand Down
3 changes: 1 addition & 2 deletions addOns/webdrivers/webdriverwindows/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## Unreleased
### Changed
- Update ChromeDriver to 131.0.6778.108.
- Update minimum ZAP version to 2.16.0.
- Update ChromeDriver to 131.0.6778.204.

## [116] - 2024-12-04
### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ <H1>Windows WebDrivers</H1>
<p>
The Windows WebDrivers add-on provides WebDrivers for the following browsers:
<ul>
<li>Chrome - ChromeDriver 131.0.6778.108</li>
<li>Chrome - ChromeDriver 131.0.6778.204</li>
<li>Firefox - geckodriver 0.35.0</li>
</ul>

Expand Down
Loading