Skip to content

Commit 7453d7b

Browse files
committed
3.141.59-oxygen release
1 parent 4b062e7 commit 7453d7b

File tree

18 files changed

+70
-76
lines changed

18 files changed

+70
-76
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Issues without a reproduction script are likely to stall and eventually be close
4141
## Environment
4242

4343
OS: <!-- Windows 10? OSX? -->
44-
Docker-Selenium image version: <!-- 3, 3.141, 3.141.59-neon etc
44+
Docker-Selenium image version: <!-- 3, 3.141, 3.141.59-oxygen etc
4545
Also provide the docker image id
4646
-->
4747
Docker version:

.github/ISSUE_TEMPLATE/bug.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Issues without a reproduction script are likely to stall and eventually be close
4141
## Environment
4242

4343
OS: <!-- Windows 10? OSX? -->
44-
Docker-Selenium image version: <!-- 3, 3.141, 3.141.59-neon etc
44+
Docker-Selenium image version: <!-- 3, 3.141, 3.141.59-oxygen etc
4545
Also provide the docker image id
4646
-->
4747
Docker version:

.github/ISSUE_TEMPLATE/regression.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Issues without a reproduction script are likely to stall and eventually be close
4747
## Environment
4848

4949
OS: <!-- Windows 10? OSX? -->
50-
Docker-Selenium image version: <!-- 3, 3.141, 3.141.59-neon etc
50+
Docker-Selenium image version: <!-- 3, 3.141, 3.141.59-oxygen etc
5151
Also provide the docker image id
5252
-->
5353
Docker version:

Hub/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/base:3.141.59-neon
5+
FROM selenium/base:3.141.59-oxygen
66
LABEL authors=SeleniumHQ
77

88
USER seluser

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
NAME := $(or $(NAME),$(NAME),selenium)
2-
VERSION := $(or $(VERSION),$(VERSION),3.141.59-neon)
2+
VERSION := $(or $(VERSION),$(VERSION),3.141.59-oxygen)
33
NAMESPACE := $(or $(NAMESPACE),$(NAMESPACE),$(NAME))
44
AUTHORS := $(or $(AUTHORS),$(AUTHORS),SeleniumHQ)
55
PLATFORM := $(shell uname -s)

NodeBase/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/base:3.141.59-neon
5+
FROM selenium/base:3.141.59-oxygen
66
LABEL authors=SeleniumHQ
77

88
USER root

NodeChrome/Dockerfile

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/node-base:3.141.59-neon
5+
FROM selenium/node-base:3.141.59-oxygen
66
LABEL authors=SeleniumHQ
77

88
USER root
@@ -41,24 +41,18 @@ USER seluser
4141
# Latest released version will be used by default
4242
#============================================
4343
ARG CHROME_DRIVER_VERSION
44-
RUN CHROME_STRING=$(google-chrome --version) \
45-
&& CHROME_VERSION_STRING=$(echo "${CHROME_STRING}" | grep -oP "\d+\.\d+\.\d+\.\d+") \
46-
&& CHROME_MAYOR_VERSION=$(echo "${CHROME_VERSION_STRING%%.*}") \
47-
&& wget --no-verbose -O /tmp/LATEST_RELEASE "https://chromedriver.storage.googleapis.com/LATEST_RELEASE_${CHROME_MAYOR_VERSION}" \
48-
&& CD_VERSION=$(cat "/tmp/LATEST_RELEASE") \
49-
&& rm /tmp/LATEST_RELEASE \
50-
&& if [ -z "$CHROME_DRIVER_VERSION" ]; \
51-
then CHROME_DRIVER_VERSION="${CD_VERSION}"; \
52-
fi \
53-
&& CD_VERSION=$(echo $CHROME_DRIVER_VERSION) \
54-
&& echo "Using chromedriver version: "$CD_VERSION \
55-
&& wget --no-verbose -O /tmp/chromedriver_linux64.zip https://chromedriver.storage.googleapis.com/$CD_VERSION/chromedriver_linux64.zip \
44+
RUN if [ -z "$CHROME_DRIVER_VERSION" ]; \
45+
then CHROME_MAJOR_VERSION=$(google-chrome --version | sed -E "s/.* ([0-9]+)(\.[0-9]+){3}.*/\1/") \
46+
&& CHROME_DRIVER_VERSION=$(wget --no-verbose -O - "https://chromedriver.storage.googleapis.com/LATEST_RELEASE_${CHROME_MAJOR_VERSION}"); \
47+
fi \
48+
&& echo "Using chromedriver version: "$CHROME_DRIVER_VERSION \
49+
&& wget --no-verbose -O /tmp/chromedriver_linux64.zip https://chromedriver.storage.googleapis.com/$CHROME_DRIVER_VERSION/chromedriver_linux64.zip \
5650
&& rm -rf /opt/selenium/chromedriver \
5751
&& unzip /tmp/chromedriver_linux64.zip -d /opt/selenium \
5852
&& rm /tmp/chromedriver_linux64.zip \
59-
&& mv /opt/selenium/chromedriver /opt/selenium/chromedriver-$CD_VERSION \
60-
&& chmod 755 /opt/selenium/chromedriver-$CD_VERSION \
61-
&& sudo ln -fs /opt/selenium/chromedriver-$CD_VERSION /usr/bin/chromedriver
53+
&& mv /opt/selenium/chromedriver /opt/selenium/chromedriver-$CHROME_DRIVER_VERSION \
54+
&& chmod 755 /opt/selenium/chromedriver-$CHROME_DRIVER_VERSION \
55+
&& sudo ln -fs /opt/selenium/chromedriver-$CHROME_DRIVER_VERSION /usr/bin/chromedriver
6256

6357
COPY generate_config /opt/bin/generate_config
6458

NodeChromeDebug/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/node-chrome:3.141.59-neon
5+
FROM selenium/node-chrome:3.141.59-oxygen
66
LABEL authors=SeleniumHQ
77

88
USER root

NodeChromeDebug/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ If you are running Boot2Docker on Mac then you already have a [VNC client](http:
3737
When you are prompted for the password it is __secret__. If you wish to change this then you should either change it in the `/NodeBase/Dockerfile` and build the images yourself, or you can define a docker image that derives from the posted ones which reconfigures it:
3838

3939
``` dockerfile
40-
FROM selenium/node-chrome-debug:3.141.59-neon
40+
FROM selenium/node-chrome-debug:3.141.59-oxygen
4141

4242
RUN x11vnc -storepasswd <your-password-here> /home/seluser/.vnc/passwd
4343
```

NodeDebug/README.template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ If you are running Boot2Docker on Mac then you already have a [VNC client](http:
3737
When you are prompted for the password it is __secret__. If you wish to change this then you should either change it in the `/NodeBase/Dockerfile` and build the images yourself, or you can define a docker image that derives from the posted ones which reconfigures it:
3838

3939
``` dockerfile
40-
FROM selenium/##BASE##-debug:3.141.59-neon
40+
FROM selenium/##BASE##-debug:3.141.59-oxygen
4141

4242
RUN x11vnc -storepasswd <your-password-here> /home/seluser/.vnc/passwd
4343
```

0 commit comments

Comments
 (0)