Skip to content

Commit 52233f0

Browse files
author
rubytester
committed
Merge pull request #65 from kayabendroth-epages/maint/new-selenium-version-2.46.0
Upgrade to Selenium version 2.46.0.
2 parents d989196 + 9f92a43 commit 52233f0

File tree

20 files changed

+42
-42
lines changed

20 files changed

+42
-42
lines changed

Base/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ RUN apt-get update -qqy \
2424
# Selenium
2525
#==========
2626
RUN mkdir -p /opt/selenium \
27-
&& wget --no-verbose http://selenium-release.storage.googleapis.com/2.45/selenium-server-standalone-2.45.0.jar -O /opt/selenium/selenium-server-standalone.jar
27+
&& wget --no-verbose http://selenium-release.storage.googleapis.com/2.46/selenium-server-standalone-2.46.0.jar -O /opt/selenium/selenium-server-standalone.jar
2828

2929
#========================================
3030
# Add normal user with passwordless sudo

Hub/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM selenium/base:2.45.0
1+
FROM selenium/base:2.46.0
22
MAINTAINER Selenium <[email protected]>
33

44
#========================

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
NAME := selenium
2-
VERSION := $(or $(VERSION),$(VERSION),'2.45.0')
2+
VERSION := $(or $(VERSION),$(VERSION),'2.46.0')
33
PLATFORM := $(shell uname -s)
44

55
all: hub chrome firefox chromedebug firefoxdebug standalone_chrome standalone_firefox standalone_debug_chrome standalone_debug_firefox

NodeBase/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM selenium/base:2.45.0
1+
FROM selenium/base:2.46.0
22
MAINTAINER Selenium <[email protected]>
33

44
ENV DEBIAN_FRONTEND noninteractive

NodeChrome/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM selenium/node-base:2.45.0
1+
FROM selenium/node-base:2.46.0
22
MAINTAINER Selenium <[email protected]>
33

44
USER root

NodeChromeDebug/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
FROM selenium/node-chrome:2.45.0
2-
#FROM selenium/node-*:2.45.0 Proper FROM attr will be applied throuh generate.sh
1+
FROM selenium/node-chrome:2.46.0
2+
#FROM selenium/node-*:2.46.0 Proper FROM attr will be applied throuh generate.sh
33
MAINTAINER Selenium <[email protected]>
44

55
USER root

NodeChromeDebug/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ If you are running Boot2Docker on Mac then you already have a [VNC client](http:
3838
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:
3939

4040
``` dockerfile
41-
FROM selenium/node-chrome-debug:2.45.0
41+
FROM selenium/node-chrome-debug:2.46.0
4242

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

NodeDebug/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#FROM selenium/node-*:2.45.0 Proper FROM attr will be applied throuh generate.sh
1+
#FROM selenium/node-*:2.46.0 Proper FROM attr will be applied throuh generate.sh
22
MAINTAINER Selenium <[email protected]>
33

44
USER root

NodeDebug/README.template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ If you are running Boot2Docker on Mac then you already have a [VNC client](http:
3838
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:
3939

4040
``` dockerfile
41-
FROM selenium/##BASE##-debug:2.45.0
41+
FROM selenium/##BASE##-debug:2.46.0
4242

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

NodeFirefox/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM selenium/node-base:2.45.0
1+
FROM selenium/node-base:2.46.0
22
MAINTAINER Selenium <[email protected]>
33

44
USER root

0 commit comments

Comments
 (0)