Skip to content
This repository was archived by the owner on Jun 22, 2024. It is now read-only.

Commit 4cd38d5

Browse files
Merge branch 'trunk' of https://github.com/SeleniumHQ/docker-selenium into trunk
2 parents 0388c72 + e1bd6d4 commit 4cd38d5

29 files changed

+199
-174
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@ body:
5555
attributes:
5656
label: Docker Selenium version (tag)
5757
description: What version of Docker Selenium are you using?
58-
placeholder: 4.8.3-20230328? Please use the full tag, avoid "latest"
58+
placeholder: 4.9.0-20230421? Please use the full tag, avoid "latest"
5959
validations:
6060
required: true

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Output Docker info
2222
run: docker info
2323
- name: Set up Python 3.8
24-
uses: actions/setup-python@v4.5.0
24+
uses: actions/setup-python@v4.6.0
2525
with:
2626
python-version: 3.8
2727
- name: Get branch name (only for push to branch)

.github/workflows/test-video.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Output Docker info
1919
run: docker info
2020
- name: Set up Python 3.8
21-
uses: actions/setup-python@v4.5.0
21+
uses: actions/setup-python@v4.6.0
2222
with:
2323
python-version: 3.8
2424
- name: Get branch name (only for push to branch)

Base/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ COPY supervisord.conf /etc
9292
RUN mkdir -p /opt/selenium /opt/selenium/assets /var/run/supervisor /var/log/supervisor \
9393
&& touch /opt/selenium/config.toml \
9494
&& chmod -R 777 /opt/selenium /opt/selenium/assets /var/run/supervisor /var/log/supervisor /etc/passwd \
95-
&& wget --no-verbose https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.8.0/selenium-server-4.8.3.jar \
95+
&& wget --no-verbose https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.9.0/selenium-server-4.9.0.jar \
9696
-O /opt/selenium/selenium-server.jar \
97-
&& wget --no-verbose https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-http-jdk-client/4.8.3/selenium-http-jdk-client-4.8.3.jar \
97+
&& wget --no-verbose https://repo1.maven.org/maven2/org/seleniumhq/selenium/selenium-http-jdk-client/4.9.0/selenium-http-jdk-client-4.9.0.jar \
9898
-O /opt/selenium/selenium-http-jdk-client.jar \
9999
&& chgrp -R 0 /opt/selenium ${HOME} /opt/selenium/assets /var/run/supervisor /var/log/supervisor \
100100
&& chmod -R g=u /opt/selenium ${HOME} /opt/selenium/assets /var/run/supervisor /var/log/supervisor \

NodeBase/generate_config

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
function short_version() {
44
local __long_version=$1
55
local __version_split=( ${__long_version//./ } )
6-
echo "${__version_split[0]}.${__version_split[1]}"
6+
local __major=${__version_split[0]}
7+
local __minor=${__version_split[1]}
8+
echo "${__major}.${__minor:0:1}"
79
}
810

9-
1011
if [[ -z "$CONFIG_FILE" ]]; then
1112
FILENAME="/opt/selenium/config.toml"
1213
else

NodeDocker/config.toml

Lines changed: 4 additions & 4 deletions
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.8.3-20230328", '{"browserName": "firefox", "platformName": "linux"}',
6-
"selenium/standalone-chrome:4.8.3-20230328", '{"browserName": "chrome", "platformName": "linux"}',
7-
"selenium/standalone-edge:4.8.3-20230328", '{"browserName": "MicrosoftEdge", "platformName": "linux"}'
5+
"selenium/standalone-firefox:4.9.0-20230421", '{"browserName": "firefox", "platformName": "linux"}',
6+
"selenium/standalone-chrome:4.9.0-20230421", '{"browserName": "chrome", "platformName": "linux"}',
7+
"selenium/standalone-edge:4.9.0-20230421", '{"browserName": "MicrosoftEdge", "platformName": "linux"}'
88
]
99

1010
# URL for connecting to the docker daemon
@@ -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-4.3.1-20230328"
17+
video-image = "selenium/video:ffmpeg-4.3.1-20230421"
1818

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

NodeFirefox/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN FIREFOX_DOWNLOAD_URL=$(if [ $FIREFOX_VERSION = "latest" ] || [ $FIREFOX_VERS
2626
# GeckoDriver
2727
#============
2828
ARG GECKODRIVER_VERSION=latest
29-
RUN GK_VERSION=$(if [ ${GECKODRIVER_VERSION:-latest} = "latest" ]; then echo "0.32.1"; else echo $GECKODRIVER_VERSION; fi) \
29+
RUN GK_VERSION=$(if [ ${GECKODRIVER_VERSION:-latest} = "latest" ]; then echo "0.33.0"; else echo $GECKODRIVER_VERSION; fi) \
3030
&& echo "Using GeckoDriver version: "$GK_VERSION \
3131
&& wget --no-verbose -O /tmp/geckodriver.tar.gz https://github.com/mozilla/geckodriver/releases/download/v$GK_VERSION/geckodriver-v$GK_VERSION-linux64.tar.gz \
3232
&& rm -rf /opt/geckodriver \

0 commit comments

Comments
 (0)