Skip to content

Commit

Permalink
Release version 1.1.9
Browse files Browse the repository at this point in the history
  * Bump shell version to 8.0.14
  * Bump server and image versions
  * Fix generation of latest tag
  * Update readme
  • Loading branch information
MySQL Build Team committed Jan 21, 2019
1 parent 2383942 commit 1e2e6da
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions 5.5/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
set -e

echo "[Entrypoint] MySQL Docker Image 5.5.62-1.1.8"
echo "[Entrypoint] MySQL Docker Image 5.5.62-1.1.9"
# Fetch value from server config
# We use mysqld --verbose --help instead of my_print_defaults because the
# latter only show values present in config files, and not server defaults
Expand Down Expand Up @@ -202,7 +202,7 @@ password=healthcheckpass
EOF
touch /mysql-init-complete
chown -R mysql:mysql "$DATADIR"
echo "[Entrypoint] Starting MySQL 5.5.62-1.1.8"
echo "[Entrypoint] Starting MySQL 5.5.62-1.1.9"
fi

exec "$@"
Expand Down
2 changes: 1 addition & 1 deletion 5.6/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
FROM oraclelinux:7-slim

ARG MYSQL_SERVER_PACKAGE=mysql-community-server-minimal-5.6.42
ARG MYSQL_SERVER_PACKAGE=mysql-community-server-minimal-5.6.43
ARG MYSQL_SHELL_PACKAGE=

# Install server
Expand Down
4 changes: 2 additions & 2 deletions 5.6/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
set -e

echo "[Entrypoint] MySQL Docker Image 5.6.42-1.1.8"
echo "[Entrypoint] MySQL Docker Image 5.6.43-1.1.9"
# Fetch value from server config
# We use mysqld --verbose --help instead of my_print_defaults because the
# latter only show values present in config files, and not server defaults
Expand Down Expand Up @@ -202,7 +202,7 @@ password=healthcheckpass
EOF
touch /mysql-init-complete
chown -R mysql:mysql "$DATADIR"
echo "[Entrypoint] Starting MySQL 5.6.42-1.1.8"
echo "[Entrypoint] Starting MySQL 5.6.43-1.1.9"
fi

exec "$@"
Expand Down
2 changes: 1 addition & 1 deletion 5.6/inspec/control.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
impact 0.5
describe package('mysql-community-server-minimal') do
it { should be_installed }
its ('version') { should match '5.6.42.*' }
its ('version') { should match '5.6.43.*' }
end
end
4 changes: 2 additions & 2 deletions 5.7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
FROM oraclelinux:7-slim

ARG MYSQL_SERVER_PACKAGE=mysql-community-server-minimal-5.7.24
ARG MYSQL_SHELL_PACKAGE=mysql-shell-8.0.13
ARG MYSQL_SERVER_PACKAGE=mysql-community-server-minimal-5.7.25
ARG MYSQL_SHELL_PACKAGE=mysql-shell-8.0.14

# Install server
RUN yum install -y https://repo.mysql.com/mysql-community-minimal-release-el7.rpm \
Expand Down
4 changes: 2 additions & 2 deletions 5.7/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
set -e

echo "[Entrypoint] MySQL Docker Image 5.7.24-1.1.8"
echo "[Entrypoint] MySQL Docker Image 5.7.25-1.1.9"
# Fetch value from server config
# We use mysqld --verbose --help instead of my_print_defaults because the
# latter only show values present in config files, and not server defaults
Expand Down Expand Up @@ -202,7 +202,7 @@ password=healthcheckpass
EOF
touch /mysql-init-complete
chown -R mysql:mysql "$DATADIR"
echo "[Entrypoint] Starting MySQL 5.7.24-1.1.8"
echo "[Entrypoint] Starting MySQL 5.7.25-1.1.9"
fi

exec "$@"
Expand Down
4 changes: 2 additions & 2 deletions 5.7/inspec/control.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
impact 0.5
describe package('mysql-community-server-minimal') do
it { should be_installed }
its ('version') { should match '5.7.24.*' }
its ('version') { should match '5.7.25.*' }
end
end
control 'shell-package' do
impact 0.5
describe package('mysql-shell') do
it { should be_installed }
its ('version') { should match '8.0.13.*' }
its ('version') { should match '8.0.14.*' }
end
end
4 changes: 2 additions & 2 deletions 8.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
FROM oraclelinux:7-slim

ARG MYSQL_SERVER_PACKAGE=mysql-community-server-minimal-8.0.13
ARG MYSQL_SHELL_PACKAGE=mysql-shell-8.0.13
ARG MYSQL_SERVER_PACKAGE=mysql-community-server-minimal-8.0.14
ARG MYSQL_SHELL_PACKAGE=mysql-shell-8.0.14

# Install server
RUN yum install -y https://repo.mysql.com/mysql-community-minimal-release-el7.rpm \
Expand Down
4 changes: 2 additions & 2 deletions 8.0/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
set -e

echo "[Entrypoint] MySQL Docker Image 8.0.13-1.1.8"
echo "[Entrypoint] MySQL Docker Image 8.0.14-1.1.9"
# Fetch value from server config
# We use mysqld --verbose --help instead of my_print_defaults because the
# latter only show values present in config files, and not server defaults
Expand Down Expand Up @@ -202,7 +202,7 @@ password=healthcheckpass
EOF
touch /mysql-init-complete
chown -R mysql:mysql "$DATADIR"
echo "[Entrypoint] Starting MySQL 8.0.13-1.1.8"
echo "[Entrypoint] Starting MySQL 8.0.14-1.1.9"
fi

exec "$@"
Expand Down
4 changes: 2 additions & 2 deletions 8.0/inspec/control.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
impact 0.5
describe package('mysql-community-server-minimal') do
it { should be_installed }
its ('version') { should match '8.0.13.*' }
its ('version') { should match '8.0.14.*' }
end
end
control 'shell-package' do
impact 0.5
describe package('mysql-shell') do
it { should be_installed }
its ('version') { should match '8.0.13.*' }
its ('version') { should match '8.0.14.*' }
end
end

0 comments on commit 1e2e6da

Please sign in to comment.