Skip to content

Commit

Permalink
env: Fix mariadb version to LTS (#59237)
Browse files Browse the repository at this point in the history
* env: Fix mariadb version to LTS

* Update changelog

Co-authored-by: t-hamano <wildworks@git.wordpress.org>
Co-authored-by: swissspidy <swissspidy@git.wordpress.org>
Co-authored-by: youknowriad <youknowriad@git.wordpress.org>
Co-authored-by: jonathanbossenger <psykro@git.wordpress.org>
Co-authored-by: ravinderk <ravinderk@git.wordpress.org>
  • Loading branch information
6 people authored Feb 21, 2024
1 parent 1eadcb9 commit b7e936b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions packages/env/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

### Bug fix

- Fix `mariadb` version to LTS [#59237](https://github.com/WordPress/gutenberg/pull/59237)

## 9.3.0 (2024-02-09)

## 9.2.0 (2024-01-24)
Expand Down
4 changes: 2 additions & 2 deletions packages/env/lib/build-docker-compose-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ module.exports = function buildDockerComposeConfig( config ) {
version: '3.7',
services: {
mysql: {
image: 'mariadb',
image: 'mariadb:lts',
ports: [ '3306' ],
environment: {
MYSQL_ROOT_HOST: '%',
Expand All @@ -183,7 +183,7 @@ module.exports = function buildDockerComposeConfig( config ) {
volumes: [ 'mysql:/var/lib/mysql' ],
},
'tests-mysql': {
image: 'mariadb',
image: 'mariadb:lts',
ports: [ '3306' ],
environment: {
MYSQL_ROOT_HOST: '%',
Expand Down

0 comments on commit b7e936b

Please sign in to comment.