@wordpress/env 9.3.0 → 9.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -172,7 +172,7 @@ module.exports = function buildDockerComposeConfig( config ) {
172
172
  version: '3.7',
173
173
  services: {
174
174
  mysql: {
175
- image: 'mariadb',
175
+ image: 'mariadb:lts',
176
176
  ports: [ '3306' ],
177
177
  environment: {
178
178
  MYSQL_ROOT_HOST: '%',
@@ -183,7 +183,7 @@ module.exports = function buildDockerComposeConfig( config ) {
183
183
  volumes: [ 'mysql:/var/lib/mysql' ],
184
184
  },
185
185
  'tests-mysql': {
186
- image: 'mariadb',
186
+ image: 'mariadb:lts',
187
187
  ports: [ '3306' ],
188
188
  environment: {
189
189
  MYSQL_ROOT_HOST: '%',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/env",
3
- "version": "9.3.0",
3
+ "version": "9.4.0",
4
4
  "description": "A zero-config, self contained local WordPress environment for development and testing.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -51,5 +51,5 @@
51
51
  "scripts": {
52
52
  "test": "echo \"Error: run tests from root\" && exit 1"
53
53
  },
54
- "gitHead": "eb796371e9630636a4a8837033807b0c4a06ed67"
54
+ "gitHead": "c139588f4c668b38bafbc5431f2f4e3903dbe683"
55
55
  }