Skip to content

Commit 64fd620

Browse files
author
MySQL Build Team
committed
1.1.3 release
1 parent 3df656c commit 64fd620

File tree

10 files changed

+25
-25
lines changed

10 files changed

+25
-25
lines changed

5.5/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1515
FROM oraclelinux:7-slim
1616

17-
ARG PACKAGE_URL=https://repo.mysql.com/yum/mysql-5.5-community/docker/x86_64/mysql-community-server-minimal-5.5.58-2.el7.x86_64.rpm
17+
ARG PACKAGE_URL=https://repo.mysql.com/yum/mysql-5.5-community/docker/x86_64/mysql-community-server-minimal-5.5.59-2.el7.x86_64.rpm
1818
ARG PACKAGE_URL_SHELL=""
1919

2020
# Install server

5.5/docker-entrypoint.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1616
set -e
1717

18-
echo "[Entrypoint] MySQL Docker Image 5.5.58-1.1.2"
18+
echo "[Entrypoint] MySQL Docker Image 5.5.59-1.1.3"
1919
# Fetch value from server config
2020
# We use mysqld --verbose --help instead of my_print_defaults because the
2121
# latter only show values present in config files, and not server defaults
@@ -116,7 +116,7 @@ if [ "$1" = 'mysqld' ]; then
116116
GRANT PROXY ON ''@'' TO 'root'@'${MYSQL_ROOT_HOST}' WITH GRANT OPTION ;"
117117
fi
118118
"${mysql[@]}" <<-EOSQL
119-
DELETE FROM mysql.user WHERE user NOT IN ('mysql.session', 'mysql.sys', 'root') OR host NOT IN ('localhost');
119+
DELETE FROM mysql.user WHERE user NOT IN ('mysql.infoschema', 'mysql.session', 'mysql.sys', 'root') OR host NOT IN ('localhost');
120120
CREATE USER 'healthchecker'@'localhost' IDENTIFIED BY 'healthcheckpass';
121121
${ROOTCREATE}
122122
FLUSH PRIVILEGES ;
@@ -202,7 +202,7 @@ password=healthcheckpass
202202
EOF
203203
touch /mysql-init-complete
204204
chown -R mysql:mysql "$DATADIR"
205-
echo "[Entrypoint] Starting MySQL 5.5.58-1.1.2"
205+
echo "[Entrypoint] Starting MySQL 5.5.59-1.1.3"
206206
fi
207207

208208
exec "$@"

5.6/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1515
FROM oraclelinux:7-slim
1616

17-
ARG PACKAGE_URL=https://repo.mysql.com/yum/mysql-5.6-community/docker/x86_64/mysql-community-server-minimal-5.6.38-2.el7.x86_64.rpm
17+
ARG PACKAGE_URL=https://repo.mysql.com/yum/mysql-5.6-community/docker/x86_64/mysql-community-server-minimal-5.6.39-2.el7.x86_64.rpm
1818
ARG PACKAGE_URL_SHELL=""
1919

2020
# Install server

5.6/docker-entrypoint.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1616
set -e
1717

18-
echo "[Entrypoint] MySQL Docker Image 5.6.38-1.1.2"
18+
echo "[Entrypoint] MySQL Docker Image 5.6.39-1.1.3"
1919
# Fetch value from server config
2020
# We use mysqld --verbose --help instead of my_print_defaults because the
2121
# latter only show values present in config files, and not server defaults
@@ -116,7 +116,7 @@ if [ "$1" = 'mysqld' ]; then
116116
GRANT PROXY ON ''@'' TO 'root'@'${MYSQL_ROOT_HOST}' WITH GRANT OPTION ;"
117117
fi
118118
"${mysql[@]}" <<-EOSQL
119-
DELETE FROM mysql.user WHERE user NOT IN ('mysql.session', 'mysql.sys', 'root') OR host NOT IN ('localhost');
119+
DELETE FROM mysql.user WHERE user NOT IN ('mysql.infoschema', 'mysql.session', 'mysql.sys', 'root') OR host NOT IN ('localhost');
120120
CREATE USER 'healthchecker'@'localhost' IDENTIFIED BY 'healthcheckpass';
121121
${ROOTCREATE}
122122
FLUSH PRIVILEGES ;
@@ -202,7 +202,7 @@ password=healthcheckpass
202202
EOF
203203
touch /mysql-init-complete
204204
chown -R mysql:mysql "$DATADIR"
205-
echo "[Entrypoint] Starting MySQL 5.6.38-1.1.2"
205+
echo "[Entrypoint] Starting MySQL 5.6.39-1.1.3"
206206
fi
207207

