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

Commit 097525d

Browse files
committed
Upgrade Chrome patch to 57.0.2987.110
1 parent f885f1a commit 097525d

File tree

7 files changed

+40
-10
lines changed

7 files changed

+40
-10
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,32 @@ Note image ids also change after scm-source.json has being updated which trigger
77
###### To get container versions
88
docker exec grid versions
99

10+
## TBD_DOCKER_TAG
11+
+ **Changes:** https://github.com/elgalu/docker-selenium/compare/TBD_PREV_COMM...TBD_CUR_COMM (TBD_DATE)
12+
+ Upgrade Chrome patch to 57.0.2987.110
13+
+ Add Dockerfile `LABEL selenium_version`
14+
+ **Image tag details:**
15+
+ Selenium 2: TBD_SELENIUM_2_VERSION (TBD_SELENIUM_2_REVISION)
16+
+ Selenium 3: 3.2.0 (8c03df6)
17+
+ Chrome stable: TBD_CHROME_STABLE
18+
+ Firefox for Selenium 2: TBD_FIREFOX_FOR_SEL2
19+
+ Firefox for Selenium 3: TBD_FIREFOX_FOR_SEL3
20+
+ Geckodriver: TBD_GECKO_DRIVER
21+
+ Chromedriver: TBD_CHROME_DRIVER (TBD_CHROMEDRIVER_COMMIT)
22+
+ Java: TBD_JAVA_VENDOR Java TBD_JAVA_BUILD
23+
+ Timezone: TBD_TIME_ZONE
24+
+ FROM ubuntu:UBUNTU_FLAVOR-UBUNTU_DATE
25+
+ Python: TBD_PYTHON_VERSION
26+
+ Tested on kernel dev host: 4.4.0-66-generic x86_64
27+
+ Tested on kernel CI host: TBD_HOST_UNAME
28+
+ Built at dev host with: Docker version 17.03.0-ce, build 60ccb22
29+
+ Built at CI host with: Docker version TBD_DOCKER_VERS, build TBD_DOCKER_BUILD
30+
+ Built at dev host with: Docker Compose version 1.11.2, build dfed245
31+
+ Built at CI host with: Docker Compose version TBD_DOCKER_COMPOSE_VERS, build TBD_DOCKER_COMPOSE_BUILD
32+
+ Image size: TBD_IMAGE_SIZE
33+
+ Digest: TBD_DIGEST
34+
+ Image ID: TBD_IMAGE_ID
35+
1036
## 3.2.0-p0
1137
+ **[Changes](https://github.com/elgalu/docker-selenium/compare/a9a56610bee6c3d9...8c740e9b66564265adc):** (2017-03-13)
1238
+ Upgrade Selenium minor from 3.1.0 to 3.2.0

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ For pull requests or local commits:
1212

1313
For repository owners only:
1414

15-
git commit -m "Upgrade Selenium from 3.1.0 to 3.2.0"
15+
git commit -m "Upgrade Chrome patch to 57.0.2987.110"
1616
git tag -d latest && git tag `cat VERSION` && git push origin tmp-`cat VERSION` && git push --tags
1717

1818
-- Wait for Travis to pass OK
@@ -28,7 +28,7 @@ For repository owners only:
2828
### Chrome artifact
2929
Keep certain bins if chrome version changed for example:
3030

31-
cd ~/tmp_binaries && VER="57.0.2987.98" && NAME="google-chrome-stable_${VER}_amd64" && echo ${NAME}
31+
cd ~/tmp_binaries && VER="57.0.2987.110" && NAME="google-chrome-stable_${VER}_amd64" && echo ${NAME}
3232
wget -nv --show-progress -O ${NAME}.deb "https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb"
3333
md5sum ${NAME}.deb > ${NAME}.md5 && shasum ${NAME}.deb > ${NAME}.sha && cp ${NAME}.md5 ${NAME}.sha ~/dosel/binaries
3434

Dockerfile

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ RUN export SELBASE="https://selenium-release.storage.googleapis.com" \
235235
#============
236236
# Selenium 3
237237
#============
238-
# Layer size: medium: 22.14 MB
238+
# Layer size: medium ~22 MB
239239
ENV SEL_DIRECTORY="3.2" \
240240
SEL_VER="3.2.0"
241241
RUN export SELBASE="https://selenium-release.storage.googleapis.com" \
@@ -244,6 +244,8 @@ RUN export SELBASE="https://selenium-release.storage.googleapis.com" \
244244
&& ln -s "selenium-server-standalone-${SEL_VER}.jar" \
245245
"selenium-server-standalone-3.jar"
246246

247+
LABEL selenium_version "3.2.0"
248+
247249
#=============================
248250
# sudo by default from now on
249251
#=============================
@@ -553,6 +555,7 @@ RUN wget -nv "${FF_URL}" -O "firefox.tar.bz2" \
553555

554556
LABEL selenium2_firefox_version "47.0.1"
555557
LABEL selenium3_firefox_version "51.0.1"
558+
LABEL selenium_firefox_version "51.0.1"
556559

557560
#=============================
558561
# sudo by default from now on
@@ -577,13 +580,14 @@ RUN wget --no-verbose -O geckodriver.tar.gz \
577580
#===============
578581
# TODO: Use Google fingerprint to verify downloads
579582
# https://www.google.de/linuxrepositories/
580-
ENV CHROME_VERSION_TRIGGER="57.0.2987.98" \
583+
ENV CHROME_VERSION_TRIGGER="57.0.2987.110" \
581584
CHROME_URL="https://dl.google.com/linux/direct" \
582585
CHROME_BASE_DEB_PATH="/home/seluser/chrome-deb/google-chrome" \
583586
GREP_ONLY_NUMS_VER="[0-9.]{2,20}"
584587

585-
LABEL selenium2_chrome_version "57.0.2987.98"
586-
LABEL selenium3_chrome_version "57.0.2987.98"
588+
LABEL selenium2_chrome_version "57.0.2987.110"
589+
LABEL selenium3_chrome_version "57.0.2987.110"
590+
LABEL selenium_chrome_version "57.0.2987.110"
587591

588592
# Layer size: huge: 196.3 MB
589593
RUN apt-get -qqy update \

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.0-p0
1+
3.2.0-p1

capabilities.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"caps": [
33
{
44
"BROWSER_NAME": "chrome",
5-
"VERSION": "57.0.2987.98",
5+
"VERSION": "57.0.2987.110",
66
"PLATFORM": "LINUX"
77
},
88
{

capabilities2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"caps": [
33
{
44
"BROWSER_NAME": "chrome",
5-
"VERSION": "57.0.2987.98",
5+
"VERSION": "57.0.2987.110",
66
"PLATFORM": "LINUX"
77
},
88
{

capabilities3.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"caps": [
33
{
44
"BROWSER_NAME": "chrome",
5-
"VERSION": "57.0.2987.98",
5+
"VERSION": "57.0.2987.110",
66
"PLATFORM": "LINUX"
77
},
88
{

0 commit comments

Comments
 (0)