Releases: docksal/service-mysql
Releases · docksal/service-mysql
v2.0.2
v2.0.1
v2.0.0
This is a MAJOR release, which may introduce breaking changes.
- Building multi-arch images (amd64 + arm64)
- Switched to Oracle Linux based upstream image (mysql:8.0-oracle)
- Dropped MySQL 5.7 (not available for arm64)
- Github Actions overhaul to support arm64 builds
v1.6.0
v1.5.1
v1.5.0
v1.4.0
- Renamed repo to https://github.com/docksal/service-mysql
- Renamed image to
docksal/mysql
- Dropped MySQL 5.5 (EOL since Dec 2015)
- The latest MySQL 5.5 image for Docksal is
docksal/db:1.3-mysql-5.5
- The latest MySQL 5.5 image for Docksal is
- Refactored image build process
- Updated README and LICENSE year
v1.3.0
- Refactored images to preserve compatibility with upstream (#8)
- Added support to run a startup script as root
- Scripts should be placed in the
/docker-entrypoint.d/
folder
- Scripts should be placed in the
- MySQL 5.5: fix
PATH
in/etc/profile
to include MySQL binaries (#11) - Using pinned upstream image versions to avoid unexpected breaking changes coming from upstream
- Added Docker heathcheck support
- Updated tests
v1.2.0
- MySQL settings
- Adjusted
innodb_log_file_size
andinnodb_log_buffer_size
(#2)innodb_log_file_size = 128MB
innodb_log_buffer_size = 8M
seems to be sufficient (was 32MB)
- Using multi-byte UTF (
utf8mb4
) encoding by default (#3) - Using
collation_server = utf8mb4_0900_ai_ci
in MySQL 8.0utf8mb4_0900_ai_ci
is the new default collation in MySQL 8.0.1 and later
- Adjusted
- Added automated tests (#4)
- Image are now built and published to Docker Hub by Travis CI
- Updated
docker-entrypoint.sh
scripts from upstream