208208
exec "$@"

5.7/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1515
FROM oraclelinux:7-slim
1616

17-
ARG PACKAGE_URL=https://repo.mysql.com/yum/mysql-5.7-community/docker/x86_64/mysql-community-server-minimal-5.7.20-1.el7.x86_64.rpm
18-
ARG PACKAGE_URL_SHELL=https://repo.mysql.com/yum/mysql-tools-community/el/7/x86_64/mysql-shell-1.0.10-1.el7.x86_64.rpm
17+
ARG PACKAGE_URL=https://repo.mysql.com/yum/mysql-5.7-community/docker/x86_64/mysql-community-server-minimal-5.7.21-1.el7.x86_64.rpm
18+
ARG PACKAGE_URL_SHELL=https://repo.mysql.com/yum/mysql-tools-community/el/7/x86_64/mysql-shell-1.0.11-1.el7.x86_64.rpm
1919

2020
# Install server
2121
RUN rpmkeys --import https://repo.mysql.com/RPM-GPG-KEY-mysql \

5.7/docker-entrypoint.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1616
set -e
1717

18-
echo "[Entrypoint] MySQL Docker Image 5.7.20-1.1.2"
18+
echo "[Entrypoint] MySQL Docker Image 5.7.21-1.1.3"
1919
# Fetch value from server config
2020
# We use mysqld --verbose --help instead of my_print_defaults because the
2121
# latter only show values present in config files, and not server defaults
@@ -116,7 +116,7 @@ if [ "$1" = 'mysqld' ]; then
116116
GRANT PROXY ON ''@'' TO 'root'@'${MYSQL_ROOT_HOST}' WITH GRANT OPTION ;"
117117
fi
118118
"${mysql[@]}" <<-EOSQL
119-
DELETE FROM mysql.user WHERE user NOT IN ('mysql.session', 'mysql.sys', 'root') OR host NOT IN ('localhost');
119+
DELETE FROM mysql.user WHERE user NOT IN ('mysql.infoschema', 'mysql.session', 'mysql.sys', 'root') OR host NOT IN ('localhost');
120120
CREATE USER 'healthchecker'@'localhost' IDENTIFIED BY 'healthcheckpass';
121121
${ROOTCREATE}
122122
FLUSH PRIVILEGES ;
@@ -202,7 +202,7 @@ password=healthcheckpass
202202
EOF
203203
touch /mysql-init-complete
204204
chown -R mysql:mysql "$DATADIR"
205-
echo "[Entrypoint] Starting MySQL 5.7.20-1.1.2"
205+
echo "[Entrypoint] Starting MySQL 5.7.21-1.1.3"
206206
fi
207207

208208
exec "$@"

8.0/docker-entrypoint.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1616
set -e
1717

18-
echo "[Entrypoint] MySQL Docker Image 8.0.3-1.1.2"
18+
echo "[Entrypoint] MySQL Docker Image 8.0.3-1.1.3"
1919
# Fetch value from server config
2020
# We use mysqld --verbose --help instead of my_print_defaults because the
2121
# latter only show values present in config files, and not server defaults
@@ -116,7 +116,7 @@ if [ "$1" = 'mysqld' ]; then
116116
GRANT PROXY ON ''@'' TO 'root'@'${MYSQL_ROOT_HOST}' WITH GRANT OPTION ;"
117117
fi
118118
"${mysql[@]}" <<-EOSQL
119-
DELETE FROM mysql.user WHERE user NOT IN ('mysql.session', 'mysql.sys', 'root') OR host NOT IN ('localhost');
119+
DELETE FROM mysql.user WHERE user NOT IN ('mysql.infoschema', 'mysql.session', 'mysql.sys', 'root') OR host NOT IN ('localhost');
120120
CREATE USER 'healthchecker'@'localhost' IDENTIFIED BY 'healthcheckpass';
121121
${ROOTCREATE}
122122
FLUSH PRIVILEGES ;
@@ -202,7 +202,7 @@ password=healthcheckpass
202202
EOF
203203
touch /mysql-init-complete
204204
chown -R mysql:mysql "$DATADIR"
205-
echo "[Entrypoint] Starting MySQL 8.0.3-1.1.2"
205+
echo "[Entrypoint] Starting MySQL 8.0.3-1.1.3"
206206
fi
207207

