Skip to content

Commit 1005249

Browse files
authored
Merge pull request #115 from stronk7/mariadb_10.5_sticky
Make mariadb:10.5 sticky
2 parents cb78c5d + 1db98ba commit 1005249

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

docs/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt
1414
[.travis.dist.yml](https://github.com/moodlehq/moodle-plugin-ci/blob/master/.travis.dist.yml)
1515
to use PostgreSQL 10 (Moodle 4.0 new requirement).
1616
- ACTION REQUIRED: Existing integrations running tests with PostgreSQL now need to use version 10 or newer.
17+
- ACTION REQUIRED: Existing integrations running tests with MariaDB must avoid using the 10.6 version and use 10.5 instead. It comes with some changes making it incompatible with Moodle default installation. To achieve that, just look for any use of `image: mariadb:10` and change it to `image: mariadb:10.5`. This is being tracked @ [MDL-72131]( https://tracker.moodle.org/browse/MDL-72131) and, once fixed, it will be possible to go back to the original image.
1718

1819
## [3.1.0] - 2021-05-14
1920
### Added

docs/GHAFileExplained.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- 5432:5432
4040
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3
4141
mariadb:
42-
image: mariadb:10
42+
image: mariadb:10.5
4343
env:
4444
MYSQL_USER: 'root'
4545
MYSQL_ALLOW_EMPTY_PASSWORD: "true"

gha.dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- 5432:5432
1717
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3
1818
mariadb:
19-
image: mariadb:10
19+
image: mariadb:10.5
2020
env:
2121
MYSQL_USER: 'root'
2222
MYSQL_ALLOW_EMPTY_PASSWORD: "true"

0 commit comments

Comments
 (0)