Skip to content

Commit 9908a9d

Browse files
authored
Merge pull request #157 from stronk7/unpin_mariadb
Unpin MariaDB
2 parents 5e10674 + 4907b25 commit 9908a9d

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

docs/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
99
The format of this change log follows the advice given at [Keep a CHANGELOG](http://keepachangelog.com).
1010

1111
## [Unreleased]
12-
No unreleased changes.
12+
### Changed
13+
- ACTION SUGGESTED: Now, it's safe to 'unpin' the MariaDB version in all integrations. With MariaDB 10.6.7 and 10.7.3 already released, the existing problems are gone, so it's possible to move away from the older 10.5 version. To achieve that, just look for any use of `image: mariadb:10.5` and change it to `image: mariadb:10`. For more information, see [MDL-72131](https://tracker.moodle.org/browse/MDL-72131).
1314

1415
## [3.2.4] - 2022-01-17
1516
### Changed

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.5
42+
image: mariadb:10
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.5
19+
image: mariadb:10
2020
env:
2121
MYSQL_USER: 'root'
2222
MYSQL_ALLOW_EMPTY_PASSWORD: "true"

0 commit comments

Comments
 (0)