File tree Expand file tree Collapse file tree 6 files changed +6
-9
lines changed
Expand file tree Collapse file tree 6 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -131,10 +131,10 @@ function database_apply_default_dbtag() {
131131 if [[ " ${DBTAG} " == " auto" ]]; then
132132 case ${DBTYPE} in
133133 mariadb)
134- DBTAG=10.7 # Because there is a problem with the >= 10.8 images not working with older hosts OS .
134+ DBTAG=10.11 # Because it's the primary lowest supported version and we need it covered by default .
135135 ;;
136136 mysqli)
137- DBTAG=8.0 # Because it's the primary lowest supported version and we need it covered by default.
137+ DBTAG=8.4 # Because it's the primary lowest supported version and we need it covered by default.
138138 ;;
139139 sqlsrv)
140140 DBTAG=latest # No pin, right now 2019-latest
@@ -143,7 +143,7 @@ function database_apply_default_dbtag() {
143143 DBTAG=latest # No pin, right now this is 21c
144144 ;;
145145 pgsql)
146- DBTAG=13 # Because it's the primary lowest supported version and we need it covered by default.
146+ DBTAG=14 # Because it's the primary lowest supported version and we need it covered by default.
147147 ;;
148148 * )
149149 exit_error " Wrong DBTYPE: ${DBTYPE} . Fix it, or add support for that DBTYPE above"
@@ -183,4 +183,4 @@ function database_apply_config() {
183183 exit_error " Wrong DBTYPE: ${DBTYPE} . Fix it, or add support for that DBTYPE above"
184184 ;;
185185 esac
186- }
186+ }
Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ innodb_file_per_table = 1
66
77character-set-server = utf8mb4
88collation-server = utf8mb4_bin
9- skip-character-set-client-handshake
109
1110key_buffer_size = 768M
1211table_open_cache = 12000
Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ innodb_file_per_table = 1
66
77character-set-server = utf8mb4
88collation-server = utf8mb4_bin
9- skip-character-set-client-handshake
109
1110key_buffer_size = 768M
1211table_open_cache = 12000
Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ skip-log-bin
88
99character-set-server = utf8mb4
1010collation-server = utf8mb4_bin
11- skip-character-set-client-handshake
1211
1312key_buffer_size = 768M
1413table_open_cache = 12000
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ function docker-php_check() {
3939# Docker module init.
4040function docker-php_config() {
4141 # Apply some defaults (always set to the minimum version supported in the main branch).
42- PHP_VERSION=" ${PHP_VERSION:- 8.1 } "
42+ PHP_VERSION=" ${PHP_VERSION:- 8.2 } "
4343 DOCKER_PHP=" ${DOCKER_PHP:- moodlehq/ moodle-php-apache: ${PHP_VERSION} } "
4444 WEBSERVER=webserver" ${UUID} "
4545}
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ teardown() {
7474 run launch_runner
7575 assert_success
7676 assert_output --partial " == JOBTYPE: phpunit"
77- assert_output --partial " == PHP version: 8.1 "
77+ assert_output --partial " == PHP version: 8.2 "
7878 assert_output --partial " == DBTYPE: mysqli"
7979 assert_output --partial " == PHPUNIT_FILTER: label"
8080 assert_output --partial " == DBREPLICAS: 0"
You can’t perform that action at this time.
0 commit comments