Skip to content

Commit 1bf02da

Browse files
committed
[ci] Update tag 4.31.0-20250404 in docs and files
[skip test]
1 parent e1631d5 commit 1bf02da

38 files changed

+303
-303
lines changed

Diff for: .github/ISSUE_TEMPLATE/bug_report.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ body:
5656
attributes:
5757
label: Docker Selenium version (image tag)
5858
description: What version of Docker Selenium are you using?
59-
placeholder: 4.30.0-20250323? Please use the full tag, avoid "latest"
59+
placeholder: 4.31.0-20250404? Please use the full tag, avoid "latest"
6060
validations:
6161
required: true
6262
- type: input

Diff for: .github/workflows/release-chrome-versions.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
description: 'Build date in format YYYYMMDD. Must provide if reusing base image'
2323
required: false
2424
type: string
25-
default: '20250323'
25+
default: '20250404'
2626
browser-name:
2727
description: 'Browser name to build. E.g: chrome'
2828
required: true

Diff for: .github/workflows/release-edge-versions.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
description: 'Build date in format YYYYMMDD. Must provide if reusing base image'
2323
required: false
2424
type: string
25-
default: '20250323'
25+
default: '20250404'
2626
browser-name:
2727
description: 'Browser name to build. E.g: edge'
2828
required: true

Diff for: .github/workflows/release-firefox-versions.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
description: 'Build date in format YYYYMMDD. Must provide if reusing base image'
2323
required: false
2424
type: string
25-
default: '20250323'
25+
default: '20250404'
2626
browser-name:
2727
description: 'Browser name to build. E.g: firefox'
2828
required: true

Diff for: .keda/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ The stable implementation will be merged to the upstream KEDA repository frequen
1313
Replace the image registry and tag of these KEDA components with the patched image tag:
1414

1515
```bash
16-
docker pull selenium/keda:2.16.1-selenium-grid-20250323
17-
docker pull selenium/keda-metrics-apiserver:2.16.1-selenium-grid-20250323
18-
docker pull selenium/keda-admission-webhooks:2.16.1-selenium-grid-20250323
16+
docker pull selenium/keda:2.17.0-selenium-grid-20250404
17+
docker pull selenium/keda-metrics-apiserver:2.17.0-selenium-grid-20250404
18+
docker pull selenium/keda-admission-webhooks:2.17.0-selenium-grid-20250404
1919
```
2020

