Skip to content

Commit

Permalink
#112: Update MariaDB available versions to 10.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
reynoldsalec committed Apr 28, 2022
1 parent 0db67f1 commit cb3af89
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions examples/drupal9/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ lando ssh -c "env" | grep TERMINUS_USER | grep [email protected]
cd drupal9
lando php -v | grep "PHP 8.0"

# Should use the database version in pantheon.yml
cd drupal9
lando ssh -s database -c "mysql -V" | grep 10.6.

# Should use a varnish http_resp_hdr_len setting of 25k
cd drupal9
lando varnishadm param.show http_resp_hdr_len | grep 'Value is: 25k'
Expand Down
3 changes: 2 additions & 1 deletion services/pantheon-mariadb/builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ module.exports = {
name: 'pantheon-mariadb',
config: {
version: '10.3', // @todo: this will probably be 10.3, check D6 support.
supported: ['10.4', '10.3', '10.1'],
supported: ['10.6', '10.4', '10.3', '10.1'],
legacy: ['10.1'],
pinPairs: {
'10.6': 'mariadb:10.6.7',
'10.4': 'mariadb:10.4.21',
'10.3': 'mariadb:10.3.31',
'10.1': 'mariadb:10.1.48',
Expand Down

0 comments on commit cb3af89

Please sign in to comment.