Skip to content

Commit 5fe6e7c

Browse files
committed
[ci] Update tag 4.30.0-20250323 in docs and files
[skip test]
1 parent 5f5c342 commit 5fe6e7c

8 files changed

+19
-19
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ 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.1)
23-
FFMPEG_TAG_PREV_VERSION := $(or $(FFMPEG_TAG_PREV_VERSION),$(FFMPEG_TAG_PREV_VERSION),ffmpeg-7.1.1)
24-
FFMPEG_TAG_VERSION := $(or $(FFMPEG_TAG_VERSION),$(FFMPEG_TAG_VERSION),ffmpeg-7.1.1.1)
23+
FFMPEG_TAG_PREV_VERSION := $(or $(FFMPEG_TAG_PREV_VERSION),$(FFMPEG_TAG_PREV_VERSION),ffmpeg-7.1.1.1)
24+
FFMPEG_TAG_VERSION := $(or $(FFMPEG_TAG_VERSION),$(FFMPEG_TAG_VERSION),ffmpeg-7.1.1.1.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)
2727
CURRENT_PLATFORM := $(shell if [ `arch` = "aarch64" ] || [ `arch` = "arm64" ]; then echo "linux/arm64"; else echo "linux/amd64"; fi)

NodeDocker/config.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ configs = [
1414
# socat -4 TCP-LISTEN:2375,fork UNIX-CONNECT:/var/run/docker.sock
1515
url = "http://127.0.0.1:2375"
1616
# Docker image used for video recording
17-
video-image = "selenium/video:ffmpeg-7.1.1-20250323"
17+
video-image = "selenium/video:ffmpeg-7.1.1.1-20250323"
1818

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

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ ___
565565
566566
## Video recording
567567
568-
Tests execution can be recorded by using the `selenium/video:ffmpeg-7.1.1-20250323`
568+
Tests execution can be recorded by using the `selenium/video:ffmpeg-7.1.1.1-20250323`
569569
Docker image. One container is needed per each container where a browser is running. This means if you are
570570
running 5 Nodes/Standalone containers, you will need 5 video containers, the mapping is 1-1.
571571
@@ -596,7 +596,7 @@ This example shows how to start the containers manually:
596596
``` bash
597597
$ docker network create grid
598598
$ docker run -d -p 4444:4444 -p 6900:5900 --net grid --name selenium --shm-size="2g" selenium/standalone-chrome:4.30.0-20250323
599-
$ docker run -d --net grid --name video -v /tmp/videos:/videos selenium/video:ffmpeg-7.1.1-20250323
599+
$ docker run -d --net grid --name video -v /tmp/videos:/videos selenium/video:ffmpeg-7.1.1.1-20250323
600600
# Run your tests
601601
$ docker stop video && docker rm video
602602
$ docker stop selenium && docker rm selenium
@@ -650,7 +650,7 @@ Besides the video recording mentioned above, you can enable the upload functiona
650650
```yaml
651651
services:
652652
chrome_video:
653-
image: selenium/video:ffmpeg-7.1.1-20250323
653+
image: selenium/video:ffmpeg-7.1.1.1-20250323
654654
depends_on:
655655
- chrome
656656
environment:
@@ -744,7 +744,7 @@ host-config-keys = ["Dns", "DnsOptions", "DnsSearch", "ExtraHosts", "Binds"]
744744
# Linux: varies from machine to machine, please mount /var/run/docker.sock. If this does not work, please create an issue.
745745
url = "http://127.0.0.1:2375"
746746
# Docker image used for video recording
747-
video-image = "selenium/video:ffmpeg-7.1.1-20250323"
747+
video-image = "selenium/video:ffmpeg-7.1.1.1-20250323"
748748
749749
# Uncomment the following section if you are running the node on a separate VM
750750
# Fill out the placeholders with appropriate values
@@ -901,7 +901,7 @@ configs = [
901901
# Linux: varies from machine to machine, please mount /var/run/docker.sock. If this does not work, please create an issue.
902902
url = "http://127.0.0.1:2375"
903903
# Docker image used for video recording
904-
video-image = "selenium/video:ffmpeg-7.1.1-20250323"
904+
video-image = "selenium/video:ffmpeg-7.1.1.1-20250323"
905905

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

charts/selenium-grid/CONFIGURATION.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ A Helm chart for creating a Selenium Grid Server in Kubernetes
3333
| global.seleniumGrid.imageRegistry | string | `"selenium"` | Image registry for all selenium components |
3434
| global.seleniumGrid.imageTag | string | `"4.30.0-20250323"` | Image tag for all selenium components |
3535
| global.seleniumGrid.nodesImageTag | string | `"4.30.0-20250323"` | Image tag for browser's nodes |
36-
| global.seleniumGrid.videoImageTag | string | `"ffmpeg-7.1.1-20250323"` | Image tag for browser's video recorder |
36+
| global.seleniumGrid.videoImageTag | string | `"ffmpeg-7.1.1.1-20250323"` | Image tag for browser's video recorder |
3737
| global.seleniumGrid.kubectlImage | string | `"bitnami/kubectl:latest"` | kubectl image is used to execute kubectl commands in utility jobs |
3838
| global.seleniumGrid.imagePullSecret | string | `""` | Pull secret for all components, can be overridden individually |
3939
| global.seleniumGrid.logLevel | string | `"INFO"` | Log level for all components. Possible values describe here: https://www.selenium.dev/documentation/grid/configuration/cli_options/#logging |

charts/selenium-grid/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ global:
1111
# -- Image tag for browser's nodes
1212
nodesImageTag: 4.30.0-20250323
1313
# -- Image tag for browser's video recorder
14-
videoImageTag: ffmpeg-7.1.1-20250323
14+
videoImageTag: ffmpeg-7.1.1.1-20250323
1515
# -- kubectl image is used to execute kubectl commands in utility jobs
1616
kubectlImage: bitnami/kubectl:latest
1717
# -- Pull secret for all components, can be overridden individually

docker-compose-v3-video-upload-standalone.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ services:
4646
- SE_SUB_PATH=/selenium
4747

4848
chrome_video:
49-
image: selenium/video:ffmpeg-7.1.1-20250323
49+
image: selenium/video:ffmpeg-7.1.1.1-20250323
5050
depends_on:
5151
- standalone_chrome
5252
environment:
@@ -70,7 +70,7 @@ services:
7070
stop_grace_period: 30s
7171

7272
edge_video:
73-
image: selenium/video:ffmpeg-7.1.1-20250323
73+
image: selenium/video:ffmpeg-7.1.1.1-20250323
7474
depends_on:
7575
- standalone_edge
7676
environment:
@@ -94,7 +94,7 @@ services:
9494
stop_grace_period: 30s
9595

9696
firefox_video:
97-
image: selenium/video:ffmpeg-7.1.1-20250323
97+
image: selenium/video:ffmpeg-7.1.1.1-20250323
9898
depends_on:
9999
- standalone_firefox
100100
environment:

docker-compose-v3-video-upload.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ services:
4040
- SE_EVENT_BUS_HOST=selenium-hub
4141

4242
chrome_video:
43-
image: selenium/video:ffmpeg-7.1.1-20250323
43+
image: selenium/video:ffmpeg-7.1.1.1-20250323
4444
depends_on:
4545
- chrome
4646
environment:
@@ -60,7 +60,7 @@ services:
6060
- RCLONE_CONFIG_MYFTP_FTP_CONCURRENCY=10
6161

6262
edge_video:
63-
image: selenium/video:ffmpeg-7.1.1-20250323
63+
image: selenium/video:ffmpeg-7.1.1.1-20250323
6464
depends_on:
6565
- edge
6666
environment:
@@ -80,7 +80,7 @@ services:
8080
- RCLONE_CONFIG_MYFTP_FTP_CONCURRENCY=10
8181

8282
firefox_video:
83-
image: selenium/video:ffmpeg-7.1.1-20250323
83+
image: selenium/video:ffmpeg-7.1.1.1-20250323
8484
depends_on:
8585
- firefox
8686
environment:

docker-compose-v3-video.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ services:
2727
- SE_EVENT_BUS_HOST=selenium-hub
2828

2929
chrome_video:
30-
image: selenium/video:ffmpeg-7.1.1-20250323
30+
image: selenium/video:ffmpeg-7.1.1.1-20250323
3131
volumes:
3232
- /tmp/videos:/videos
3333
depends_on:
@@ -39,7 +39,7 @@ services:
3939
- SE_VIDEO_FILE_NAME=auto
4040

4141
edge_video:
42-
image: selenium/video:ffmpeg-7.1.1-20250323
42+
image: selenium/video:ffmpeg-7.1.1.1-20250323
4343
volumes:
4444
- /tmp/videos:/videos
4545
depends_on:
@@ -51,7 +51,7 @@ services:
5151
- SE_VIDEO_FILE_NAME=auto
5252

5353
firefox_video:
54-
image: selenium/video:ffmpeg-7.1.1-20250323
54+
image: selenium/video:ffmpeg-7.1.1.1-20250323
5555
volumes:
5656
- /tmp/videos:/videos
5757
depends_on:

0 commit comments

Comments
 (0)