208208
exec "$@"

VERSION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ VERSION_DOCKER=1.1.3
22
VERSION_SERVER_55=5.5.59
33
VERSION_SERVER_56=5.6.39
44
VERSION_SERVER_57=5.7.21
5-
VERSION_SERVER_80=8.0.4
6-
VERSION_SHELL_10=1.0.10
5+
VERSION_SERVER_80=8.0.3
6+
VERSION_SHELL_10=1.0.11
77
VERSION_SHELL_80=8.0.3

changelog

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Changes in 1.1.3 (Not yet released)
2-
* Added support for new infoschema system user in 8.0.4
3-
* Bumped server versions to 5.5.59, 5.6.39, 5.7.21, 8.0.4
1+
Changes in 1.1.3 (2018-01-15)
2+
* Bumped server versions to 5.5.59, 5.6.39, 5.7.21
3+
* Bumped Shell 1.0 version to 1.0.11
44

55
Changes in 1.1.2 (2017-10-16)
66
* Bumped server versions to 5.5.58, 5.6.38, 5.7.20

genOracleLinux.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ SERVER_VERSION_FULL["5.7"]="${VERSION_SERVER_57}-${VERSION_DOCKER}"
2828
SERVER_VERSION_FULL["8.0"]="${VERSION_SERVER_80}-${VERSION_DOCKER}"
2929

3030
declare -A PACKAGE_URL
31-
PACKAGE_URL["5.5"]="https://repo.mysql.com/yum/mysql-5.5-community/docker/x86_64/mysql-community-server-minimal-5.5.58-2.el7.x86_64.rpm"
32-
PACKAGE_URL["5.6"]="https://repo.mysql.com/yum/mysql-5.6-community/docker/x86_64/mysql-community-server-minimal-5.6.38-2.el7.x86_64.rpm"
33-
PACKAGE_URL["5.7"]="https://repo.mysql.com/yum/mysql-5.7-community/docker/x86_64/mysql-community-server-minimal-5.7.20-1.el7.x86_64.rpm"
31+
PACKAGE_URL["5.5"]="https://repo.mysql.com/yum/mysql-5.5-community/docker/x86_64/mysql-community-server-minimal-5.5.59-2.el7.x86_64.rpm"
32+
PACKAGE_URL["5.6"]="https://repo.mysql.com/yum/mysql-5.6-community/docker/x86_64/mysql-community-server-minimal-5.6.39-2.el7.x86_64.rpm"
33+
PACKAGE_URL["5.7"]="https://repo.mysql.com/yum/mysql-5.7-community/docker/x86_64/mysql-community-server-minimal-5.7.21-1.el7.x86_64.rpm"
3434
PACKAGE_URL["8.0"]="https://repo.mysql.com/yum/mysql-8.0-community/docker/x86_64/mysql-community-server-minimal-8.0.3-0.1.rc.el7.x86_64.rpm"
3535

3636
declare -A PACKAGE_URL_SHELL
3737
PACKAGE_URL_SHELL["5.5"]="\"\""
3838
PACKAGE_URL_SHELL["5.6"]="\"\""
39-
PACKAGE_URL_SHELL["5.7"]="https://repo.mysql.com/yum/mysql-tools-community/el/7/x86_64/mysql-shell-1.0.10-1.el7.x86_64.rpm"
39+
PACKAGE_URL_SHELL["5.7"]="https://repo.mysql.com/yum/mysql-tools-community/el/7/x86_64/mysql-shell-1.0.11-1.el7.x86_64.rpm"
4040
PACKAGE_URL_SHELL["8.0"]="https://repo.mysql.com/yum/mysql-tools-preview/el/7/x86_64/mysql-shell-8.0.3-0.1.dmr.el7.x86_64.rpm"
4141

4242
# 33060 is the default port for the mysqlx plugin, new to 5.7

0 commit comments

Comments
 (0)