Skip to content

Commit b03c721

Browse files
authored
Selenium 4 RC 1 Release (#1379) [deploy]
* Selenium 4 RC 1 Release
1 parent a1b59af commit b03c721

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Base/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ COPY supervisord.conf /etc
7171
RUN mkdir -p /opt/selenium /opt/selenium/assets /var/run/supervisor /var/log/supervisor \
7272
&& touch /opt/selenium/config.toml \
7373
&& chmod -R 777 /opt/selenium /opt/selenium/assets /var/run/supervisor /var/log/supervisor /etc/passwd \
74-
&& wget --no-verbose https://github.com/SeleniumHQ/docker-selenium/releases/download/4.0.0-rc-1-prerelease-20210823/selenium-server-4.0.0-prerelease-rc-1-ea41b757bd.jar \
74+
&& wget --no-verbose https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.0.0-rc-1/selenium-server-4.0.0-rc-1.jar \
7575
-O /opt/selenium/selenium-server.jar \
7676
&& chgrp -R 0 /opt/selenium ${HOME} /opt/selenium/assets /var/run/supervisor /var/log/supervisor \
7777
&& chmod -R g=u /opt/selenium ${HOME} /opt/selenium/assets /var/run/supervisor /var/log/supervisor

NodeBase/generate_config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ fi
5353

5454
SE_NODE_STEREOTYPE="{\"browserName\": \"${SE_NODE_BROWSER_NAME}\", \"browserVersion\": \"${SE_NODE_BROWSER_VERSION}\", \"platformName\": \"Linux\"}"
5555
echo "[[node.driver-configuration]]" >> /opt/selenium/config.toml
56-
echo "name = \"${SE_NODE_BROWSER_NAME}\"" >> /opt/selenium/config.toml
56+
echo "display-name = \"${SE_NODE_BROWSER_NAME}\"" >> /opt/selenium/config.toml
5757
echo "stereotype = '${SE_NODE_STEREOTYPE}'" >> /opt/selenium/config.toml
5858
echo "max-sessions = ${SE_NODE_MAX_SESSIONS}
5959
" >> /opt/selenium/config.toml

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ and made the source code freely available under the [Apache License 2.0](LICENSE
88

99
# :point_right: Grid 4 is under development and is a [Release Candidate (RC)](https://en.wikipedia.org/wiki/Software_release_life_cycle#Release_candidate)
1010
Prereleases are happening on a regular basis to get early feedback. This means that all other Selenium components
11-
can be currently at a different RC or beta version (e.g. bindings on Beta 4, and Docker images on prerelease RC 1).
11+
can be currently at a different RC or beta version (e.g. bindings on RC 1, and Docker images on prerelease RC 2).
1212

1313
Docker images for Grid 4 come with a handful of tags to simplify its usage, have a look at them in one of
1414
our [releases](https://github.com/SeleniumHQ/docker-selenium/releases/tag/4.0.0-rc-1-prerelease-20210823)

Standalone/generate_config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ fi
2828

2929
SE_NODE_STEREOTYPE="{\"browserName\": \"${SE_NODE_BROWSER_NAME}\", \"browserVersion\": \"${SE_NODE_BROWSER_VERSION}\", \"platformName\": \"Linux\"}"
3030
echo "[[node.driver-configuration]]" >> /opt/selenium/config.toml
31-
echo "name = \"${SE_NODE_BROWSER_NAME}\"" >> /opt/selenium/config.toml
31+
echo "display-name = \"${SE_NODE_BROWSER_NAME}\"" >> /opt/selenium/config.toml
3232
echo "stereotype = '${SE_NODE_STEREOTYPE}'" >> /opt/selenium/config.toml
3333
echo "max-sessions = ${SE_NODE_MAX_SESSIONS}
3434
" >> /opt/selenium/config.toml

0 commit comments

Comments
 (0)