0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-22 11:07:57 +01:00

Release note for #12310 / document support for MariaDB

This commit is contained in:
Matt Westcott 2024-09-12 19:11:22 +01:00
parent 2eb976a96b
commit 4e4fac003b
4 changed files with 4 additions and 2 deletions

View File

@ -5,6 +5,7 @@ Changelog
~~~~~~~~~~~~~~~~
* Add formal support for Django 5.1 (Matt Westcott)
* Formalize support for MariaDB (Sage Abdullah)
* Redirect to the last viewed listing page after deleting form submissions (Matthias Brück)
* Provide `getTextLabel` method on date / time StreamField blocks (Vaughn Dickson)
* Purge frontend cache when modifying redirects (Jake Howard)

View File

@ -86,7 +86,7 @@ Wagtail supports:
- Django 4.2.x, 5.0.x and 5.1.x
- Python 3.9, 3.10, 3.11 and 3.12
- PostgreSQL, MySQL and SQLite (with JSON1) as database backends
- PostgreSQL, MySQL, MariaDB and SQLite (with JSON1) as database backends
[Previous versions of Wagtail](https://docs.wagtail.org/en/stable/releases/upgrading.html#compatible-django-python-versions) additionally supported Python 2.7, 3.8 and earlier Django versions.

View File

@ -88,7 +88,7 @@ For details on configuring Wagtail for Elasticsearch, see [](wagtailsearch_backe
## Database
Wagtail is tested on PostgreSQL, SQLite, and MySQL. It may work on some third-party database backends as well, but this is not guaranteed.
Wagtail is tested on PostgreSQL, SQLite, MySQL and MariaDB. It may work on some third-party database backends as well, but this is not guaranteed.
We recommend PostgreSQL for production use, however, the choice of database ultimately depends on a combination of factors, including personal preference, team expertise, and specific project requirements. The most important aspect is to ensure that your selected database can meet the performance and scalability requirements of your project.

View File

@ -17,6 +17,7 @@ This release adds formal support for Django 5.1.
### Other features
* Formalize support for MariaDB (Sage Abdullah)
* Redirect to the last viewed listing page after deleting form submissions (Matthias Brück)
* Provide `getTextLabel` method on date / time StreamField blocks (Vaughn Dickson)
* Purge frontend cache when modifying redirects (Jake Howard)