2121
Besides that, you also can use image tag `latest` or `nightly`.
@@ -27,15 +27,15 @@ If you are deploying KEDA core using their official Helm [chart](https://github.
2727
keda:
2828
registry: selenium
2929
repository: keda
30-
tag: "2.16.1-selenium-grid-20250323"
30+
tag: "2.17.0-selenium-grid-20250404"
3131
metricsApiServer:
3232
registry: selenium
3333
repository: keda-metrics-apiserver
34-
tag: "2.16.1-selenium-grid-20250323"
34+
tag: "2.17.0-selenium-grid-20250404"
3535
webhooks:
3636
registry: selenium
3737
repository: keda-admission-webhooks
38-
tag: "2.16.1-selenium-grid-20250323"
38+
tag: "2.17.0-selenium-grid-20250404"
3939
```
4040
4141
If you are deployment Selenium Grid chart with `autoscaling.enabled` is `true` (implies installing KEDA sub-chart), KEDA images registry and tag already set in the `values.yaml`. Refer to list [configuration](../charts/selenium-grid/CONFIGURATION.md).

Diff for: Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ MAJOR := $(word 1,$(subst ., ,$(TAG_VERSION)))
2020
MINOR := $(word 2,$(subst ., ,$(TAG_VERSION)))
2121
MAJOR_MINOR_PATCH := $(word 1,$(subst -, ,$(TAG_VERSION)))
2222
FFMPEG_VERSION := $(or $(FFMPEG_VERSION),$(FFMPEG_VERSION),7.1)
23-
FFMPEG_TAG_PREV_VERSION := $(or $(FFMPEG_TAG_PREV_VERSION),$(FFMPEG_TAG_PREV_VERSION),ffmpeg-7.1.1.1)
23+
FFMPEG_TAG_PREV_VERSION := $(or $(FFMPEG_TAG_PREV_VERSION),$(FFMPEG_TAG_PREV_VERSION),ffmpeg-7.1)
2424
FFMPEG_TAG_VERSION := $(or $(FFMPEG_TAG_VERSION),$(FFMPEG_TAG_VERSION),ffmpeg-7.1)
2525
FFMPEG_BASED_NAME := $(or $(FFMPEG_BASED_NAME),$(FFMPEG_BASED_NAME),selenium)
2626
FFMPEG_BASED_TAG := $(or $(FFMPEG_BASED_TAG),$(FFMPEG_BASED_TAG),latest)
@@ -30,7 +30,7 @@ SEL_PASSWD := $(or $(SEL_PASSWD),$(SEL_PASSWD),secret)
3030
CHROMIUM_VERSION := $(or $(CHROMIUM_VERSION),$(CHROMIUM_VERSION),latest)
3131
FIREFOX_DOWNLOAD_URL := $(or $(FIREFOX_DOWNLOAD_URL),$(FIREFOX_DOWNLOAD_URL),)
3232
SBOM_OUTPUT := $(or $(SBOM_OUTPUT),$(SBOM_OUTPUT),package_versions.txt)
33-
KEDA_TAG_PREV_VERSION := $(or $(KEDA_TAG_PREV_VERSION),$(KEDA_TAG_PREV_VERSION),2.16.1-selenium-grid)
33+
KEDA_TAG_PREV_VERSION := $(or $(KEDA_TAG_PREV_VERSION),$(KEDA_TAG_PREV_VERSION),2.17.0-selenium-grid)
3434
KEDA_CORE_VERSION := $(or $(KEDA_CORE_VERSION),$(KEDA_CORE_VERSION),2.17.0)
3535
KEDA_TAG_VERSION := $(or $(KEDA_TAG_VERSION),$(KEDA_TAG_VERSION),2.17.0-selenium-grid)
3636
KEDA_BASED_NAME := $(or $(KEDA_BASED_NAME),$(KEDA_BASED_NAME),ndviet)

Diff for: NodeDocker/config.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# Configs have a mapping between the Docker image to use and the capabilities that need to be matched to
33
# start a container with the given image.
44
configs = [
5-
"selenium/standalone-firefox:4.30.0-20250323", '{"browserName": "firefox", "platformName": "linux"}',
6-
"selenium/standalone-chrome:4.30.0-20250323", '{"browserName": "chrome", "platformName": "linux"}',
7-
"selenium/standalone-edge:4.30.0-20250323", '{"browserName": "MicrosoftEdge", "platformName": "linux"}'
5+
"selenium/standalone-firefox:4.31.0-20250404", '{"browserName": "firefox", "platformName": "linux"}',
6+
"selenium/standalone-chrome:4.31.0-20250404", '{"browserName": "chrome", "platformName": "linux"}',
7+
"selenium/standalone-edge:4.31.0-20250404", '{"browserName": "MicrosoftEdge", "platformName": "linux"}'
88
]
99
# Share configs of volumes, DNS, extra hosts between node-docker and node browser containers
1010
host-config-keys = ["Dns", "DnsOptions", "DnsSearch", "ExtraHosts", "Binds"]
@@ -16,7 +16,7 @@ host-config-keys = ["Dns", "DnsOptions", "DnsSearch", "ExtraHosts", "Binds"]
1616
# socat -4 TCP-LISTEN:2375,fork UNIX-CONNECT:/var/run/docker.sock
1717
url = "http://127.0.0.1:2375"
1818
# Docker image used for video recording
19-
video-image = "selenium/video:ffmpeg-7.1.1.1-20250323"
19+
video-image = "selenium/video:ffmpeg-7.1-20250404"
2020

2121
# Uncomment the following section if you are running the node on a separate VM
2222
# Fill out the placeholders with appropriate values

0 commit comments

Comments
 (0)