All pages
Powered by GitBook
1 of 32

Release Notes - MariaDB 10.5 Series

MariaDB 10.5 is no longer maintained.

MariaDB 10.5 Changes & Improvements

MariaDB 10.5 is no longer maintained. Please use a more recent release.

The most recent release of MariaDB 10.5 is: MariaDB 10.5.28 Stable (GA) Download Now Alternate download from mariadb.org

MariaDB 10.5 is a previous major stable version The first stable release was in June 2020, and it was maintained until June 2025.

Upgrading

  • See Upgrading Between Major MariaDB Versions and Upgrading from MariaDB 10.4 to MariaDB 10.5.

Implemented Features

See the Differences in MariaDB Enterprise Server 10.5 page for items that are different between MariaDB Community Server 10.5 and MariaDB Enterprise Server 10.5.

ColumnStore

  • This release of MariaDB Server includes the MariaDB ColumnStore storage engine. Note, that plugins have independent maturity levels and MariaDB ColumnStore in 10.5.4 has Beta maturity.

Binaries Named mariadb (mysql Symlinked)

  • All binaries previously beginning with mysql now begin with mariadb, with symlinks for the corresponding mysql command. (MDEV-21303)

  • When starting the MariaDB server via the systemd service it will be started using the mariadbd binary name, so this will now show up in the system process list instead of mysqld

  • Same for the mariadbd-safe wrapper script. Even when called via the mysqld_safe symlink, it will start the actual server process as mariadbd, not mysqld now. This also affects startup via system service init scripts on platforms that don't yet have switched to SystemD

INET 6 Data Type

  • New INET6 data type for storing IPv6 addresses (MDEV-274)

Amazon S3

  • The S3 storage engine allows one to archive MariaDB tables in Amazon S3, or any third-party public or private cloud that implements S3 API ( MDEV-22606)

  • Both S3 tables and partitioned S3 tables are discoverable. This means that if you create a partitioned S3 table, both the partitioned table and its partitions can be directly used by another server that has access to the S3 storage. (MDEV-22088)

Privileges Made More Granular

  • Split SUPER privilege to smaller privileges (MDEV-21743). New privileges were added so that more fine grained tuning of what each user can do can be applied:

    • BINLOG ADMIN

    • BINLOG REPLAY

    • CONNECTION ADMIN

    • FEDERATED ADMIN

    • READ_ONLY ADMIN

    • REPLICATION MASTER ADMIN

    • REPLICATION SLAVE ADMIN

    • SET USER

  • The REPLICATION CLIENT privilege was renamed to BINLOG MONITOR. The old syntax is understood for compatibility (MDEV-21743).

  • The SHOW MASTER STATUS statement was renamed to SHOW BINLOG STATUS (MDEV-21743). The old syntax is understood for compatibility.

  • A number of statements changed the privileges that they require. The old privileges were historically inappropriately chosen in the upstream. 10.5.2 fixes this problem. Note, these changes are incompatible to previous versions. A number of GRANT commands might be needed after upgrade.

    • SHOW BINLOG EVENTS now requires the BINLOG MONITOR privilege (required REPLICATION SLAVE prior to 10.5.2).

    • SHOW SLAVE HOSTS now requires the REPLICATION MASTER ADMIN privilege (required REPLICATION SLAVE prior to 10.5.2).

    • SHOW SLAVE STATUS now requires the REPLICATION SLAVE ADMIN or the SUPER privilege (required REPLICATION CLIENT or SUPER prior to 10.5.2).

    • SHOW RELAYLOG EVENTS now requires the REPLICATION SLAVE ADMIN privilege (required REPLICATION SLAVE prior to 10.5.2).

  • In order to help the server understand which version a privilege record was written by, the mysql.global_priv.priv field contains a new JSON field, version_id (MDEV-21704)

  • SHOW PRIVILEGES now correctly lists the Delete history privilege, rather than displaying it as Delete versioning rows. (MDEV-20382)

InnoDB: Performance Improvements etc.

  • Extend SHOW STATUS LIKE 'Innodb_%' (MDEV-18582)

  • Clean up INFORMATION_SCHEMA.INNODB_ tables (MDEV-19940)

  • Doublewrite buffer is unnecessarily used for newly (re)initialized pages (MDEV-19738)

  • Defer change buffer merge until pages are requested (MDEV-19514)

  • Remove dummy tablespace for the redo log (MDEV-18115)

  • Optimize access to InnoDB page header fields (MDEV-21133)

  • Remove multiple InnoDB buffer pool instances (MDEV-15058)

    • Columns that indicated the buffer pool instance from the Information Schema innodb_buffer_page, innodb_buffer_page_lru, innodb_buffer_pool_stats, innodb_cmpmem and innodb_cmpmem_reset tables now return a dummy value of 0.

  • Remove buf_page_t::newest_modification (MDEV-21132)

  • Replace recv_sys_t::addr_hash with a std::map (MDEV-19586)

  • Obsolete internal parser for FK in InnoDB (MDEV-20480)

  • InnoDB thread pool for background tasks (MDEV-16264)

  • An upgrade will only be possible after a clean shutdown. mariadb-backup --prepare will not work with backups taken before version 10.5.2.

  • Efficient InnoDB redo log record format (MDEV-12353)

  • Improve InnoDB redo log group commit performance (MDEV-21534)

  • Do not acquire InnoDB record locks when covering table locks exist (MDEV-14479)

  • Issue a message on changing deprecated innodb_log_files_in_group (MDEV-21990)

  • Optimize append only files for NVDIMM (MDEV-17084)

  • Avoid writing freed InnoDB pages (MDEV-15528)

InnoDB New Defaults for Variables

  • innodb_adaptive_hash_index now defaults to OFF (MDEV-20487)

  • innodb_checksum_algorithm now defaults to full_crc32 (MDEV-19534)

InnoDB Removed or Deprecated Variables

  • innodb_buffer_pool_instances

  • innodb_checksums (MDEV-19534)

  • innodb_locks_unsafe_for_binlog (MDEV-19544)

  • innodb_log_checksums (MDEV-19543)

  • innodb_log_files_in_group (MDEV-14425 & MDEV-20907)

  • innodb_log_optimize_ddl (MDEV-19747)

  • innodb_rollback_segments (MDEV-19570)

  • innodb_scrub_log and innodb_scrub_log_speed (MDEV-21870)

  • Remove INFORMATION_SCHEMA.INNODB_TABLESPACES_SCRUBBING table and deprecate and ignore:

  • innodb-background-scrub-data-uncompressed

  • innodb-background-scrub-data-compressed

  • innodb-background-scrub-data-interval

  • innodb-background-scrub-data-check-interval (MDEV-15528)

  • innodb_stats_sample_pages (MDEV-19551)

  • innodb_undo_logs (MDEV-19570)

  • innodb_thread_concurrency

  • innodb_commit_concurrency

  • innodb_replication_delay

  • innodb_concurrency_tickets

  • innodb_thread_sleep_delay

  • innodb_adaptive_max_sleep_delay (MDEV-23379)

Performance Schema Updates to Match MySQL 5.7 Instrumentation and Tables

  • Memory (MDEV-16431)

  • Meta data locking (MDL) (MDEV-16432)

  • Prepared statements (ps) (MDEV-16433)

  • [show] status instrumentation and tables (MDEV-16438)

  • Stored procedures (MDEV-16434)

  • Sxlocks (MDEV-16436)

  • Transactions (MDEV-16435)

  • User variables (MDEV-16439)

Galera: Full GTID Support

  • Add full GTID support to Galera cluster (commit). With this feature all nodes in a cluster will have the same GTID for replicated events originating from the cluster. Also added a new variable, wsrep_gtid_seq_no, to manually update the WSREP GTID sequence number in the cluster (similar to how the gtid_seq_no variable is used for non-WSREP transactions).

  • Add new mode to wsrep_OSU_method in which Galera checks storage engine of the affected table (MDEV-20051)

  • Galera: Replicate MariaDB GTID to other nodes in the cluster (MDEV-20720)

Binary Log and Replication: More Metadata

  • slave_parallel_mode now defaults to optimistic (MDEV-18648).

  • Make REPLICA a synonym for SLAVE in SQL statements (MDEV-20601)

  • ENFORCE option for slave_run_triggers_for_rbr (MDEV-21833)

  • Extended binlog metadata (MDEV-20477) to include new fields. This was done to solve replication issues when the Master and Slave table had different definitions for a column which could lead to data loss (MDEV-19708). It also enables us to do better replication with pluggable data types in the future.

    • The new metadata fields are:

      • Signedness of Numeric Columns

      • Character Set of Character Columns and Binary Columns

      • Column Name

      • String Value of SET Columns

      • String Value of ENUM Columns

      • Primary Key

      • Character Set of SET Columns and ENUM Columns

      • Geometry Type

    • Also added a new global variable, binlog_row_metadata to control the amount of metadata logged. Possible values are:

      • FULL - all metadata is logged

      • MINIMAL - only metadata required by a worker is logged

      • NO_LOG - No metadata is logged (default)

  • Binary log DDL entries can now be marked that they should be ignored if the target table doesn't exist (implicit IF EXISTS).

  • mariadb-binlog output is extended to show all replication flags. Example of output: SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=0, @@session.unique_checks=1, @@session.autocommit=1, @@session.check_constraint_checks=1, @@session.sql_if_exists=0/*!*/.

  • SHOW BINLOG EVENTS and SHOW RELAYLOG EVENTS are extended to show replication flags.

Syntax

  • INSERT ... RETURNING (MDEV-10014) - returns SELECT of inserted rows (analogous to DELETE ... RETURNING)

  • REPLACE ... RETURNING (MDEV-10014)

  • EXCEPT ALL and INTERSECT ALL (MDEV-18844)

  • Application period tables: WITHOUT OVERLAPS (MDEV-16978)

  • Setup default partitions for system versioning (MDEV-19903)

  • Database comments in CREATE DATABASE and ALTER DATABASE statements (MDEV-307)

  • ALTER TABLE ... RENAME INDEX / KEY (MDEV-7318)

  • ALTER TABLE ... RENAME COLUMN (MDEV-16290)

  • ALTER TABLE and RENAME TABLE now support IF EXISTS.

  • Add VISIBLE attribute for indexes in CREATE TABLE (MDEV-22199)

  • Recursive CTE cycle detection using CYCLE clause (MDEV-20632)

  • RELEASE_ALL_LOCKS hold by GET_LOCK() (MDEV-10569)

  • Fix REFERENCES constraint in column definition (MDEV-20729)

JSON

  • Added JSON_ARRAYAGG. This returns a JSON array containing an element for each value in a given set of JSON or SQL values. It acts on a column or an expression that evaluates to a single value.

  • Added JSON_OBJECTAGG. This returns a JSON object containing key-value pairs. It takes two expressions that evaluate to a single value, or two column names, as arguments, the first used as a key, and the second as a value.

Thread Pool

  • Information Schema tables (THREAD_POOL_GROUPS, THREAD_POOL_QUEUES, THREAD_POOL_STATS and THREAD_POOL_WAITS) for internals of generic thread_pool (MDEV-19313).

Performance Improvements

  • Speed up binary row logging code

  • Range optimizer speedups. Removed double calls to records_in_range() for some cases.

  • Costs for using MEMORY tables updated to be more accurate

  • Fixed that 'ref' access is preferred over 'range' for the same index.

  • Improve connect speed (up to 25%). (MDEV-19515)

Query Optimizer

  • Improve Protocol performance for numeric data by avoiding unnecessary character string conversions (MDEV-23162, MDEV-23478)

  • ANALYZE for statements is improved, now it also shows the time spent checking the WHERE clause and doing other auxiliary operations (MDEV-20854)

  • Inferred IS NOT NULL predicates can be used by the range optimizer (MDEV-15777)

  • Allow packed sort keys and values of non-sorted fields in the sort buffer (MDEV-21263 & MDEV-21580)

    • Makes filesort temporary files much smaller when VARCHAR, CHAR or BLOBs are used!

General

  • The Information Schema SYSTEM_VARIABLES Table has a new column showing from which config file a variable derives its value (MDEV-12684)

  • Switch Perl DBI scripts from DBD::mysql to DBD::MariaDB driver (MDEV-19755)

  • The Aria max key length is now 2000 bytes, compared to 1000 bytes in MyISAM.

  • DROP TABLE now reliably deletes table remnants inside a storage engine even if the .frm file is missing (MDEV-11412)

  • Accelerated crc32() function for AMD64, ARMv8, POWER 8 (MDEV-22669)

  • Binary tarball size has been reduced (MDEV-21943)

PCRE (Perl Compatible Regular Expressions)

  • Migrate to PCRE2 (MDEV-14024), a newer version of the pcre library.

Variables

  • For a list of all new variables, see System Variables Added in MariaDB 10.5 and Status Variables Added in MariaDB 10.5.

  • The Information Schema SYSTEM_VARIABLES Table has a new column showing from which config file a variable derives its value (MDEV-12684).

  • Port show_old_temporals from MySQL 5.6 (MDEV-19906). If set, old temporal data types (created with a pre-10.0 version of MariaDB) are displayed with a /* mariadb-5.3 */ comment.

  • Numerous deprecated variables removed (MDEV-18650)

    • multi_range_count

    • thread_concurrency

    • timed_mutexes

Security Vulnerabilities Fixed in MariaDB 10.5

For a complete list of security vulnerabilities (CVEs) fixed across all versions of MariaDB, see the Security Vulnerabilities Fixed in MariaDB page.

  • CVE-2025-21490: MariaDB 10.5.28

  • CVE-2024-21096: MariaDB 10.5.25

  • CVE-2023-5157: MariaDB 10.5.17

  • CVE-2023-22084: MariaDB 10.5.23

  • CVE-2022-47015: MariaDB 10.5.20

  • CVE-2022-38791: MariaDB 10.5.17

  • CVE-2022-32091: MariaDB 10.5.17

  • CVE-2022-32089: MariaDB 10.5.17

  • CVE-2022-32088: MariaDB 10.5.16

  • CVE-2022-32087: MariaDB 10.5.16

  • CVE-2022-32086: MariaDB 10.5.16

  • CVE-2022-32085: MariaDB 10.5.16

  • CVE-2022-32084: MariaDB 10.5.17

  • CVE-2022-32083: MariaDB 10.5.16

  • CVE-2022-32082: MariaDB 10.5.17

  • CVE-2022-32081: MariaDB 10.5.17

  • CVE-2022-31624: MariaDB 10.5.13

  • CVE-2022-27458: MariaDB 10.5.16

  • CVE-2022-27457: MariaDB 10.5.16

  • CVE-2022-27456: MariaDB 10.5.16

  • CVE-2022-27455: MariaDB 10.5.16

  • CVE-2022-27452: MariaDB 10.5.16

  • CVE-2022-27451: MariaDB 10.5.16

  • CVE-2022-27449: MariaDB 10.5.16

  • CVE-2022-27448: MariaDB 10.5.16

  • CVE-2022-27447: MariaDB 10.5.16

  • CVE-2022-27446: MariaDB 10.5.16

  • CVE-2022-27445: MariaDB 10.5.16

  • CVE-2022-27444: MariaDB 10.5.16

  • CVE-2022-27387: MariaDB 10.5.16

  • CVE-2022-27386: MariaDB 10.5.16

  • CVE-2022-27385: MariaDB 10.5.13

  • CVE-2022-27384: MariaDB 10.5.16

  • CVE-2022-27383: MariaDB 10.5.16

  • CVE-2022-27382: MariaDB 10.5.16

  • CVE-2022-27381: MariaDB 10.5.16

  • CVE-2022-27380: MariaDB 10.5.16

  • CVE-2022-27379: MariaDB 10.5.16

  • CVE-2022-27378: MariaDB 10.5.16

  • CVE-2022-27377: MariaDB 10.5.16

  • CVE-2022-27376: MariaDB 10.5.16

  • CVE-2022-24052: MariaDB 10.5.14

  • CVE-2022-24051: MariaDB 10.5.14

  • CVE-2022-24050: MariaDB 10.5.14

  • CVE-2022-24048: MariaDB 10.5.14

  • CVE-2022-21595: MariaDB 10.5.14

  • CVE-2022-21451: MariaDB 10.5.10

  • CVE-2022-21427: MariaDB 10.5.7

  • CVE-2022-0778: MariaDB 10.5.14

  • CVE-2021-46669: MariaDB 10.5.16

  • CVE-2021-46668: MariaDB 10.5.15

  • CVE-2021-46667: MariaDB 10.5.13

  • CVE-2021-46666: MariaDB 10.5.11

  • CVE-2021-46665: MariaDB 10.5.15

  • CVE-2021-46664: MariaDB 10.5.15

  • CVE-2021-46663: MariaDB 10.5.15

  • CVE-2021-46662: MariaDB 10.5.13

  • CVE-2021-46661: MariaDB 10.5.15

  • CVE-2021-46659: MariaDB 10.5.14

  • CVE-2021-46658: MariaDB 10.5.12

  • CVE-2021-46657: MariaDB 10.5.11

  • CVE-2021-35604: MariaDB 10.5.13

  • CVE-2021-27928: MariaDB 10.5.9

  • CVE-2021-2389: MariaDB 10.5.12

  • CVE-2021-2372: MariaDB 10.5.12

  • CVE-2021-2194: MariaDB 10.5.7

  • CVE-2021-2166: MariaDB 10.5.10

  • CVE-2021-2154: MariaDB 10.5.10

  • CVE-2021-2022: MariaDB 10.5.5

  • CVE-2020-28912: MariaDB 10.5.7

  • CVE-2020-15180: MariaDB 10.5.6

  • CVE-2020-14812: MariaDB 10.5.7

  • CVE-2020-14789: MariaDB 10.5.7

  • CVE-2020-14776: MariaDB 10.5.7

  • CVE-2020-14765: MariaDB 10.5.7

  • CVE-2018-25032: MariaDB 10.5.17

Resources

  • 10.5 and beyond (video presentation by Sergei Golubchik)

List of All MariaDB 10.5 Releases

Date
Release
Status
Release Notes
Changelog

4 Feb 2025

MariaDB 10.5.28

Stable (GA)

Release Notes

Changelog

1 Nov 2024

MariaDB 10.5.27

Stable (GA)

Release Notes

Changelog

8 Aug 2024

MariaDB 10.5.26

Stable (GA)

Release Notes

Changelog

16 May 2024

MariaDB 10.5.25

Stable (GA)

Release Notes

Changelog

7 Feb 2024

MariaDB 10.5.24

Stable (GA)

Release Notes

Changelog

13 Nov 2023

MariaDB 10.5.23

Stable (GA)

Release Notes

Changelog

14 Aug 2023

MariaDB 10.5.22

Stable (GA)

Release Notes

Changelog

7 Jun 2023

MariaDB 10.5.21

Stable (GA)

Release Notes

Changelog

10 May 2023

MariaDB 10.5.20

Stable (GA)

Release Notes

Changelog

6 Feb 2023

MariaDB 10.5.19

Stable (GA)

Release Notes

Changelog

7 Nov 2022

MariaDB 10.5.18

Stable (GA)

Release Notes

Changelog

15 Aug 2022

MariaDB 10.5.17

Stable (GA)

Release Notes

Changelog

20 May 2022

MariaDB 10.5.16

Stable (GA)

Release Notes

Changelog

12 Feb 2022

MariaDB 10.5.15

Stable (GA)

Release Notes

Changelog

9 Feb 2022

MariaDB 10.5.14

Stable (GA)

Release Notes

Changelog

8 Nov 2021

MariaDB 10.5.13

Stable (GA)

Release Notes

Changelog

6 Aug 2021

MariaDB 10.5.12

Stable (GA)

Release Notes

Changelog

23 Jun 2021

MariaDB 10.5.11

Stable (GA)

Release Notes

Changelog

7 May 2021

MariaDB 10.5.10

Stable (GA)

Release Notes

Changelog

22 Feb 2021

MariaDB 10.5.9

Stable (GA)

Release Notes

Changelog

11 Nov 2020

MariaDB 10.5.8

Stable (GA)

Release Notes

Changelog

3 Nov 2020

MariaDB 10.5.7

Stable (GA)

Release Notes

Changelog

7 Oct 2020

MariaDB 10.5.6

Stable (GA)

Release Notes

Changelog

10 Aug 2020

MariaDB 10.5.5

Stable (GA)

Release Notes

Changelog

24 Jun 2020

MariaDB 10.5.4

Stable (GA)

Release Notes

Changelog

12 May 2020

MariaDB 10.5.3

RC

Release Notes

Changelog

26 Mar 2020

MariaDB 10.5.2

Beta

Release Notes

Changelog

14 Feb 2020

MariaDB 10.5.1

Beta

Release Notes

Changelog

3 Dec 2019

MariaDB 10.5.0

Alpha

Release Notes

Changelog

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.29 Release Notes

Note: This page describes features in the source repository for MariaDB 10.5. There are currently no official packages or binaries available for download which contain the features. If you want to try out any of the new features described here you will need to get and compile the code yourself.

DownloadRelease NotesChangelogOverview of 10.5Alternate download from mariadb.orgRelease date: ?

MariaDB 10.5 is a previous stable series of MariaDB, maintained until June 2025. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.29 is a Stable (GA) release.

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Items

Storage Engines

InnoDB

  • Incorrect undo logging for indexes on virtual columns whose index ID does not fit in 32 bits (MDEV-36613)

Spider

  • The untested ha_spider::index_first_internal constructs broken queries (MDEV-36324)

  • Unexpected error 1264 'Out of Range Value for Column' when inserting into ... select ... from a spider table (MDEV-35874)

  • Tests calling the udf spider_copy_tables fail with --view-protocol (MDEV-36335)

Data Definition - Alter Table

  • ALTER TABLE…SEQUENCE does not work correctly with InnoDB (MDEV-36038)

GIS

  • Server aborts while deleting the record in spatial index (MDEV-35420)

Upgrades

  • Upgrades fail on Windows (MDEV-36128)

OTHER

  • Field pointer may be uninitialized in fill_record (MDEV-36181)

  • Wrong results from tables with a single record and an aggregate (MDEV-35238)

Galera

  • With wsrep_ignore_apply_errors = 0, the node crashes due to assertion thd->is_error() failed in Sql_cmd_dml::prepare(), shown in the logs (MDEV-35946)

  • In some cases, if there are MDL locks (for example, when LOCK TABLE is executed), a node could get stuck in the system thread due to incorrect handling of metadata locks (MDL) in server code when a transaction was BF aborted. (MDEV-35941)

  • Regression after the fix for MDEV-31413 - sometimes the server crashes with an assertion in wsrep::transaction::before_rollback(), for example when using OPTIMIZE TABLE on an ARIA table with wsrep_osu_method=RSU. (MDEV-32631)

  • In Galera, creating sequence with a small cache leads to signal 6 error: [ERROR] WSREP: FSM: no such a transition REPLICATING -> COMMITTED. (MDEV-33850)

  • Assertion `commit_trx' failed in innobase_commit() (ha_innodb.cc). An INSERT with sql_log_bin=0 is still replicated in Galera (per MDEV-7205), despite binary logging being disabled. This results in a partial binlog bypass, requiring a two-phase commit (2PC). During 2PC, the INSERT is first prepared (entering the PREPARED state in InnoDB), and on commit, the new assertion from MDEV-24035 fails, causing a crash with "Assertion 'commit_trx' failed" in logs. (MDEV-35658)

  • When a sequence is used and inserts run in parallel on multiple Galera nodes, a transaction may be aborted after passing certification. If it then attempts to roll back, the binlog statement cache—which includes reserved sequence values—may be written prematurely. This causes a crash with the diagnostic "WSREP: FSM: no such a transition REPLICATING -> COMMITTED" in the logs, as the transaction is supposed to replay and only write to the binlog during the final commit. (MDEV-33589)

  • After a corrupted table on one node triggers the cluster to vote to evict a node that failed a transaction, the current master can't commit any more and hangs. To avoid this crash in the future, the user should also update the galera library to version 26.4.21+. (MDEV-34998)

  • Creating partitioned tables is disallowed when wsrep_osu_method=TOI and wsrep_strict_ddl=ON, preventing alteration or deletion of partitioned tables. (MDEV-27861)

  • Attempting to create a CONNECT engine table results in "non-InnoDB sequences in Galera cluster" error message in logs due to an incorrect engine check. (MDEV-35748)

  • Build fails with cmake 4.0.0 due to wsrep (MDEV-36422)

Partitioning

  • corruption when query cache cannot allocate block (MDEV-34075)

Data Manipulation - Update

  • Stack looping and SIGSEGV in Item_args::walk_args on UPDATE (MDEV-31647)

Server

  • Server crash in find_field_in_tables, Assertion `name' failed in find_field_in_table_ref (MDEV-25012)

  • Server crash when inserting from derived table containing insert target table (MDEV-32086)

  • MariaDB effectively running as root CAP_DAC_OVERRIDE (MDEV-36229)

  • Build fails with cmake 4.0 (MDEV-36506)

Plugin - Audit

  • Long server_audit_file_path causes buffer overflow (MDEV-36245)

Optimizer

  • group by handler missing constant fields when selecting from a view (MDEV-36307)

Security

  • Fixes for the following security vulnerabilities:

    • CVE-2025-30722

    • CVE-2025-30693

    • CVE-2023-52970

    • CVE-2023-52969

Changelog

For a complete list of changes made in MariaDB 10.5.29, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.29, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.28 Release Notes

DownloadRelease NotesChangelogOverview of 10.5

Alternate download from mariadb.org

Release date: 4 Feb 2025

MariaDB 10.5 is a previous stable series of MariaDB, maintained until June 2025. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.28 is a Stable (GA) release.

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Items

Storage Engines

InnoDB

  • Fix assertion failure on cascading foreign key update of table with vcol index in parent (MDEV-29182)

  • Fix issue where ON UPDATE SET NULL could not be specified on a NOT NULL column (MDEV-35445)

Memory

  • Fix possible crash on DELETE from a HEAP table (MDEV-22695)

Spider

  • Fix possible Spider thread hang in 'Update' state on 2nd INSERT (MDEV-35064)

Replication

  • Fix incorrect formatting of timestamp during mariadb-binlog parsing of a binary log, causing point in time recovery discrepancies (MDEV-31761)

  • mariadb-binlog can now correctly process more than one logfile when --stop-datetime is specified (MDEV-35528)

  • Setting pseudo_thread_id to a value exceeding 4 bytes previously resulted in truncation when written to the binary log (MDEV-35646)

Optimizer

  • Fix server crash in get_sort_by_table/make_join_statistics after INSERT into a view with ORDER BY (MDEV-29935)

  • Conditions with SP local variables are now pushed into derived table. Previous behaviour caused slow performance and table scans instead of using the pushed down condition (MDEV-35910)

  • NULL-aware materialization with IN predicate and single column no longer skips building sorted Ordered_key structures (MDEV-34665)

  • Fix possibly wrong result using a degenerated subquery (SELECT ) with window function (MDEV-35869)

Partitioning

  • History is now stored on the same partitions on different Galera nodes when system versioning is enabled (MDEV-35096)

  • Fix possible hang or crash during InnoDB purge with HASH indexes during ALTER TABLE (MDEV-25654)

  • EXCHANGE PARTITION now works for tables with unique blobs (MDEV-35612)

  • algorithm = instant can now correctly be used if a table has partitions and one tries to change a column with an index which is not the partitions key. This previously gave error "ERROR 1846 (0A000): ALGORITHM=INSTANT is not supported. Reason: ADD INDEX. Try ALGORITHM=NOCOPY" . (MDEV-34813)

Character Sets

  • Fix assertion falilure and possible index corruption with unique key and nopad collation without DESC or HASH keys (MDEV-30111)

  • Fix client crash the command after client sets character set to utf32 (MDEV-34090)

  • Fix possible runtime error caused by XA RECOVER applying a zero offset to a null pointer (MDEV-35549)

  • Fix issue where functions in default values in tables with certain character sets could break SHOW CREATE and mariadb-dump (MDEV-29968)

Galera

  • Galera updated to 26.4.21

    • NOTE: Includes increasing the GCS protocol version, which prevents downgrades of individual nodes in the cluster as soon as all nodes have been updated

  • Fix sporadic failure of async replication on Galera async replica nodes with parallel replication enabled (MDEV-35465)

  • Fix possible failure of wsrep_sst_rsync SST script if user specified aria_log_dir_path different from default data directory (MDEV-35387)

  • Fix cluster node hang during shutdown if threadpool is used (MDEV-35710)

  • MariaDB Cluster and ALTER INPLACE running in Total Order Isolation (wsrep_OSU_method=TOI) now correctly abort a DML INSERT operation in InnoDB (MDEV-33064)

  • Fix possible crash in wsrep_check_sequence (MDEV-33245)

  • Fix sporadic reporting of success when a deadlock error occurs under --ps-protocol BF aborted transaction (MDEV-35446)

  • Rows in table mysql.gtid_slave_pos are now correctly deleted on Galera nodes when wsrep_gtid_mode = 1 is used, which previously lead to wrong information about replica delays (MDEV-34924)

  • Undefined behavior could occur when attempting to perform INSERT DELAYED on a Galera cluster node. (MDEV-35852)

  • Fix issue where DROP TABLE on child and UPDATE of parent table can cause a metadata lock BF-BF conflict when applied concurrently. (MDEV-35018)

  • Galera protocol versions are now shown by show status - change available with installation of galera library 26.4.21+ (MDEV-35505)

  • Fix possible crash in wsrep_sst_mariadb-backup script when upgrading node in cluster from 10.11.9 to 10.11.10. (MDEV-35526)

  • wsrep_sst_mariadb-backup.sh no longer uses --use-memory default (100MB) resulting in prepare stage which could take hours (MDEV-35749)

Audit Plugin

  • For an authentication with the ed25519 authentication plugin the password of the CREATE USER statement is now masked in the audit log (MDEV-35507)

  • MariaDB Audit now detects all DCLs forms for masking a password (MDEV-35522)

General

  • Fix possible crash where server could not construct a geomery object from the input (MDEV-33987)

  • Fix trigger created with "CREATE TRIGGER table1_after_insert AFTER INSERT" which is adding rows to another table using "FOR EACH ROW insert into table2(id, name) values (NEW.id, NEW.name);" that did not work correctly when if bulk inserts are used by the application. Only the first row of the bulk insert would be added to the table (MDEV-34958)

  • After changing the table definition for the system table 'mysql.servers', a following execution of CREATE SERVER would previously lead to a server crash.

    • NOTE: System tables should never be modified by a user anyhow (MDEV-33783)

  • Fix connection hang after query on a partitioned table with UNION and LIMIT ROWS EXAMINED (MDEV-35571)

  • Fix possible crash during index traversal using tree_search_next. (MDEV-28130)

  • FIx assertion failure where CURRENT_USER was not correctly copied during condition pushdown (MDEV-35090)

  • sql_mode='NO_UNSIGNED_SUBTRACTION' now works for multiple unsigned integers (MDEV-35651)

  • The "Failed to write to mysql.slow_log" error no longer shown without a detailed reason for the error (MDEV-20281)

  • Can now correctly add a foreign key on a table with a long UNIQUE multi-column index that contains a foreign key as a prefix (MDEV-33658)

  • During an online table rebuild of an InnoDB statistics table, opt_search_plan_for_table() no longer sometimes degrades to full table scan (MDEV-35443)

  • Fix debian-start script failure when using non-standard socket path (MDEV-35907)

  • Fixed issue where ST_PointFromWKB ignored SRID parameter and returned 0 (MDEV-32619)

  • Fix possible memory leak on SHUTDOWN (MDEV-35326)

  • Fix possible memory leak while shutting down server after installing the auth_gssapi plugin (MDEV-35575)

  • Fix possible server crash when using INSERT DELAYED on tables with virtual columns. (MDEV-26891)

  • Fix possible Spider crash or hang when the first byte of a connection key is changed (MDEV-34849)

  • A BEFORE INSERT Trigger previously returned with error ""Field 'xxx' doesn't have a default value", if a NULL value is added for a column defined NOT NULL without explicit value and no DEFAULT specified (MDEV-19761)

  • Calling a stored routine that executes a join on three or more tables and referencing not-existent column name in the USING clause could previously result in a crash on its second invocation. (MDEV-24935)

  • Fix rare cases where binlog entries could receive incorrect timestamps on secondary nodes of a Galera cluster, potentially impacting replication accuracy (MDEV-35157)

Security

  • Fixes for the following security vulnerabilities:

    • CVE-2025-21490

Changelog

For a complete list of changes made in MariaDB 10.5.28, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.28, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.27 Release Notes

The most recent release of MariaDB 10.5 is:MariaDB 10.5.28 Stable (GA) Download NowAlternate download from mariadb.org

Download 10.5.27Release NotesChangelogOverview of 10.5

Release date: 1 Nov 2024

MariaDB 10.5 is a previous stable series of MariaDB, maintained until June 2025. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.27 is a Stable (GA) release.

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Items

Storage Engines

InnoDB

  • Fix MariaDB crash with SIGILL because the OS does not support AVX512 (MDEV-34565)

  • Fix innodb.innodb-lock-inherit-read_commited failure with timeout (MDEV-33106)

Spider

  • Fix server crash when calling spider UDF after aria_encrypt_tables is enabled (MDEV-34682)

  • SELECT MIN on Spider table no longer returns more rows than expected (MDEV-26345)

  • Fix Spider group by handler wrong result on order by aggregate (MDEV-29546)

Optimizer

  • Fix crash caused by query containing constant having clause (MDEV-23983)

Data Definition - Alter Table

  • Fix InnoDB crash under Windows Subsystem for Linux on ALTER TABLE or OPTIMIZE TABLE (MDEV-34938)

  • Modification of the column now correctly checks foreign key constraint (MDEV-34392)

  • Fix incorrect NULL value handling for instantly dropped BLOB columns (MDEV-35122)

Galera

  • Galera updated to 26.4.20

  • Fix server crash when setting wsrep_cluster_address after adding invalid value to wsrep_allowlist table (MDEV-31173)

  • Fix INSERT...SELECT' on MyISAM table suddenly replicated by alera (MDEV-34647)

  • Fix galera_ssl_reload failure with warning message (MDEV-32778)

  • When InnoDB gets an assertion failure, WSREP layer is now handled gracefully (MDEV-32363)

Backup

  • Recovery now correctly notes some log corruption (MDEV-34802)

  • Can now selectively restore sequences using innodb tables from backup (MDEV-32350)

General

  • As per the MariaDB Deprecation Policy, this will be the last release of MariaDB 10.5 for SLES 12, and Windows 11 22H2

  • mariadbd no longer hangs on startup when --init-file target does not exist (MDEV-34814)

  • LOAD DATA INFILE with geometry data no longer fails (MDEV-34883)

  • Fix heap-use-after-free in group_concat with compressed or GIS columns (MDEV-16699)

  • Trigger now works correctly with bulk update (MDEV-34718)

  • Fix assertion failure in find_producing_item upon a query from a view (MDEV-35276)

  • Add new setting, --quick-max-column-width to the mariadb client for use in --quick mode (MDEV-34704)

Security

  • Fixes for the following security vulnerabilities:

    • CVE--``#

Changelog

For a complete list of changes made in MariaDB 10.5.27, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.27, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.26 Release Notes

The most recent release of MariaDB 10.5 is:MariaDB 10.5.28 Stable (GA) Download NowAlternate download from mariadb.org

Download 10.5.26Release NotesChangelogOverview of 10.5

Release date: 8 Aug 2024

MariaDB 10.5 is a previous stable series of MariaDB, maintained until June 2025. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.26 is a Stable (GA) release.

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Items

Storage Engines

InnoDB

  • Alter operation on redundant table aborts the server (MDEV-34222)

  • MariaDB crashes with SIGILL because the OS does not support AVX512 (MDEV-34565)

  • InnoDB: Failing assertion: stat_n_leaf_pages > 0 in ha_innobase::estimate_rows_upper_bound (MDEV-34474)

Aria

  • Fix Aria index corruption when doing a REPAIR TABLE that has a size of over 4G (MDEV-34522)

Spider

  • UBSAN: runtime error: applying non-zero offset in spider_free_mem and SIGSEGV in spider_free_mem on SELECT (MDEV-31475)

  • SIGSEGV in ha_resolve_storage_engine_name, UBSAN: runtime error: index 4294967295 out of bounds for type 'st_plugin_int *[64]' (MDEV-32487)

  • SIGSEGV in spider_db_conn::fin_loop_check, and ASAN: heap-use-after-free in spider_db_mbase::fin_loop_check on SHOW TABLE STATUS (MDEV-34541)

  • SIGSEGV in ha_spider::lock_tables on BEGIN after table lock (MDEV-29962)

  • SIGSEGV in spider_conn_first_link_idx and others on DELETE, INSERT and SELECT (MDEV-32492)

  • Spider: Crashes, asserts, hangs, memory corruptions and ASAN heap-use-after-free's (MDEV-27902)

  • Spider: @@insert_id 128 to TINYINT: Assertion ``!is_set() || (m_status == DA_OK_BULK && is_bulk_op())'` failed. (MDEV-28105)

  • Server crashes when calling spider UDF after aria_encrypt_tables is enabled (MDEV-34682)

Partitioning

  • MariaDB Server crashes with ill-formed partitions (MDEV-32155)

  • SIGSEGV in parse_engine_part_options on INSERT, SELECT or ALTER (MDEV-34421)

  • Assertion ``auto_increment_value'failed inha_partition::info` on INSERT into MEMORY table (MDEV-24610)

Character Sets

  • On startup: UBSAN: applying zero offset to null pointer in my_copy_fix_mb from strings/ctype-mb.c and other locations (MDEV-34226)

  • On startup: UBSAN: runtime error: applying zero offset to null pointer in skip_trailing_space and my_hash_sort_utf8mb3_general1400_nopad_as_ci (MDEV-34187)

  • SHOW CREATE DATABASE statement crashes the server when db name contains some unicode characters, ASAN stack-buffer-overflow (MDEV-32376)

  • Wrong result set with utf8mb4_danish_ci and BNLH join (MDEV-34417)

Optimizer

  • On startup: UBSAN: runtime error: applying non-zero offset in JOIN::make_aggr_tables_info in sql/sql_select.cc (MDEV-34227)

  • Crash after killing query while it is processed by test_quick_select (MDEV-30651)

  • Extend condition normalization to include 'NOT a' (MDEV-19520)

  • Constant subquery causing a crash in pushdown optimization (MDEV-29363)

  • Crash when pushing condition with CHARSET()/COERCIBILITY() into derived table (MDEV-33010)

  • 2nd execution name resolution problem with pushdown into unions (MDEV-34506)

  • Assertion ``(key_part->key_part_flag & 4) == 0'` failed key_hashnr (MDEV-34580)

  • Crash caused by query containing constant having clause (MDEV-23983)

  • ORDER BY DESC causes ROWID Filter optimization performance degradation (MDEV-33875)

Replication

  • Auto-generated DELETE from HEAP table no longer breaks replication (MDEV-25607)

  • Fix replication failure when XA transactions are used where the replica has replicate_do_db set and the client has touched a different database when running DML such as inserts. (MDEV-33921)

  • Fix replication error when CHANGE MASTER TO is used in conjunction with a password longer than 41 ascii characters (MDEV-23857)

Backup

  • Hide password passed on commandline from xtrabackup_info (MDEV-34434)

Galera

  • Galera updated to 26.4.19

    • NOTE: Includes increasing the GCS protocol version, which prevents downgrades of individual nodes in the cluster as soon as all nodes have been updated

  • galera_gtid_2_cluster: Assertion ``thd->wsrep_next_trx_id() != (0x7fffffffffffffffLL * 2ULL + 1)'` (MDEV-32633)

  • table gtid_slave_pos entries never been deleted with wsrep_gtid_mode = 0 (MDEV-34170)

  • Change error code for Galera unkillable threads (MDEV-12008)

  • 10.11.8 cluster becomes inconsistent when using composite primary key and partitioning (MDEV-34269)

  • wsrep_sst_mariadb-backup use /tmp dir during SST rather then user defined tmpdir (MDEV-32158)

Error Log

  • server_uid system variable added, and value added to the error log at startup (MDEV-34494)

General

  • As per the MariaDB Deprecation Policy, this will be the last release of MariaDB 10.5 for Debian 10 "Buster", and RHEL/CentOS 7

  • IMPORT TABLESPACE no longer unnecessarily traverses tablespaces list (MDEV-34670)

  • Fix unknown variable defaults-group-suffix= with mariadb-secure-installation (MDEV-33265)

  • mariadb-install-db no longer hangs on macOS (MDEV-34129)

  • Control over memory allocated for SP/PS (MDEV-14959)

  • Triggers now work correctly with bulk insert (MDEV-24411)

  • Fix assertion ``table->field[0]->ptr >= table->record[0] && table->field[0]->ptr <= table->record[0] + table->s->reclength'failed invoid handler::assert_icp_limitations(uchar*)` (MDEV-34632)

  • sandbox mode - now compatible with --binary-mode (MDEV-34203)

Security

  • Fixes for the following security vulnerabilities:

    • CVE--``#

Changelog

For a complete list of changes made in MariaDB 10.5.26, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.26, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.25 Release Notes

The most recent release of MariaDB 10.5 is:MariaDB 10.5.28 Stable (GA) Download NowAlternate download from mariadb.org

Download 10.5.25Release NotesChangelogOverview of 10.5

Release date: 16 May 2024

MariaDB 10.5 is a previous stable series of MariaDB, maintained until June 2025. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.25 is a Stable (GA) release.

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Items

From this version, the mariadb-dump tool adds a new sandbox command to the top of every dump file. This command cannot be interpreted by MariaDB command line client versions that do not have the sandbox command, or by MySQL command line clients, and an error will be generated in these clients. Other methods of importing the dump will work not have this issue.

Storage Engines

InnoDB

  • Fix adaptive hash index corruption after ALTER TABLE…DISCARD TABLESPACE (MDEV-33400)

  • Fix fatal InnoDB error or assertion ``!is_v'` failure upon multi-update with indexed virtual column (MDEV-31154)

  • Fix InnoDB: Failing assertion on UPDATE (MDEV-32346)

  • Fix fatal error InnoDB: Clustered record field for column x not found (MDEV-33558)

  • Fix alter operation hang when encryption thread works on the same tablespace (MDEV-33770)

  • Fix MariaDB segfault on rowid filter query involving generated column (MDEV-33795)

  • Fix discard/import tablespace, restart, index corruption (MDEV-33512)

  • Fix alter table corruption while applying the modification log (MDEV-19044)

  • Fix weird read view after ROLLBACK of other transactions (MDEV-33802)

  • Read only server no longer throws error when running a create temporary table as select statement (MDEV-33889)

  • Change buffer index no longer fails to delete the records (MDEV-32489)

  • Fix InnoDB include OS error information when failing to write to iblogfile0 (MDEV-33397)

  • In-place migration from MySQL 5.7 no longer causes invalid AUTO_INCREMENT values (MDEV-33277)

  • Fix InnoDB log corruption before upgrading it on startup (MDEV-32445)

  • Table no longer gets rebuilt with ALTER TABLE ADD COLUMN (MDEV-33214)

Federated

  • Fix wrong result on 2nd execution of prepared statement for query with derived table (MDEV-31361)

Spider

  • Improve Spider performance by pushing down TIMESTAMPDIFF function (MDEV-28992) and CASE statement (MDEV-28993) to data nodes

  • Fix server crash when deleting partitions from a table with spider engine (MDEV-33731)

  • Fix spider plugin init failure with no_zero_date sql_mode (MDEV-33494)

  • Fix sql plugin init failure with traditional sql_mode (MDEV-33584)

  • Fix parsing failure on valid left join select by translating the on expression to () (MDEV-33679)

  • Fix Spider: ERROR 12710 (HY000): Invalid information from remote table when using MariaDB 10.5 local and MariaDB 10.6 remote (MDEV-33777)

  • Fix Spider: @@insert_id 128 to TINYINT: Assertion ``!is_set() || (m_status == DA_OK_BULK && is_bulk_op())'` failed. (MDEV-28105)

  • Fix bug where Spider variables were not available if Spider was loaded upon server startup (MDEV-33441)

Backup

  • mariadb-backup now preserves innodb_encrypt_tables (MDEV-33334)

  • Fix mariadb-backup problem on older mariadb (opendir(NULL)) caused by MDEV-30968 (MDEV-31251)

  • Fix mariadb-backup --backup FATAL ERROR: ... Can't open datafile cool_down/t3 (MDEV-33011)

  • mariadb-backup --backup now includes retry logic for undo tablespaces (MDEV-33980)

  • Fix crash recovery in mariadb-backup --prepare due to insufficient innodb_log_file_size (MDEV-33540)

  • Fix crash in mariadb-backup --prepare --export after --prepare (MDEV-33023)

  • mariadb-backup now considers O/S user when --user option is omitted (MDEV-32893)

Character Sets, Data Types

  • Fixed improper application of ORDER BY COLLATE to non-character columns (MDEV-33318)

  • Default charset now works with PHP MySQLi extension (MDEV-32975)

  • Fixed Bad SEPARATOR value in GROUP_CONCAT on character set conversion (MDEV-33772)

  • Fixed out of range error in AVG(YEAR(datetime)) due to a wrong data type (MDEV-33496)

  • Fixed GREATEST() and LEAST() problems with NULLs (MDEV-21034)

JSON

  • View created via JSON_ARRAYAGG now returns correct json object (MDEV-30646)

  • JSON_TYPE now detects the type of String Values and correctly returns Date/DateTime values (MDEV-19487)

  • JSON_REMOVE no longer returns NULL on valid arguments (MDEV-22141)

  • JSON_EXTRACT no longer returns multiple values for same path (MDEV-32287)

Encryption, TLS, SSL

  • WolfSSL's math is unnecessarily slow (MDEV-33482)

Optimization & Tuning

  • Server crashes in JOIN_CACHE::write_record_data upon EXPLAIN with subqueries and constant tables (MDEV-21102)

  • Wrong result with cross Join given join order (MDEV-30975)

  • Wrong warnings on 2-nd execution of PS for query with GROUP_CONCAT (MDEV-31276)

  • Wrong result with semi-join and splittable derived table (MDEV-23878)

  • Aggregation functions fail to leverage uniqueness property (MDEV-30660)

Plugins

  • The audit plugin now reports the user and host in all cases (MDEV-33393)

Replication

  • --gtid-ignore-duplicate can double-apply event in case of parallel replication retry (MDEV-33475)

  • Server crash in Rows_log_event::update_sequence upon replaying binary log (MDEV-31779)

  • Slave crashed:reload_acl_and_cache during shutdown (MDEV-30260)

  • When binlog_annotate_row_events on , event of binlog file is truncated (MDEV-9179)

Galera

  • Galera updated to 26.4.18

    • NOTE: Includes increasing the GCS protocol version, which prevents downgrades of individual nodes in the cluster as soon as all nodes have been updated

SQL, Data Definition, and Data Manipulation

  • Transportable Tablespaces no longer leave AUTO_INCREMENT in a mismatched state (MDEV-18288)

  • Fix wrong row targeted with "insert ... on duplicate" and "replace", leading to data corruption (MDEV-30046)

  • Fix incorrect DEFAULT expression evaluated in UPDATE (MDEV-33790)

  • Fix incorrect handling of UPDATE in PS mode when a table's column declared as NOT NULL (MDEV-33549)

  • Fix crash in EXECUTE IMMEDIATE 'CREATE OR REPLACE TABLE t1 (a INT DEFAULT ?)' USING DEFAULT (MDEV-15703)

  • Fix wrong result on 2nd execution of PS to select from view using derived (MDEV-31277)

  • TIMESTAMP value of '1970-01-01 00:00:00' can no longer be indirectly inserted in strict mode (MDEV-34088)

  • Fix zero datetime reinterpreting as '1970-01-01 00:00:00' on field_datetime=field_timestamp (MDEV-34069)

  • unix_timestamp(coalesce(timestamp_column)) no longer returns NULL on '1970-01-01 00:00:00.000001' (MDEV-34061)

  • Fix crash using UDF in WHERE clause of VIEW (MDEV-24507)

  • Fix update for portion changes autoincrement key in period table (MDEV-25370)

  • Fix SIGABRT resulting from CREATE TABLE with generated column and RLIKE (MDEV-21058)

General

Scripts & Clients

  • It's now possible to disable system commands with the mariadb --sandbox option. (MDEV-21778)

  • mariadb-dump now exports the data with sandbox mode enable, so that the mariadb client will not execute potentially dangerous cli commands.(MDEV-33727)

  • mariadb-dump commands such as mariadb-dump --dump-slave=2 --master-data=2 now record both positions (MDEV-4827)

  • Loading time zones now works with alter_algorithm INPLACE (MDEV-33044) )

Server

  • Original IP not shown in network related error messages when proxy_protocol is in use (MDEV-33506)

  • Server incorrectly describes known variables as UNKNOWN if invalid values are specified at startup (MDEV-33469)

  • update case insensitive (large) unique key with insensitive change of value - duplicate key (MDEV-29345)

  • MariaDB will abort server startup if it finds an invalid parameter, but won't check for other invalid params (MDEV-26923)

Security

  • Fixes for the following security vulnerabilities:

    • CVE-2024-21096

Changelog

For a complete list of changes made in MariaDB 10.5.25, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.25, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.24 Release Notes

The most recent release of MariaDB 10.5 is:MariaDB 10.5.28 Stable (GA) Download NowAlternate download from mariadb.org

Download 10.5.24Release NotesChangelogOverview of 10.5

Release date: 7 Feb 2024

MariaDB 10.5 is a previous stable series of MariaDB, maintained until June 2025. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.24 is a Stable (GA) release.

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Items

  • Windows packages were delayed but have now been added to the downloads site

InnoDB

  • Unique hash key on column prefix is computed incorrectly (MDEV-29954)

  • Query from I_S.INNODB_SYS_INDEXES exceeding LIMIT ROWS EXAMINED causes ER_UNKNOWN_ERROR and LeakSanitizer errors in rec_copy_prefix_to_buf_old (MDEV-28613)

  • Assertion ``0'failed inrow_sel_convert_mysql_key_to_innobase upon UPDATE` using a partial-field key prefix in search (MDEV-21245)

  • Assertion failure on REPLACE on ROW_FORMAT=COMPRESSED table (MDEV-31574)

  • Crash emitting "Unsupported meta-data version number" error message (MDEV-29972)

  • LeakSanitizer errors in mem_heap_create_block_func upon query from I_S.INNODB_SYS_TABLES with LIMIT ROWS EXAMINED (MDEV-32890)

  • Inplace alter rebuild increases file size (MDEV-26740)

  • BLOB corruption on UPDATE of PRIMARY KEY with FOREIGN KEY (MDEV-31441)

  • GNU libc posix_fallocate() may be extremely slow (MDEV-32268)

  • InnoDB wrong error message (MDEV-32833)

  • Assertion failure on ALTER TABLE…PAGE_COMPRESSED=1 (MDEV-31000)

  • InnoDB after ALTER TABLE…IMPORT TABLESPACE may not be crash safe (MDEV-32269)

  • InnoDB fails to restore tablespace first page from doublewrite buffer when page is empty (MDEV-32968)

  • innodb_fast_shutdown=0 hang after incomplete startup (MDEV-32798)

  • innodb_undo_log_truncate=ON prevents fast shutdown (MDEV-33062)

  • Adaptive flush recommendation ignores dirty ratio and checkpoint age (MDEV-31939)

  • gcol.gcol_purge contaminates further execution of innodb.gap_locks (MDEV-28682)

  • LPAD in vcol created in ORACLE mode makes table corrupted in non-ORACLE (MDEV-27744)

  • Adaptive flushing is still not getting invoked in 10.5.11 (MDEV-26055)

Backup

  • mariadb-backup has wrong or missing plugin-dir default? (MDEV-29110)

  • mariadb-backup fails when innodb_max_dirty_pages_pct contains a fraction (is not an integer) (MDEV-20286)

  • Missing required privilege CONNECTION ADMIN (MDEV-33006)

  • BACKUP LOCKS on table to be accessible to those with database LOCK TABLES privileges (MDEV-28367)

JSON

  • Wrong function name in ER_JSON_PATH_NO_WILDCARD error message for JSON_REPLACE (MDEV-24541)

  • JSON_VALID fail to validate integer zero in scientific notation (MDEV-32587)

  • ASAN errors in Item_func_json_contains_path::val_int upon PS execution (MDEV-32867)

  • mysql_json cannot be used on newly created table (MDEV-32235)

Spider

  • Thread (10.6+) and server hangs (10.4/10.5) in 'Opening tables' (on optimized builds) and SIGABRT in safe_mutex_lock (on debug) on I_S read when using Spider (MDEV-29421)

  • SIGSEGV in spider_db_mbase::append_lock_tables on LOCK TABLES (MDEV-29963)

  • ASAN heap-use-after-free in spider_link_get_key on LOCK TABLES (MDEV-31357)

  • Crash when lateral derived is guaranteed to return no rows (MDEV-31279)

  • Bogus error executing PS for query using CTE with renaming of columns (MDEV-31995)

  • Spider: Valid LEFT JOIN results in ERROR 1064 (MDEV-26247)

  • Trying to lock uninitialized mutex or hang upon shutdown after using Spider with query_cache (MDEV-28739)

  • Spider tests failing in asan/valgrind builds (MDEV-32849)

  • Backport fixes to spider init bugs to 10.4-10.6 once they have SQL service (MDEV-29870)

  • Server crash with SIGSEGV or dynamic-stack-buffer-overflow in spider_db_mbase_util::append_table (MDEV-29163)

  • heap-use-after-free in ha_spider::lock_tables(), highly sporadic SIGSEGV in intern_close_table (MDEV-30014)

  • Syntax error upon query with subquery from Spider table (MDEV-30392)

  • Spider doesn't recognize semi JOIN (MDEV-31645)

  • MariaDB, SPIDER engine, usage of REGEXP (MDEV-32986)

  • Spider: variable spider_same_server_link not functioning correctly (MDEV-29718)

  • Spider fails to autodiscover structure (did in <=10.5) and reports ERROR 12500 (HY000): unknown (MDEV-33008)

  • Spider spawns unnecessarily many system threads for stats synchronization (MDEV-29020)

    • Defaults for spider_table_crd_thread_count and spider_table_sts_thread_count changed from 10 to 1

  • SIGSEGV in spider_db_delete_all_rows on TRUNCATE, UBSAN: member call on null pointer of type 'struct spider_db_handler' in spider_db_delete_all_rows (MDEV-33191)

  • mariadb-upgrade fails with 'System table spider_tables is different version' => Can't create database 'performance_schema' (MDEV-27103)

  • Spider: SIGSEGV in spider_db_direct_delete, SIGSEGV in spider_db_connect, ASAN: heap-use-after-free in spider_db_direct_delete (MDEV-28683)

  • INSERT ... SELECT Does not produce an optimizer trace (MDEV-29298)

  • No error for DROP TABLE and no warning for DROP TABLE IF EXISTS with absent table when Spider plugin is included (MDEV-30170)

  • ASAN errors in spider_conn_queue_and_merge_loop_check (MDEV-29002)

Optimizer

  • Crash caused by multi-table UPDATE over derived with hanging CTE (MDEV-28615)

  • Crash on query using CTE with the same name as a base table (MDEV-31657)

  • Crash with query using constant subquery as left part of IN subquery (MDEV-29362)

  • Incorrect result interceptor passed to mysql_explain_union() (MDEV-33165)

Data Definition, Data Manipulation

  • ALTER SEQUENCE IF NOT EXISTS non_existing_seq Errors rather than note (MDEV-32795)

  • Unexpected ER_ERROR_ON_RENAME upon DROP non-existing FOREIGN KEY with ALGORITHM=COPY (MDEV-22230)

  • FOREIGN_KEY_CHECKS does not prevent non-copy alter from creating invalid FK structure (MDEV-29092)

  • Assertion !"wrong page type"'` or Assertion "wrong page type" == 0'failed ininnobase_instant_tryonALTER` (MDEV-18322)

  • Assertion (col.vers_sys_end()) upon inplace ALTER with virtual columns (MDEV-20545)

  • DELETE with ORDER BY and semijoin optimization causing crash (MDEV-32212)

  • Invalid expr in cleanup_session_expr() upon INSERT DELAYED (MDEV-29932)

  • SIGSEGV in my_decimal::operator= and Assertion 0'failed inItem_type_holder::val_decimal` on SELECT (MDEV-29070)

  • LONG UNIQUE does not work like unique key when using replace (MDEV-32837)

  • LONG UNIQUE gives error when used with REPLACE (MDEV-32839)

Character Sets, Data Types

  • InnoDB: CHAR+nopad does not work well (MDEV-26743)

  • CAST(AS UNSIGNED) fails with --view-protocol (MDEV-32645)

  • JSON_ARRAYAGG charset issue (MDEV-24784)

  • Server crash in my_decimal::operator= or unexpected ER_DUP_ENTRY upon comparison with INET6 and similar types (MDEV-32879)

Plugins

  • Backport SQL service, introduced by MDEV-19275 (MDEV-27595)

  • "plugin already loaded" should be a Warning, not an Error (MDEV-32041)

  • mariadb-upgrade should remove mysql.plugin entries for plugins that became bundled (MDEV-32043)

Galera

  • Node has been dropped from the cluster on Startup / Shutdown with async replica (MDEV-31413)

  • Inconsistency in Galera caused by ALTER being aborted before entering TOI mode (MDEV-32938)

  • Assertion ``total_length + thd->wsrep_sr().log_position() == saved_pos'failed in intwsrep_write_cache_inc(THD*, IO_CACHE*, size_t*)` (MDEV-28971)

  • wsrep_provider_options can be truncated on deep and long directory paths (MDEV-32634)

  • Server crashes in rpl_sql_thread_info::cached_charset_compare / wsrep_apply_events (MDEV-22232)

  • Galera crash when "create a table as select" (MDEV-27806)

  • Cluster is inconsistent after SAVEPOINT statement is rolled back (MDEV-32549)

  • WSREP GTID MODE is inconsistent (MDEV-31905)

  • IST "Donor does not know my secret" with ssl-mode=VERIFY_CA (MDEV-32344)

Replication

  • Server crashes in Item_func_binlog_gtid_pos::val_str / Binary_string::c_ptr_safe (MDEV-33045)

  • binlog corruption (/tmp no space left on device at the same moment) (MDEV-27436)

  • multi source replication filters breaking GTID semantic (MDEV-26632)

  • SHOW SLAVE STATUS Can Deadlock an Errored Slave (MDEV-10653)

  • main.rpl_mysqldump_slave Fails with "Master binlog wasn't deleted" Assertion (MDEV-32953)

  • rpl_seconds_behind_master_spike Sensitive to IO Thread Stop Position (MDEV-33327)

  • Binlog Checksum is Zeroed by Zlib if Part of Event Data is Empty (MDEV-33283)

General

  • As per the MariaDB Deprecation Policy, this will be the last release of MariaDB 10.5 for Windows Server 2019

  • Upgrade HeidiSQL to 12.6.

  • Using two temporary tables in OPTIMIZE TABLE lead to crash (MDEV-31523)

  • REGEXP_REPLACE treats empty strings different than REPLACE in ORACLE mode (MDEV-29095)

  • CREATE UNIQUE INDEX fails with "ERROR 1286 (42000): Unknown storage engine 'partition'" (MDEV-21618)

  • Failure when executing PS for query using IN subquery (MDEV-32569)

  • Potential memory leak on execuing of create view statement (MDEV-32466)

  • Assertion failures (MDEV-32965)

  • Two JSON related tests running in PS mode fail on server built with -DWITH_PROTECT_STATEMENT_MEMROOT=YES (MDEV-32733)

  • Alter sequence 2nd ps fails while alter sequence 2nd time (no ps) succeeds (MDEV-33169)

  • Set TaskMax=inifinity in the MariaDB systemd unit (MDEV-30236)

  • Unreliable autocommit flag on connection creation (MDEV-32875)

  • A connection can control RAND() in following connection (MDEV-33148)

  • THD::rli_fake/rgi_fake not cleared on new connection (MDEV-32844)

  • Assertion failures in tdc_remove_table upon interrupted CREATE TABLE LIKE <sequence> (MDEV-20471)

  • Server crash in find_field_in_table (MDEV-32082)

  • LPAD in vcol created in ORACLE mode makes table corrupted in non-ORACLE (MDEV-27744)

  • Failure to call SP invoking another SP with parameter requiring type conversion (MDEV-33270)

  • The database part is not case sensitive in SP names (MDEV-33019)

  • EXCHANGE PARTITION with non-matching vcol expression segfault (MDEV-28127)

  • Wrong user in SET DEFAULT ROLE error (MDEV-26875)

  • quote(NULL) returns incorrect result in view ('NU' instead of 'NULL') (MDEV-28651)

  • mysql.slow_log reports incorrect start time (MDEV-11628)

  • Update federated table and column privileges (MDEV-32984)

Security

  • Fixes for the following security vulnerabilities:

    • CVE--``#

Changelog

For a complete list of changes made in MariaDB 10.5.24, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.24, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.23 Release Notes

The most recent release of MariaDB 10.5 is:MariaDB 10.5.28 Stable (GA) Download NowAlternate download from mariadb.org

Download 10.5.23Release NotesChangelogOverview of 10.5

Release date: 13 Nov 2023

MariaDB 10.5 is a previous stable series of MariaDB, maintained until June 2025. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.23 is a Stable (GA) release.

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Items

InnoDB

  • DROP INDEX followed by CREATE INDEX may corrupt data (MDEV-32132)

  • ROW_FORMAT=COMPRESSED table: InnoDB: 2048 bytes should have been read. Only 0 bytes read. (MDEV-31875)

  • Server aborts during alter operation when table doesn't have foreign index (MDEV-32527)

  • row_merge_fts_doc_tokenize() handles FTS plugin parser inconsistently (MDEV-32578)

  • InnoDB: tried to purge non-delete-marked record of an index on a virtual column prefix (MDEV-30024)

  • lock_row_lock_current_waits counter in information_schema.innodb_metrics may become negative (MDEV-30658)

  • SET GLOBAL innodb_max_purge_lag_wait=… hangs if innodb_read_only=ON (MDEV-31813)

  • Auto-increment no longer works for explicit FTS_DOC_ID (MDEV-32017)

  • Assertion `pos < table->n_def' failed in dict_table_get_nth_col (MDEV-32337)

  • innochecksum man pages seem to be inconsistent with the binary (10.2.25) (MDEV-20583)

  • innodb_compression_algorithm=0 (none) increments Innodb_num_pages_page_compression_error (MDEV-30825)

  • wrong table name in innodb's "row too big" errors (MDEV-32128)

  • Optimize is_file_on_ssd() to speedup opening tablespaces on Windows (MDEV-32228)

  • Race condition between page write completion and log checkpoint (MDEV-32511)

  • After crash recovery, Checksum mismatch + Failing assertion: !i || prev_id + 1 == space_id, (MDEV-31851)

  • Deadlock due to log_free_check(), involving trx_purge_truncate_rseg_history() and trx_undo_assign_low() (MDEV-32049)

  • Write-ahead logging is broken for freed pages (MDEV-32552)

  • X-lock on supremum for prepared transaction for RR (MDEV-30165)

Optimizer

  • Crash when HAVING in a correlated subquery references columns in the outer query (MDEV-29731)

  • Server crashes at TABLE::add_tmp_key (MDEV-32320)

  • Server crashes inside filesort at my_decimal::to_binary (MDEV-32324)

  • Assertion `bitmap_is_set(&m_part_info->read_partitions, m_part_spec.start_part)' failed in ha_partition::handle_ordered_index_scan (MDEV-24283)

  • Crash when searching for the best split of derived table (MDEV-32064)

  • Test case from opt_tvc.test fails with statement memory protection (MDEV-32225)

  • Significant slowdown for query with many outer joins (MDEV-32351)

  • test_if_skip_sort_order() should catch the join types JT_EQ_REF, JT_CONST and JT_SYSTEM and skip sort order for these (MDEV-32475)

Replication

  • rpl.rpl_parallel_temptable failure due to incorrect commit optimization of temptables (MDEV-10356)

  • Lock wait timeout with INSERT-SELECT, autoinc, and statement-based replication (MDEV-31482)

  • strings/ctype-ucs2.c:2336: my_vsnprintf_utf32: Assertion `(n % 4) == 0' failed in my_vsnprintf_utf32 on INSERT (MDEV-32249)

  • Assertion fails in MDL_context::acquire_lock upon parallel replication of CREATE SEQUENCE (MDEV-31792)

  • SHOW SLAVE STATUS Last_SQL_Errno Race Condition on Errored Slave Restart (MDEV-31177)

  • seconds_behind_master is inaccurate for Delayed replication (MDEV-32265)

  • detailize the semisync replication magic number error (MDEV-32365)

  • Parallel replication deadlock victim preference code errorneously removed (MDEV-31655)

Galera

  • Galera updated to 26.4.16

  • Assertion `state() == s_executing || state() == s_prepared || state() == s_committing || state() == s_must_abort || state() == s_replaying' failed. (MDEV-24912)

  • Assertion `state() == s_executing || state() == s_preparing || state() == s_prepared || state() == s_must_abort || state() == s_aborting || state() == s_cert_failed || state() == s_must_replay' failed (MDEV-31285)

  • wsrep_sst_mariadb-backup not working on FreeBSD (MDEV-31467)

  • Galera library 26.4.16 fails with every server version (MDEV-32024)

  • Galera node remains paused after interleaving FTWRLs (MDEV-32282)

  • Failed to insert streaming client (MDEV-32051)

  • When set at runtime, wsrep_sst_method accepts any value (MDEV-31470)

  • galera needs packaging script changes to successfully build (MDEV-32642)

  • replication breaks when using optimistic replication and replica is a galera node (MDEV-31833)

  • McAfee database vulnerability scan caused MariaDB crash with signal 6 (system abort) (MDEV-27004)

Data Definition

  • MariaDB crash on calling function (MDEV-23902)

  • ASAN errors in grn_obj_unlink / ha_mroonga::clear_indexes upon index operations (MDEV-31970)

  • vcol circular references lead to stack overflow (MDEV-31112)

Scripts and Clients

  • mariadb-binlog -T/--table (mysqlbinlog) option (MDEV-25369)

  • mariadb-admin (mysqladmin) wrong error with simple_password_check (MDEV-22418)

  • mariadb-install-db shows warning on missing directory $pamtooldir/auth_pam_tool_dir (MDEV-32142)

  • main.mysql_client_test, main.mysql_client_test_comp failed on ASAN build with error: 5888, status: 23, errno: 2 (MDEV-19369)

  • mariadb-install-db (mysql_install_db) doesn't properly grant proxy privileges to all default root user accounts (MDEV-21194)

Tests

  • main.events_stress or events.events_stress fails with view-protocol (MDEV-31455)

  • main.delete_use_source fails (hangs) with view-protocol (MDEV-31457)

  • main.sum_distinct-big and main.merge-big fail with timeout with view-protocol (MDEV-31465)

  • main.secure_file_priv_win fails with 2nd execution PS protocol (MDEV-32023)

  • Windows : mtr output on is messed up with large MTR_PARALLEL (MDEV-32387)

  • main.mysql_client_test_comp failed in buildbot, error on exec (MDEV-16641)

  • main.order_by_pack_big fails with view-protocol (MDEV-31460)

mariadb-backup

  • mariadb-backup full backup failed with InnoDB: Failing assertion: success in storage/innobase/fil/fil0fil.cc line 657 (MDEV-18200)

  • mbstream breaks page compression on XFS (MDEV-25734)

Character Sets, Data Types, Collations

  • Prefix keys for CHAR work differently for MyISAM vs InnoDB (MDEV-30048)

  • Inconsistent results of DISTINCT with NOPAD (MDEV-30050)

  • Assertion `(length % 4) == 0' failed in my_lengthsp_utf32 on INSERT (MDEV-28835)

  • Compressed varchar values lost on joins when sorting on columns from joined table(s) (MDEV-31724)

  • UBSAN shift exponent X is too large for 64-bit type 'long long int' in sql/field.cc (MDEV-32226)

  • Wrong bit encoding using COALESCE (MDEV-32244)

Spider

  • Spider UBSAN runtime error: applying non-zero offset x to null pointer in st_spider_param_string_parse::restore_delims (MDEV-31117)

  • Segfault when setting spider_delete_all_rows to 0 and delete all rows of a spider table, ASAN heap-use-after-free in spider_db_delete_all_rows (MDEV-31996)

  • ASAN errors in spider_fields::free_conn_holder or spider_create_group_by_handler (MDEV-28998)

  • ASAN: heap-buffer-overflow & stack-buffer-overflow in spider_db_mbase_row::append_to_str | SIGSEGV's in memmove_avx_unaligned_erms from memcpy in Binary_string::q_append, in Static_binary_string::q_append and my_strntoull10rnd_8bit | Unknown error 12801 (MDEV-29502)

General

  • binlog_do_db option breaks importing sql dumps (MDEV-29989)

  • Crashes in MDL_key::mdl_key_init with lower-case-table-names=2 (MDEV-32025)

  • getting error 'Illegal parameter data types row and bigint for operation '+' ' when using ITERATE in a FOR..DO (MDEV-32275)

  • Assertion `arena_for_set_stmt== 0' failed in LEX::set_arena_for_set_stmt upon SET STATEMENT (MDEV-17711)

  • main.mysqlcheck fails on ARM with ASAN use-after-poison in my_mb_wc_filename (MDEV-26494)

  • main.delayed fails with wrong error code or timeout when executed after main.deadlock_ftwrl (MDEV-27523)

  • Assertion failed: !pfs->m_idle || (state == PSI_SOCKET_STATE_ACTIVE) (MDEV-28561)

  • MyISAM wrong server status flags (MDEV-28820)

  • Server crashes in check_sequence_fields upon CREATE TABLE .. SEQUENCE=1 AS SELECT .. (MDEV-29771)

  • slow log Rows_examined out of range (MDEV-30820)

  • "rpm --setugids" breaks PAM authentication (MDEV-30904)

  • incorrect examined rows in case of stored function usage (MDEV-31742)

  • Compilation failing on MacOS (unknown warning option -Wno-unused-but-set-variable) (MDEV-31890)

  • Server crash upon inserting into Mroonga table with compressed column (MDEV-31966)

  • hash unique corrupts index on virtual blobs (MDEV-32012)

  • insert into an empty table fails with hash unique (MDEV-32015)

  • Valgrind/MSAN warnings in dynamic_column_update_move_left (MDEV-32140)

  • Memory leak showed in MDEV-6146 test suite (MDEV-32223)

  • Test from subselect.test fails with statement memory protection (MDEV-32245)

  • Memory leak when executing PS for query with IN subquery (MDEV-32369)

  • Allow the setting of Auto_increment on FK referenced columns (MDEV-32018)

  • mariadb-upgrade fails with sql_safe_updates = on (MDEV-29914)

  • Assertion `!(thd->server_status & (1U | 8192U))' failed in MDL_context::release_transactional_locks (MDEV-32541)

  • Information schema leaks table names and structure to unauthorized users (MDEV-32500)

  • Missing CHACHA20-POLY1305 support in WolfSSL (MDEV-31653)

  • incorrect error about cyclic reference about JSON type virtual column (MDEV-32586)

  • Disable TLS v1.0 and 1.1 for MariaDB (MDEV-31369)

  • Better indication of refusing to start because of ProtectHome (MDEV-25177)

  • Database upgrade fails: slow_log table (MDEV-27757)

  • myrocks_hotbackup.1 and test suite files installed when engine is disabled (MDEV-29993)

  • client_ed25519.dll isn't inluded for HeidiSQL. (MDEV-31315)

  • Assertion `!m_null_value' failed in int FixedBinTypeBundle::cmp_item_fbt::compare or in cmp_item_inet6::compare (MDEV-27207)

  • type_test.type_test_double fails with 'NUMERIC_SCALE NULL' (MDEV-22243)

  • LeakSanitizer errors in get_quick_select or Assertion `status_var.local_memory_used == 0 || !debug_assert_on_not_freed_memory' failed (MDEV-32476)

  • Update signal hander user info more compassion and correct url (MDEV-32535)

Docker Official Images

  • Invert single and double quotes for sql command definitions in healthcheck.sh due to failure under sql_mode=ANSI_QUOTES - contribution by Dominik Häckel

  • healthcheck.sh --no-defaults behaviour was corrected - reported by Dominik Häckel

  • Added /docker-entrypoint-init.d for tar{,compression} from mariadb-backup - instructions

  • Refactor docker_mariadb_init in the entrypoint for extending the MariaDB image

  • CIS failure due to world-writable directory /var/run/mysqld, added sticky bit - reported by @ollie1

  • Add PROXY privileges for root@MARIADB_ROOT_HOST - reported by Matthieu Gusmini

  • healthcheck.sh added --galera_online test, to match what the mariadb-operator does.

Security

  • Fixes for the following security vulnerabilities:

    • CVE-2023-22084

Changelog

For a complete list of changes made in MariaDB 10.5.23, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.23, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.22 Release Notes

DownloadRelease NotesChangelogOverview of 10.5

Alternate download from mariadb.org

Release date: 14 Aug 2023

MariaDB 10.5 is a previous stable series of MariaDB, maintained until June 2025. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.22 is a Stable (GA) release.

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Items

General

  • As per the MariaDB Deprecation Policy, this will be the last release of MariaDB 10.5 for Ubuntu 18.04 LTS "Bionic"

  • mariadb-dump --force doesn't ignore error as it should (MDEV-31092)

  • 280 Bytes lost in mysys/array.c, mysys/hash.c, sql/sp.cc, sql/sp.cc, sql/item_create.cc, sql/item_create.cc, sql/sql_yacc.yy:10748 when using oracle sql_mode (MDEV-26186)

  • SQL/PL package body does not appear in I_S.ROUTINES.ROUTINE_DEFINITION (MDEV-30662)

  • Unexpected result when combining DISTINCT, subselect and LIMIT (MDEV-28285)

  • ROW variables do not get assigned from subselects (MDEV-31250)

  • Crash after setting global session_track_system_variables to an invalid value (MDEV-25237)

  • ODKU of non-versioning column inserts history row (MDEV-23100)

  • UPDATE not working properly on transaction precise system versioned table (MDEV-25644)

  • Assertion ``const_item_cache == true'failed inItem_func::fix_fields` (MDEV-31319)

  • ANALYZE doesn't work with pushed derived tables (MDEV-29284)

  • get_partition_set is never executed in ha_partition::multi_range_key_create_key due to bitwise & with 0 constant (MDEV-24712)

  • Client can crash the server with a mysql_list_fields("view") call (MDEV-30159)

  • I_S.parameters not immediatly changed updated after procedure change (MDEV-31064)

Character Sets, Data Types

  • UBSAN: null pointer passed as argument 1, which is declared to never be null in my_strnncoll_binary on SELECT ... COUNT or GROUP_CONCAT (MDEV-28384)

  • Possibly wrong result or Assertion 0' failed in Item_func_round::native_op` (MDEV-23838)

  • Assertion ``(length % 4) == 0'failed inmy_lengthsp_utf32onSELECT` (MDEV-29019)

  • UBSAN: negation of -X cannot be represented in type 'long long int'; cast to an unsigned type to negate this value to itself in Item_func_mul::int_op and Item_func_round::int_op (MDEV-30932)

  • Assorted assertion failures in json_find_path with certain collations (MDEV-23187)

InnoDB

  • innochecksum dies with Floating point exception (MDEV-31641)

  • Deadlock with 3 concurrent DELETEs by unique key (MDEV-10962)

  • innodb protection against dual processes accessing data insufficient (MDEV-31568)

  • Assertion ``!strcmp(index->table->name.m_name, "SYS_FOREIGN") || !strcmp(index->table->name.m_name, "SYS_FOREIGN_COLS")'failed inbtr_node_ptr_max_size` (MDEV-19216)

  • MODIFY COLUMN can break FK constraints, and lead to unrestorable dumps (MDEV-31086)

  • Recovery or backup failure after innodb_undo_log_truncate=ON (MDEV-31487)

  • Assertion 'n & PENDING' failed in fil_space_t::set_needs_flush() (MDEV-31442)

  • fil_node_open_file() releases fil_system.mutex allowing other thread to open its file node (MDEV-31256)

  • Freed data pages are not always being scrubbed (MDEV-31253)

  • innodb_undo_log_truncate=ON fails to wait for purge of enough transaction history (MDEV-31355)

  • SET GLOBAL innodb_undo_log_truncate=ON does not free space when no undo logs exist (MDEV-31382)

  • innodb_read_ahead_threshold (linear read-ahead) does not work (MDEV-29967)

  • fil_ibd_create() may hijack the file handle of an old file (MDEV-31347)

  • innodb_undo_log_truncate=ON recovery results in a corrupted undo log (MDEV-31373)

  • Foreign Key Constraint actions don't affect Virtual Column (MDEV-18114)

Aria

  • Various crashes upon INSERT/UPDATE after changing Aria settings (MDEV-28054)

  • Various crashes/asserts/corruptions when Aria encryption is enabled/used, but the encryption plugin is not loaded (MDEV-26258)

Spider

  • SIGSEGV in spider_db_open_item_field and SIGSEGV in spider_db_print_item_type, on SELECT (MDEV-29447)

  • Spider variables that double as table params overriding mechanism is buggy (MDEV-31524)

Optimizer

  • Assertion ``last_key_entry >= end_pos'failed in virtual boolJOIN_CACHE_HASHED::put_record()` (MDEV-31348)

  • Problem with open ranges on prefix blobs keys (MDEV-31800)

  • Equal on two RANK window functions create wrong result (MDEV-20010)

  • Recursive CTE execution is interrupted without errors or warnings (MDEV-31214)

  • Assertion ``s->table->opt_range_condition_rows <= s->found_records'failed inapply_selectivity_for_table` (MDEV-31449)

  • Inconsistency between MRR and SQL layer costs can cause poor query plan (MDEV-31479)

  • MAX_SEL_ARG memory exhaustion is not visible in the optimizer trace (MDEV-30964)

  • SHOW TABLES not working properly with lower_case_table_names=2 (MDEV-30765)

  • Segfault on select query using index for group-by and filesort (MDEV-30143)

  • Server crash in store_length, assertion failure in Type_handler_string_result::sort_length (MDEV-31743)

Replication

  • Parallel Slave SQL Thread Can Update Seconds_Behind_Master with Active Workers (MDEV-30619)

  • ALTER SEQUENCE ends up in optimistic parallel slave binlog out-of-order (MDEV-31503)

  • STOP SLAVE takes very long time on a busy system (MDEV-13915)

  • On slave XA COMMIT/XA ROLLBACK fail to return an error in read-only mode (MDEV-30978)

  • rpl.rpl_manual_change_index_file occasionally fails in BB with Result length mismatch (MDEV-30214)

Galera

  • Node has been dropped from the cluster on Startup / Shutdown with async replica (MDEV-31413)

  • KILL QUERY maintains nodes data consistency but breaks GTID sequence (MDEV-31075)

  • MariaDB stuck on starting commit state (waiting on commit order critical section) (MDEV-29293)

  • Assertion state() == s_aborting || state() == s_must_replay failed in int wsrep::transaction::after_rollback() (MDEV-30013)

  • Assertion !wsrep_has_changes(thd) || (thd->lex->sql_command == SQLCOM_CREATE_TABLE && !thd->is_current_stmt_binlog_format_row()) || thd->wsrep_cs().transaction().state() == wsrep::transaction::s_aborted failed (MDEV-30388)

  • Server crashes when wsrep_sst_donor and wsrep_cluster_address set to NULL (MDEV-28433)

  • Create temporary sequence can cause inconsistency (MDEV-31335)

  • Galera 4 unable to query cluster state if not primary component (MDEV-21479)

Security

  • Fixes for the following security vulnerabilities:

    • CVE--``#

Changelog

For a complete list of changes made in MariaDB 10.5.22, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.22, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.21 Release Notes

The most recent release of MariaDB 10.5 is:MariaDB 10.5.28 Stable (GA) Download NowAlternate download from mariadb.org

Download 10.5.21Release NotesChangelogOverview of 10.5

Release date: 7 Jun 2023

MariaDB 10.5 is a previous stable series of MariaDB, maintained until June 2025. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.21 is a Stable (GA) release.

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Items

InnoDB

  • Server crashes in st_join_table::choose_best_splitting (MDEV-31403)

  • Crash with condition pushable into derived and containing outer reference (MDEV-31240)

  • InnoDB does not free UNDO after the fix of MDEV-30671 (MDEV-31234)

  • Revert "MDEV-30473 : Do not allow GET_LOCK() / RELEASE_LOCK() in cluster"

Optimizer

  • Crash with condition pushable into derived and containing outer reference (MDEV-31403 MDEV-31240)

  • Crash with EXPLAIN EXTENDED for multi-table update of system table (MDEV-31224)

Security

  • Fixes for the following security vulnerabilities:

    • CVE--``#

Changelog

For a complete list of changes made in MariaDB 10.5.21, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.21, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.20 Release Notes

The most recent release of MariaDB 10.5 is:MariaDB 10.5.28 Stable (GA) Download NowAlternate download from mariadb.org

Download 10.5.20Release NotesChangelogOverview of 10.5

Release date: 10 May 2023

MariaDB 10.5 is a previous stable series of MariaDB, maintained until June 2025. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.20 is a Stable (GA) release.

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Items

InnoDB

  • Crash on ROLLBACK in a ROW_FORMAT=COMPRESSED table (MDEV-30882)

  • UNIQUE USING HASH accepts duplicate entries for tricky collations (MDEV-30034)

  • rec_get_offsets() is not optimal (MDEV-30567)

  • Performance regression in fil_space_t::try_to_close() introduced in MDEV-23855 (MDEV-30775)

  • InnoDB recovery hangs when buffer pool ran out of memory (MDEV-30551)

  • InnoDB undo log truncation fails to wait for purge of history (MDEV-30671

  • Fix miscount of doublewrites by Innodb_data_written (MDEV-31124)

Backup

  • mariadb-backup doesn't utilise innodb-undo-log-directory (if specified as a relative path) during copy-back operation (MDEV-28187)

  • mariadb-backup issues error messages during InnoDB tablespaces export on partial backup preparing (MDEV-29050)

  • mariadb-backup does not copy Aria logs if aria_log_dir_path is used (MDEV-30968)

  • Race condition between buffer pool flush and log file deletion in mariadb-backup --prepare (MDEV-30860)

Replication

  • Fixed a deadlock on parallel slave involving full image Write event on the sequence engine (MDEV-29621)

  • Fixed an attempted out-of-order binlogging error on slave involving ALTER on the sequence engine (MDEV-31077)

  • Corrected non-versioned master to versioned slave replication on no-unique attribute table (MDEV-30430)

  • Mended encrypted binlog master to error out to gtid-mode slave when master could not decrypt a binlog file (MDEV-28798)

  • Refined optimistic parallel slave to error-exit without any hang (MDEV-30780)

  • Ensured SHOW-SLAVE-STATUS is processed on the parallel slave having a necessary mutex always intialized (MDEV-30620)

  • Fixed the slave applier to report a correct error when gtid_slave_pos insert fails for some (engine) reasons (MDEV-31038)

Optimizer

  • Split Materialized optimization is improved to re-fill the materialized table only if necessary. The fewer number of table refills is taken into account when choosing query plan, too (MDEV-26301).

  • Queries using SELECT DISTINCT some_expression(aggregate_function()) could produce wrong query result. (MDEV-20057)

  • A GROUP BY query with MIN(primary_key) in select list and primary_key<>const in the WHERE could produce wrong result when executed with "Using index for group-by" strategy (MDEV-30605)

  • EXPLAIN could erroneously report that Rowid Filter optimization is used for partitioned tables. Partitioned tables do not support it. (MDEV-30596)

  • A bug in selectivity computations for SINGLE/DOUBLE_PREC_HB histograms could cause wrong estimates to be produced. This could cause the optimizer to pick sub-optimal query plans (MDEV-31067).

Docker Official Images

  • Add replication setup to containers contributed by Md Sahil (MDEV-29762)

Security

  • Fixes for the following security vulnerabilities:

    • CVE-2022-47015

Changelog

For a complete list of changes made in MariaDB 10.5.20, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.20, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.19 Release Notes

DownloadRelease NotesChangelogOverview of 10.5

Release date: 6 Feb 2023

MariaDB 10.5 is a previous stable series of MariaDB, maintained until June 2025. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.19 is a Stable (GA) release.

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Items

  • As mentioned in the 10.5.18 release notes, our Yum/DNF/Zypper repositories for Red Hat Enterprise Linux, CentOS, Fedora, openSUSE, and SUSE are changing with this release to being signed with a new GPG key with SHA2 digest algorithms instead of SHA1. See this blog post and the GPG page for more details.

InnoDB

  • Full-text index corruption with system versioning (MDEV-25004)

  • innodb_undo_log_truncate=ON recovery and backup fixes (MDEV-29999, MDEV-30179, MDEV-30438)

  • Upgrade after a crash is not supported (MDEV-24412)

  • Remove InnoDB buffer pool load throttling (MDEV-25417)

  • InnoDB shutdown hangs when the change buffer is corrupted (MDEV-30009)

  • innodb_fast_shutdown=0 fails to report change buffer merge progress (MDEV-29984)

Galera

  • Galera updated to 26.4.14

  • Fixes for cluster wide write conflict resolving (MDEV-29684)

Replication

  • Parallel slave applying in binlog order is corrected for admin class of commands including ANALYZE (MDEV-30323)

  • Seconds_Behind_Master is now shown now more precisely at the slave applier start, including in the delayed mode (MDEV-29639)

  • mysqlbinlog --verbose is made to show the type of compressed columns (MDEV-25277)

  • Deadlock is resolved on replica involving BACKUP STAGE BLOCK_COMMIT and a committing user XA (MDEV-30423)

JSON

  • JSON_PRETTY added as an alias for JSON_DETAILED (MDEV-19160)

General

  • Infinite sequence of recursive calls when processing embedded CTE (MDEV-30248)

  • Crash with a query containing nested WINDOW clauses (MDEV-30052)

  • Major performance regression with 10.6.11 (MDEV-29988)

  • As per the MariaDB Deprecation Policy, this will be the last release of MariaDB 10.5 for Fedora 35.

  • In this release repositories for Fedora 37 have been added.

Security

  • Fixes for the following security vulnerabilities:

    • CVE-`-```

Changelog

For a complete list of changes made in MariaDB 10.5.19, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.19, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.18 Release Notes

The most recent release of MariaDB 10.5 is:MariaDB 10.5.28 Stable (GA) Download NowAlternate download from mariadb.org

Download 10.5.18Release NotesChangelogOverview of 10.5

Release date: 7 Nov 2022

MariaDB 10.5 is a previous stable series of MariaDB, maintained until June 2025. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.18 is a Stable (GA) release.

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Items

SSL

  • The server no longer tolerates incorrectly configured SSL (MDEV-29811). If you have enabled SSL in my.cnf but have not configured it properly (for example, a certificate file is missing), MariaDB used to silently disable SSL, leaving you under impression that everything was fine and connections were secure. Since this release, MariaDB will fail to start if SSL is enabled, but cannot be switched on.

Backup

  • mariadb-backup --compress hangs (MDEV-29043)

  • Assertion on info.page_size failed in xb_delta_open_matching_space (MDEV-18589)

InnoDB

  • InnoDB unnecessarily extends data files (MDEV-13013)

  • Adaptive hash index MDEV-27700, MDEV-29384

  • MVCC and locking MDEV-29666, MDEV-27927

  • Virtual columns MDEV-29299, MDEV-29753

  • InnoDB crash recovery fixes (MDEV-29438, MDEV-29475)

  • InnoDB crash recovery fixes (MDEV-29559)

  • MVCC and locking (MDEV-28709)

  • Race condition between KILL and transaction commit (MDEV-29368)

Galera

  • Galera updated to 26.4.13

  • Galera server crashes after 10.3 > 10.4 upgrade (MDEV-29375)

  • wsrep_incoming_addresses status variable prints 0 as port number if the port is not mentioned in wsrep_node_incoming_address system variable (MDEV-28868)

JSON

  • JSON_VALUE() does not parse NULL properties properly (MDEV-27151)

Replication

  • minor correction in unsafe warning message (MDEV-28827)

  • False replication error-stop of REVOKE PRIVILEGES from a non-existing user on primary (MDEV-28530) in combination with a filtering replica is corrected

  • SET DEFAULT ROLE replication is mended on a replica that filters system tables (MDEV-28294)

  • XA COMMIT is not binlogged when the XA transaction has not updated any transaction engine (MDEV-25616)

  • Concurrent CREATE TRIGGER statements made to binlog without any mixup (MDEV-25606)

Repositories

  • Beginning with the next release (Q1 2023), our Yum, DNF, and Zypper repositories for Red Hat, Fedora, and SUSE will be migrated to being signed with a new GPG key. The key we are migrating to is the same one we already use for our Debian and Ubuntu Repositories.

    • The short Key ID is: 0xC74CD1D8

    • The long Key ID is: 0xF1656F24C74CD1D8

    • The full fingerprint of the key is: 177F 4010 FE56 CA33 3630 0305 F165 6F24 C74C D1D8

    • The key can be imported now in preparation for this change using the following command:

sudo rpm --import https://supplychain.mariadb.com/MariaDB-Server-GPG-KEY

Docker Official Image

The following changes have been made to the docker.io/library/mariadb container image.

  • The number of gpg packages has been removed, leaving enough to apt-get update, but dirmngr that would fetch keys has been removed. (inspired by issue #469

  • The environment variable LANG=C.UTF-8 has been added for those that exec into containers and copy paste UTF8 characters (fixes issue #468.

  • Adds OCI labels to image (fixes issue 436 and users need for version

  • MariaDB config: skip-host-cache and skip-name-resolve moved to /etc/mysql/mariadb.conf.d/05-skipcache.cnf

Security

  • Fixes for the following security vulnerabilities:

Changelog

For a complete list of changes made in MariaDB 10.5.18, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.18, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.17 Release Notes

The most recent release of MariaDB 10.5 is:MariaDB 10.5.28 Stable (GA) Download NowAlternate download from mariadb.org

Download 10.5.17Release NotesChangelogOverview of 10.5

Release date: 15 Aug 2022

MariaDB 10.5 is a previous stable series of MariaDB. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.17 is a Stable (GA) release.

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Items

InnoDB

  • InnoDB corruption due to lack of file locking (MDEV-28495)

  • FULLTEXT search with apostrophe, and mandatory words (MDEV-20797)

  • ALTER TABLE IMPORT TABLESPACE corrupts an encrypted table (MDEV-28779)

  • ALTER TABLE wrong-result fix (MDEV-26294)

  • Crash recovery fixes (MDEV-28668, MDEV-28731)

Replication

  • explicit_defaults_for_timestamp is stored in binlog, so that CREATE TABLE on slave would always have the same effect as on master. (MDEV-29078)

  • ER_SLAVE_INCIDENT error is specified now on slave to be seen with SHOW-SLAVE-STATUS (MDEV-21087)

  • INCIDENT_EVENT is no longer binlogged when a being logged transaction can be safely rolledback (MDEV-21443)

  • sequences related row-format events are made to correspond to binlog_row_image (MDEV-28487)

  • Possible reason of FLUSH BINARY LOGS hang is eliminated (MDEV-28948)

Galera

  • Galera updated to 26.4.12

  • Possible to write/update with read_only=ON and not a SUPER privilege (MDEV-28546)

  • Node crashes with Transport endpoint is not connected mysqld got signal 6 (MDEV-25068)

  • Galera4 not able to report proper wsrep_incoming_addresses (MDEV-20627)

  • Galera should replicate nextval()-related changes in sequences with INCREMENT <> 0, at least NOCACHE ones with engine=InnoDB (MDEV-27862)

Optimizer

  • Server crash in JOIN_CACHE::free or in copy_fields (MDEV-23809)

    • Queries that use DISTINCT and an always-constant function like COLLATION(aggegate_func(...)) could cause a server crash. Note that COLLATION() is a special function - its value is constant even if its argument is not costant.

  • Crash when using ANY predicand with redundant subquery in GROUP BY clause (MDEV-29139)

    • A query with a subuquery in this form could cause a crash:

... ANY (SELECT ... GROUP BY (SELECT redundant_subselect_here)) ...
  • MariaDB Server SEGV on INSERT .. SELECT (MDEV-26427)

    • Certain queries in form "INSERT ... SELECT with_aggregate_or_window_func" could cause a crash.

  • restore_prev_nj_state() doesn't update cur_sj_inner_tables correctly (MDEV-28749)

    • Subquery semi-join optimization could miss LooseScan or FirstMatch strategies for certain queries.

  • Optimizer uses all partitions after upgrade to 10.3 (MDEV-28246)

    • For multi-table UPDATE or DELETE queries, the optimizer failed to apply Partition Pruning optimization for the table that is updated or deleted from.

  • Range optimizer regression for key IN (const, ....) (MDEV-25020)

    • The issue can be observed on MariaDB 10.5.9 and later versions which have the fix for MDEV-9750. That fix introduceds optimizer_max_sel_arg_weight.

    • If one sets optimizer_max_sel_arg_weight to a very high value or zero (which means "unlimited") and runs queries that produce heavy-weight graphs, they can observe a performance slowdown, e.g.:

table.keyXpartY [NOT] IN ( ... )
  • Wrong result with table elimination combined with not_null_range_scan (MDEV-28858)

    • If one runs with optimizer_switch='not_null_range_scan=on' (which is not enabled by default), a query that does a join and has const tables could produce a wrong result.

CONNECT

  • CONNECT Engine now supports INSERT IGNORE with Mysql Table type (MDEV-27766)

mariadb Client

  • New mariadb client option, -enable-cleartext-plugin. Option does not do anything, and is for MySQL-compatibility purposes only.

General

  • explicit_defaults_for_timestamp now also has a session scope, not only global (MDEV-29225)

  • MariaDB can be built with OpenSSL 3.0

  • HELP was updated to include the latest content

  • Crash in JSON_EXTRACT (MDEV-29188)

  • ALTER TABLE ALGORITHM=NOCOPY does not work after upgrade (MDEV-28727)

  • Server crash upon CREATE VIEW with unknown column in ON condition (MDEV-29088)

  • As per the MariaDB Deprecation Policy, this will be the last release of MariaDB 10.5 for Debian 10 "Buster" for ppc64el

Security

  • Fixes for the following security vulnerabilities:

    • CVE-2023-5157

    • CVE-2022-32082

    • CVE-2022-32089

    • CVE-2022-32081

    • CVE-2018-25032

    • CVE-2022-32091

    • CVE-2022-32084

    • CVE-2022-38791

Changelog

For a complete list of changes made in MariaDB 10.5.17, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.17, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.16 Release Notes

The most recent release of MariaDB 10.5 is:MariaDB 10.5.28 Stable (GA) Download NowAlternate download from mariadb.org

Download 10.5.16Release NotesChangelogOverview of 10.5

Release date: 20 May 2022

MariaDB 10.5 is a previous stable series of MariaDB. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.16 is a Stable (GA) release.

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Items

InnoDB

  • innodb_disallow_writes removed (MDEV-25975)

  • InnoDB gap locking fixes (MDEV-20605, MDEV-28422)

  • InnoDB performance improvements (MDEV-27557, MDEV-28185)

Replication

  • Server initialization time gtid_slave_pos purge related reason of crashing in binlog background thread is removed (MDEV-26473)

  • Shutdown of the semisync master can't produce inconsistent state anymore (MDEV-11853)

  • Binlogs disappear after rsync IST (MDEV-28583)

  • master crash is eliminated in compressed semisync replication protocol with packet counting amendment (MDEV-25580)

  • OPTIMIZE on a sequence does not cause counterfactual ER_BINLOG_UNSAFE_STATEMENT anymore (MDEV-24617)

  • Automatically generated Gtid_log_list_event is made to recognize within replication event group as a formal member (MDEV-28550)

  • Replication unsafe INSERT .. ON DUPLICATE KEY UPDATE using two or more unique key values at a time with MIXED format binlogging is corrected (MDEV-28310)

  • Replication unsafe INSERT .. ON DUPLICATE KEY UPDATE stops issuing unnecessary "Unsafe statement" with MIXED binlog format (MDEV-21810)

  • Incomplete replication event groups are detected to error out by the slave IO thread (MDEV-27697)

  • mysqlbinlog --stop-never --raw now flushes the result file to disk after each processed event so the file can be listed with the actual bytes (MDEV-14608)

Backup

  • Incorrect binlogs after Galera SST using rsync and mariadb-backup (MDEV-27524)

  • mariadb-backup does not detect multi-source replication slave (MDEV-21037)

  • Useless warning "InnoDB: Allocated tablespace ID for , old maximum was 0" during backup stage (MDEV-27343)

  • mariadb-backup prepare fails for incrementals if a new schema is created after full backup is taken (MDEV-28446)

Optimizer

  • A SEGV in Item_field::used_tables/update_depend_map_for_order... (MDEV-26402)

  • ANALYZE FORMAT=JSON fields are incorrect for UNION ALL queries (MDEV-27699)

  • Subquery in an UPDATE query uses full scan instead of range (MDEV-22377)

  • Assertion `item1->type() == Item::FIELD_ITEM ... (MDEV-19398)

  • Server crashes in Expression_cache_tracker::fetch_current_stats (MDEV-28268)

  • MariaDB server crash at Item_subselect::init_expr_cache_tracker (MDEV-26164, MDEV-26047)

  • Crash with union of my_decimal type in ORDER BY clause (MDEV-25994)

  • SIGSEGV in st_join_table::cleanup (MDEV-24560)

  • Assertion `!eliminated' failed in Item_subselect::exec (MDEV-28437)

General

  • Server error messages are now available in Chinese (MDEV-28227)

  • For RHEL/CentOS 7, non x86_64 architectures are no longer supported upstream and so our support will also be dropped with this release

  • As per the MariaDB Deprecation Policy, this will be the last release of MariaDB 10.5 for Debian 9 "Stretch", Ubuntu 21.10 "Impish", and Fedora 34

Security

  • Fixes for the following security vulnerabilities:

    • CVE-2021-46669

    • CVE-2022-27376

    • CVE-2022-27377

    • CVE-2022-27378

    • CVE-2022-27379

    • CVE-2022-27380

    • CVE-2022-27381

    • CVE-2022-27382

    • CVE-2022-27383

    • CVE-2022-27384

    • CVE-2022-27386

    • CVE-2022-27387

    • CVE-2022-27444

    • CVE-2022-27445

    • CVE-2022-27446

    • CVE-2022-27447

    • CVE-2022-27448

    • CVE-2022-27449

    • CVE-2022-27451

    • CVE-2022-27452

    • CVE-2022-27455

    • CVE-2022-27456

    • CVE-2022-27457

    • CVE-2022-27458

    • CVE-2022-32087

    • CVE-2022-32086

    • CVE-2022-32085

    • CVE-2022-32083

    • CVE-2022-32088

Changelog

For a complete list of changes made in MariaDB 10.5.16, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.16, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.15 Release Notes

The most recent release of MariaDB 10.5 is:MariaDB 10.5.28 Stable (GA) Download NowAlternate download from mariadb.org

Download 10.5.15Release NotesChangelogOverview of 10.5

Release date: 12 Feb 2022

MariaDB 10.5 is a previous stable series of MariaDB. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.15 is a Stable (GA) release.

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Items

  • This release fixes a blocking problem with the MariaDB 10.5.14 release when manually running mariadb-upgrade. (MDEV-27789)

  • See MariaDB 10.5.14 for other changes since the previous release.

InnoDB

  • Set innodb_change_buffering=none by default (MDEV-27734)

Security

  • Fixes for the following security vulnerabilities:

    • CVE-2021-46665

    • CVE-2021-46664

    • CVE-2021-46661

    • CVE-2021-46668

    • CVE-2021-46663

Changelog

For a complete list of changes made in MariaDB 10.5.15, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.15, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.14 Release Notes

The most recent release of MariaDB 10.5 is:MariaDB 10.5.28 Stable (GA) Download NowAlternate download from mariadb.org

Download 10.5.14Release NotesChangelogOverview of 10.5

Release date: 9 Feb 2022

This release is no longer available for download after a problem was noticed when manually running mariadb-upgrade. See MDEV-27789 for more details.Please use a later release.

MariaDB 10.5 is a previous stable series of MariaDB. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.14 is a Stable (GA) release.

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Items

InnoDB

  • --skip-symbolic-links does not disallow .isl file creation (MDEV-26870)

  • Indexed CHAR columns are broken with NO_PAD collations (MDEV-25440)

  • insert-intention lock conflicts with waiting ORDINARY lock (MDEV-27025)

  • Crash recovery improvements (MDEV-26784, MDEV-27022, MDEV-27183, MDEV-27610)

Galera

  • Galera updated to 26.4.11

  • Galera SST scripts should use ssl_capath (not ssl_ca) for CA directory (MDEV-27181)

  • Alter Sequence do not replicate to another nodes with in Galera Cluster (MDEV-19353)

  • Galera crash - Assertion. Possible parallel writeset problem (MDEV-26803)

  • CREATE TABLE with FOREIGN KEY constraint fails to apply in parallel (MDEV-27276)

  • Galera cluster node consider old server_id value even after modification of server_id [wsrep_gtid_mode=ON] (MDEV-26223)

Replication

  • Seconds behind master corrected from artificial spikes at relay-log rotation (MDEV-16091)

  • Statement rollback in binlog when transaction creates or drop temporary table is set right (MDEV-26833)

  • CREATE-or-REPLACE SEQUENCE is made to binlog with the DDL flag to stabilize its parallel execution on slave (MDEV-27365)

Packaging & Misc

  • prohibition running two upgrades in parallel (MDEV-27068, MDEV-27107, MDEV-27279)

  • As per the MariaDB Deprecation Policy, this will be the last release of MariaDB 10.5 for Ubuntu 21.04 Hirsute, CentOS 8, and Fedora 33

  • mariadb_repo_setup script updated to version 2022-02-08, with the following fixes and enhancements:

    • Default location of the script has been moved to: mariadb_repo_setup (old location is deprecated, but still works)

    • The GPG keyring file, used with Debian and Ubuntu repositories, has moved to: mariadb-keyring-2019.gpg and the checksum for the file can be found at: mariadb-keyring-2019.gpg.sha256

    • Support for RHEL and SLES aarch64 repositories added

    • New function added to verify that the MariaDB Server version, if specified on the command line, follows the correct naming and that a corresponding repository actually exists.

    • Fixed repository pinning for Ubuntu and Debian repositories

    • MariaDB Server 10.7 is now the default server version

Docker Library

  • Faster initialization by disabling binary logging during initialization (MDEV-27074)

  • mysql_upgrade can be run if needed using the environment variable MARIADB_AUTO_UPGRADE=1 (MDEV-25670)

  • A healthcheck script /usr/local/bin/healthcheck.sh is installed in the container with various checking options (MDEV-25434)

  • mysql@localhost user is created with the environment variable MARIADB_MYSQL_LOCALHOST_USER=1 and additional grants (beyond USAGE) with MARIADB_MYSQL_LOCALHOST_GRANTS={global grant list} (MDEV-27732)

  • skip innodb buffer pool loads/dumps on temporary startup/shutdown for faster startup/initialization, and accurate "healthcheck.sh --innodb_buffer_pool_loaded"

  • change group ownership on datadir/socket dir (issue #401)

  • log note about note on Securing system users, mysql_secure_installation not required (reddit suggestion)

  • speed up Docker Library initialization of timezones (MDEV-27608, MDEV-23326)

Security

  • Fixes for the following security vulnerabilities:

    • CVE-2022-24052

    • CVE-2022-24051

    • CVE-2022-24050

    • CVE-2022-24048

    • CVE-2021-46659

    • CVE-2022-0778

    • CVE-2022-21595

Changelog

For a complete list of changes made in MariaDB 10.5.14, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.14, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.13 Release Notes

The most recent release of MariaDB 10.5 is:MariaDB 10.5.28 Stable (GA) Download NowAlternate download from mariadb.org

Download 10.5.13Release NotesChangelogOverview of 10.5

Release date: 8 Nov 2021

MariaDB 10.5 is a previous stable series of MariaDB. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.13 is a Stable (GA) release.

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Items

Galera

  • Fix for WSREP: invalid state ROLLED_BACK (FATAL) (MDEV-25114)

InnoDB

  • ALTER TABLE…IMPORT TABLESPACE fixes (MDEV-18543, MDEV-20931, MDEV-26131, MDEV-26621)

  • innodb_undo_log_truncate fixes (MDEV-26445, MDEV-26450, MDEV-26672, MDEV-26864)

  • Page I/O performance fixes (MDEV-25215, MDEV-26547, MDEV-26626, MDEV-26819)

  • Replication timeouts with XA PREPARE (MDEV-26682)

Replication

  • Memory hogging on slave by ROW event applier is eliminated (MDEV-26712)

  • mysql --binary-mode now properly handles \\0 in data (MDEV-25444)

  • Fixes race condition between SHOW BINARY LOGS and RESET MASTER (MDEV-20215)

  • Missed statement rollback in case transaction drops or create temporary table is corrected (MDEV-26833)

Audit Plugin

  • The QUERY_DDL server_audit_events setting now logs CREATE/DROP [PROCEDURE / FUNCTION / USER] statements. See MariaDB Audit Plugin - Log Settings. (MDEV-23457)

Packaging & Misc

  • Session tracking flag in OK_PACKET (MDEV-26868)

  • Some views force server (and mysqldump) to generate invalid SQL for their definitions (MDEV-26299)

Security

  • Fixes for the following security vulnerabilities:

    • CVE-2021-35604

    • CVE-2021-46667

    • CVE-2021-46662

    • CVE-2022-27385

    • CVE-2022-27385

    • CVE-2022-31624

Changelog

For a complete list of changes made in MariaDB 10.5.13, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.13, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.12 Release Notes

The most recent release of MariaDB 10.5 is:MariaDB 10.5.28 Stable (GA) Download NowAlternate download from mariadb.org

Download 10.5.12Release NotesChangelogOverview of 10.5

Release date: 6 Aug 2021

Warning: This version can cause InnoDB file corruption on FreeBSD and on AIX. If you are using AIX, please, stick to an earlier release, or upgrade to a more recent release. If you are using FreeBSD, upgrade to the bugfix release (the version ends with _1) of the mariadb-server from the Ports Collection. See MDEV-26537.

MariaDB 10.5 is a previous stable series of MariaDB. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.12 is a Stable (GA) release.

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Items

InnoDB

  • InnoDB no longer acquires advisory file locks by default (MDEV-24393)

  • Encryption: Automatically disable key rotation checks for file_key_management plugin (MDEV-14180)

  • Some fixes from MySQL 5.7.35 (MDEV-26205)

  • Fixed scrubbing on AIX (MDEV-26110)

  • Improved page flushing performance (MDEV-25954, MDEV-25948, MDEV-25801, MDEV-25113, MDEV-26004)

Optimizer

  • A query that uses ORDER BY .. LIMIT clause and "Range checked for each record optimization" could produce incorrect results under some circumstances (MDEV-25858)

  • Queries that have more than 32 equality conditions comparing columns of different tables ("tableX.colX=tableY.colY) could cause a stack overrun in the query optimizer (MDEV-17783, MDEV-23937)

  • "Condition pushdown into derived table" optimization cannot be applied if the expression being pushed refers to a derived table column which is computed from expression that has a stored function call, @session variable reference, or other similar construct. The fix for MDEV-25969 makes it so that only the problematic part of the condition is not pushed. The rest of the condition is now pushed. (MDEV-25969)

  • A query with window function on the left side of the subquery could cause a crash. (MDEV-25630)

  • Fixed the issue fixed in MySQL Bug #76803: DML or locking SELECT statements that use outer joins could produce this warning in the error log: [ERROR] InnoDB: Unlock row could not find a 3 mode lock on the record. (MDEV-26106)

Packaging & Misc

  • As per the MariaDB Deprecation Policy, this will be the last release of MariaDB 10.5 for Ubuntu 20.10 Groovy

  • Debian 11 Bullseye repositories added

  • Galera updated to 26.4.9

  • Linux on IBM Z (s390x) architecture added with releases on Ubuntu-20.04 Focal

Security

  • Fixes for the following security vulnerabilities:

    • CVE-2021-2372

    • CVE-2021-2389

    • CVE-2021-46658

Changelog

For a complete list of changes made in MariaDB 10.5.12, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.12, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.11 Release Notes

The most recent release of MariaDB 10.5 is:MariaDB 10.5.28 Stable (GA) Download NowAlternate download from mariadb.org

Download 10.5.11Release NotesChangelogOverview of 10.5

Release date: 23 Jun 2021

MariaDB 10.5 is the current stable series of MariaDB. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.11 is a Stable (GA) release.

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Items

This version of MariaDB is being released now to fix the following two regressions:

  • Table alias from previous statement interferes later commands (MDEV-25672)

  • Join using derived with aggregation returns incorrect results (MDEV-25714)

In addition to the above, this release also contains the following fixes:

InnoDB

  • InnoDB spatial indexes miss large geometry fields after MDEV-25459 (MDEV-25758)

  • Double free of transaction during truncate operation (MDEV-25663)

  • Double free of table when inplace alter FTS add index fails (MDEV-25721)

  • Potential hang in purge for virtual columns (MDEV-25664)

  • Change buffer records are lost under heavy load (MDEV-25783)

  • Not applying INSERT_REUSE_REDUNDANT (MDEV-25745)

  • InnoDB recovery fails with [ERROR] InnoDB: Not applying INSERT_REUSE_REDUNDANT due to corruption (MDEV-25745)

  • CHECK TABLE harvests InnoDB: Index 'abdcef' contains 10001 entries, should be 10000 (MDEV-25783)

Replication

  • Do not replicate killed multi-table OPTIMIZE TABLE when the signal arrives before any table has been processed (MDEV-22530)

  • Fix optimistic parallel applier to not deadlock on admin commands OPTIMIZE,REPAIR, and ANALYZE (MDEV-17515)

  • Backport MDEV-20821 parallel slave server shutdown hang (MDEV-22370)

  • Removed deprecated --base64-output to correct BINLOG clause inmysqlbinlog output (MDEV-25222)

Security

  • Fixes for the following security vulnerabilities:

    • CVE-2021-46666

    • CVE-2021-46657

Changelog

For a complete list of changes made in MariaDB 10.5.11, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.11, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.10 Release Notes

The most recent release of MariaDB 10.5 is:MariaDB 10.5.28 Stable (GA) Download NowAlternate download from mariadb.org

Download 10.5.10Release NotesChangelogOverview of 10.5

Release date: 7 May 2021

MariaDB 10.5 is the current stable series of MariaDB. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.10 is a Stable (GA) release.

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Changes

  • ST_DISTANCE_SPHERE for calculating the spherical distance between two geometries (point or multipoint) on a sphere (MDEV-13467)

  • Crash with invalid multi-table update of view in 2nd execution of SP (MDEV-24823)

  • Incorrect name resolution for subqueries in ON expressions (MDEV-25362)

  • Complex query in Store procedure corrupts results (MDEV-25182)

  • DELETE HISTORY may delete current data on system-versioned table (MDEV-25468)

  • Crashes with nested table value constructors (MDEV-22786)

  • Server crashes in thd_clear_errors() (MDEV-23542)

  • The statement set password=password('') executed in PS mode fails in case it is run by a user with expired password (MDEV-25197)

mariadb-backup

  • RENAME TABLE causes "Ignoring data file" messages (MDEV-25568)

InnoDB

  • Deprecated the *innodb and *none options in innodb_checksum_algorithm (MDEV-25106)

  • MVCC read from index on CHAR or VARCHAR wrongly omits rows (MDEV-25459)

  • Race conditions in persistent statistics (MDEV-10682, MDEV-18802, MDEV-25051)

  • Sequence created by one connection remains invisible to another (MDEV-24545)

  • innodb_flush_method=O_DIRECT fails on compressed tables (MDEV-25121)

  • RESET MASTER hangs (MDEV-24302)

  • InnoDB crash recovery fixes (MDEV-25031, MDEV-25110)

Replication

  • Replication Heartbeat event was uncapable to cary 4GB+ offsets (MDEV-16146)

  • FLUSH LOGS race against Binlog checkpoint event creation (MDEV-24526)

  • slave_compressed_protocol did not work correctly with semi-sync (MDEV-24773)

  • DROP TABLE should not cause "Query caused different errors on master and slave" on slave when it failed on master (MDEV-25530)

  • Killing server during RESET MASTER may lose MyRocks transaction (MDEV-25305)

Galera

  • Galera updated to 26.4.8

  • SET PASSWORD command fail with wsrep api (MDEV-25258)

  • Long BF log wait turns on InnoDB Monitor output without telling, never turns it off (MDEV-25319)

  • Assertion ``state_ == s_exec'failed inwsrep::client_state::start_transaction` (MDEV-22227)

  • Frequently Crashing Mariadb Cluster 10.4.18 (MDEV-24980)

  • Signal 11 on TABLE_LIST::placeholder() (MDEV-24878)

  • ALTER TABLE not replicated with Galera in MariaDB 10.5.9 (MDEV-24956)

  • "Flush SSL" command doesn't reload wsrep cert (MDEV-22668)

  • Avoid unnecessary rollbacks with SR (MDEV-25553)

Packaging & Misc

  • As per the MariaDB Deprecation Policy, this will be the last release of MariaDB 10.5 for Ubuntu 16.04 Xenial and Fedora 32

  • Ubuntu 21.04 Hirsute and Fedora 34 repositories added

Security

  • Fixes for the following security vulnerabilities:

    • CVE-2021-2166

    • CVE-2021-2154

    • CVE-2022-21451

MongoDB protocol support files for the CONNECT engine are missing in this release. If you want to use CONNECT engine with MongoDB, you need to download Mongo2.jar or Mongo3.jar and put a path to this file into the connect_class_path in the my.cnf.

Changelog

For a complete list of changes made in MariaDB 10.5.10, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.10, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.9 Release Notes

The most recent release of MariaDB 10.5 is:MariaDB 10.5.28 Stable (GA) Download NowAlternate download from mariadb.org

Download 10.5.9Release NotesChangelogOverview of 10.5

Release date: 22 Feb 2021

Last month long-time MariaDB VP of Engineering, Rasmus Johansson, passed due to complications from cancer. His loss has been felt keenly by the whole MariaDB team. Our thoughts are with his family during this difficult time and this release is dedicated to his memory.

MariaDB 10.5 is the current stable series of MariaDB. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.9 is a Stable (GA) release.

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Changes

InnoDB

  • MDEV-24188 - Hang in buf_page_create() after reusing a previously freed page

  • MDEV-24275 - InnoDB persistent stats analyze forces full scan forcing lock crash

  • MDEV-24449 - Corruption of system tablespace or last recovered page

  • MDEV-24109 - InnoDB hangs with innodb_flush_sync=OFF

  • MDEV-24537 - innodb_max_dirty_pages_pct_lwm=0 lost its special meaning

  • Fixed bugs in the handling of freed pages - MDEV-24569, MDEV-24695, MDEV-24765, MDEV-24864

  • MDEV-12227 - Defer writes to the InnoDB temporary tablespace

Galera

  • Galera updated to 26.4.7

  • MDEV-23328 - Server hang due to Galera lock conflict resolution

  • MDEV-23851 - BF-BF Conflict issue because of UK GAP locks

  • MDEV-20717 - Plugin system variables and activation options can break mysqld --wsrep_recover

  • MDEV-24469 - Assertion active() == false failed with "XA START.."

  • MDEV-23647 - Garbd can't initiate SST anymore in 10.5

  • MDEV-25179 - wsrep_provider and wsrep_notify_cmd system variables are now read-only

Replication

  • MDEV-8134 - relay-log is corrected to rotate past 999999

  • MDEV-23033 - fixed slave applier for row-based events with FK constraints on virtual columns

  • MDEV-4633 - Relay_Log_Space of Show-Slave-Status is made thread-safe

  • MDEV-10272 - add master host/port info to slave thread exit messages

  • MDEV-23846 - improves mysqlbinlog error message issuing

  • MDEV-24087 - replication of S3 ALTER PARTITION corrected

  • MDEV-23610 - New privilege REPLICA MONITOR (also accessible as SLAVE MONITOR)

ColumnStore

  • MariaDB ColumnStore updated to 5.5.1

  • MariaDB ColumnStore deb and rpm packages now have a version of 10.5.9-5.5.1 so one can see both the server version (10.5.9) and the plugin version (5.5.1) without needing to check the Available Versions table in the ColumnStore docs

  • The MariaDB ColumnStore plugin is no longer provided for 32-bit x86 (i386) builds

Misc

  • MariaDB is fixed to build on the Apple M1 CPU

  • MariaDB is fixed to build on AIX

  • MDEV-24122 - anomalies in mysql.user tables on previously 5.7 MySQL versions corrected

  • MDEV-24093 - Detect during mysql_upgrade if type_mysql_json.so is needed and load it

  • Binary tarballs now use WolfSSL v4.6.0 and pcre2-10.36

  • MDEV-23630 - mysqldump --system option

  • Fixes for the following security vulnerabilities:

    • CVE-2021-27928

Changelog

For a complete list of changes made in MariaDB 10.5.9, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.9, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.8 Release Notes

The most recent release of MariaDB 10.5 is:MariaDB 10.5.28 Stable (GA) Download NowAlternate download from mariadb.org

Download 10.5.8Release NotesChangelogOverview of 10.5

Release date: 11 Nov 2020

MariaDB 10.5 is the current stable series of MariaDB. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.8 is a Stable (GA) release.

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Changes

  • Out-of-cycle release to fix regressions in MariaDB 10.5.7

  • Follow up to MDEV-19838 to alter protocol checks to support the following implementations (which add garbage to the end of some packets):

    • PHP PDO (all versions) (MDEV-24121)

    • mysqlnd (from PHP < 7.3) (MDEV-24121)

    • mysql-connector-python (all versions) (MDEV-24134)

    • and mysql-connector-java (all versions)

  • Arbitrary InnoDB buffer pool and data file corruption (MDEV-24096)

  • The query optimizer consumed a lot of memory when handling construct in form of key_column [NOT] IN (large-list-of constants) (MDEV-24117)

  • Fixes for the following security vulnerabilities:

    • CVE--``#

Changelog

For a complete list of changes made in MariaDB 10.5.8, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.8, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.7 Release Notes

The most recent release of MariaDB 10.5 is:MariaDB 10.5.28 Stable (GA) Download NowAlternate download from mariadb.org

Download 10.5.7Release NotesChangelogOverview of 10.5

Release date: 3 Nov 2020

MariaDB 10.5 is the current stable series of MariaDB. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.7 is a Stable (GA) release.

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Changes

This release introduced an InnoDB data corruption bug (MDEV-24096). If any InnoDB tables contain indexed virtual columns or unique indexes on BLOB or TEXT columns, any InnoDB tables or tablespaces may become irreparably corrupted.

  • Improved write performance (MDEV-23399, MDEV-23855, MDEV-24037)

  • MDEV-18323 It is now possible to upgrade from MySQL 5.7 Tables containing JSON, by loading the MYSQL_JSON datatype plugin first. See Making MariaDB understand MySQL JSON.

  • Update S3 engine to maturity Gamma

  • mariadbd --temp-pool option deprecated and defaulted to zero (MDEV-22278)

  • BLACKHOLE Storage Engine maximum index size increased from 1000 to 3500 bytes (MDEV-24017)

  • Calculating (auto rounding) issue (MDEV-23702)

  • Temporary tables can no longer overwrite existing files. Instead an error is returned should a conflict occur (MDEV-23569)

  • Binlog checksum verification at recovery time (MDEV-23832)

  • Verbose print-out of Geometry types by mysqlbinlog (MDEV-22330)

  • SHOW BINLOG EVENTS from validates when binlog checksummed (MDEV-21839)

  • Freeing memory of replicate_do_table (MDEV-23534)

  • Corrected verbose mysqlbinlog output for multi-record Rows-log-event (MDEV-16372)

  • SET GLOBAL replicate_do_db = DEFAULT no longer causes crash (MDEV-20744)

  • User killed queries that were running an index condition pushdown in InnoDB will now return an error (MDEV-23938)

  • Wrong direxec param data caused crash; Numerous fixes about Mac builds (by Dmitri Shulga) (MDEV-19838)

  • server_audit plugin now logs proxy users (MDEV-19443)

  • Crash on SELECT on a table with indexed virtual columns (MDEV-18366)

  • InnoDB updated to 5.7.32 (MDEV-23989)

  • Bug fixes related to adaptive hash index (MDEV-23452, MDEV-23370)

  • Fixed a bug in the recovery of encrypted tables (MDEV-23456)

  • Fixed a race condition in MVCC reads (MDEV-22924)

  • ALTER TABLE fixes (MDEV-22277, MDEV-22939, MDEV-23199, MDEV-23356, MDEV-23499, MDEV-23672, MDEV-23685, MDEV-23722)

  • Diskspace not reused for BLOB in data file (MDEV-23072)

  • InnoDB: Failing assertion: !space->referenced() (MDEV-23651)

  • SIGSEGV in maria_create() because of double free (MDEV-23222)

  • CREATE TEMPORARY TABLE .. LIKE (system versioned table) returns error if unique index is defined in the table (MDEV-23968)

  • Error upon querying the view, that selecting from versioned table with partitions (MDEV-23779)

  • CREATE .. SELECT wrong result on join versioned table (MDEV-23799)

  • SIGSEGV in check_fields on UPDATE (MDEV-22805)

  • Parser fix (MDEV-23094)

  • Add CRC-32 code to mysys, giving notable speedup in checksum calculation on x64 (MDEV-19935)

  • Faster CRC-32C checksum calculations (MDEV-23495, MDEV-22749)

  • Fixes to potential corruption bugs (MDEV-23973, MDEV-24054)

  • Fixed delayed replication with S3 storage engine slave (MDEV-23691)

  • Deadlock between BACKUP STAGE BLOCK_COMMIT and parallel replication (MDEV-23586)

  • CREATE fails after DROP without .frm (MDEV-23549)

S3 Storage Engine

  • Update S3 engine to maturity Gamma

  • Add the s3_use_http and s3_port system variables

Galera

  • Galera wsrep library updated to 26.4.6

  • Fixed assertion failure on before_commit (MDEV-22681)

  • Fixed assertion after ROLLBACK AND CHAIN (MDEV-22055)

  • Fixed replication of DROP TRIGGER (MDEV-23638)

  • IPv6 SST handling improved (MDEV-21770, MDEV-23576, MDEV-23580, MDEV-23581, MDEV-23574)

  • Fixed SIGSEGV in lock_rec_unlock (MDEV-23101)

  • Fixed replication of timezone if only 1 timezone is loaded (MDEV-22626)

  • Fixed replication of CREATE OR REPLACE TRIGGER (MDEV-21578)

  • Fixed SST FLUSH TABLES WITH READ LOCK timeout (MDEV-22543)

Notes

  • As per the MariaDB Deprecation Policy, this will be the last release of MariaDB 10.5 for CentOS/RHEL 6 and Fedora 31

  • Packages for Ubuntu 20.10 "Groovy Gorilla" added

  • Packages for Debian 10 "buster" arm64 and ppc64el added

  • Packages for Debian 9 "stretch" arm64 added

  • Fixes for the following security vulnerabilities:

    • CVE-2020-14812

    • CVE-2020-14765

    • CVE-2020-14776

    • CVE-2020-14789

    • CVE-2020-28912 (MDEV-24040)

    • CVE-2021-2194 (MDEV-18366)

    • CVE-2022-21427

Changelog

For a complete list of changes made in MariaDB 10.5.7, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.7, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.6 Release Notes

The most recent release of MariaDB 10.5 is:MariaDB 10.5.28 Stable (GA) Download NowAlternate download from mariadb.org

Download 10.5.6Release NotesChangelogOverview of 10.5

Release date: 7 Oct 2020

MariaDB 10.5 is the current stable series of MariaDB. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.6 is a Stable (GA) release.

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Changes

  • Fixes for the following security vulnerabilities:

    • CVE-2020-15180

Changelog

For a complete list of changes made in MariaDB 10.5.6, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.6, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.5 Release Notes

The most recent release of MariaDB 10.5 is:MariaDB 10.5.28 Stable (GA) Download NowAlternate download from mariadb.org

DownloadRelease NotesChangelogOverview of 10.5

Release date: 10 Aug 2020

MariaDB 10.5 is the current stable series of MariaDB. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.5 is a Stable (GA) release.

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Changes

Deprecated variables

  • innodb_thread_concurrency

  • innodb_commit_concurrency

  • innodb_replication_delay

  • innodb_concurrency_tickets

  • innodb_thread_sleep_delay

  • innodb_adaptive_max_sleep_delay (MDEV-23379)

InnoDB

  • Fixed corruption in delete buffering (MDEV-22497)

  • Fixed a deadlock in FLUSH TABLES…FOR EXPORT (MDEV-22890)

  • InnoDB data file extension is not crash-safe (MDEV-23190)

  • Minor fixes related to encryption and FULLTEXT INDEX

  • Dropping the adaptive hash index may cause DDL to lock up InnoDB (MDEV-22456)

  • innodb_log_optimize_ddl=OFF is not crash safe (MDEV-21347)

  • Mariadb service won't shutdown when it's running and the OS datetime updated backwards (MDEV-17481)

  • Doublewrite recovery can corrupt data pages (MDEV-11799)

  • Fixed race conditions related to buffer pool resizing

  • ALTER TABLE fixes (MDEV-22637, MDEV-23244, MDEV-22988, MDEV-23295, MDEV-22771, MDEV-22811, MDEV-22899)

  • Slow InnoDB shutdown on large instance (MDEV-22778)

  • Fixes to performance regressions introduced in MariaDB 10.5.4 (MDEV-23017, MDEV-23369, MDEV-23410)

  • Performance improvements (MDEV-22110, MDEV-22930, MDEV-23379, MDEV-22778)

  • Correctly implemented the scrubbing of freed pages (MDEV-8139)

  • Crash recovery fixes (MDEV-21347, MDEV-23190, MDEV-11799)

Replication

  • Make the binlog dump thread to log into errorlog a requested GTID position (MDEV-20428)

  • Fix stop of the optimistic parallel slave at requested START-SLAVE-UNTIL position (MDEV-15152)

  • Properly handle RESET MASTER TO value, when the value exceeds the max allowed 2147483647 (MDEV-22451)

  • Correct 'relay-log.info' updating by concurrent parallel workers (MDEV-22806)

  • Eliminate deadlock involving parallel workers, STOP SLAVE and FLUSH TABLES WITH READ LOCK (MDEV-23089)

  • Correct master-slave automatic reconnection by slave to always pass through all steps of the initial connect. Specifically, do not skip master notification about slave binlog checksum awareness (MDEV-14203)

  • Refine mysqlbinlog output to print out START TRANSACTION at Gtid_log_event processing which satisfies clients that submit the output with sql_mode=oracle (MDEV-23108)

  • Replication aborts with ER_SLAVE_CONVERSION_FAILED upon CREATE ... SELECT in ORACLE mode (MDEV-19632)

Optimizer

  • Improve Protocol performance for numeric data by avoiding unnecessary character string conversions (MDEV-23162)

  • ALTER TABLE ... ANALYZE PARTITION ... with EITS reads and locks all rows ... (MDEV-21472)

  • Print ranges in the optimizer trace created for non-indexed columns when optimizer_use_condition_selectivity >2 Now the optimizer trace shows the ranges constructed while getting estimates from EITS (MDEV-22665)

  • LATERAL DERIVED is not clearly visible in EXPLAIN FORMAT=JSON, make LATERAL DERIVED tables visible in EXPLAIN FORMAT=JSON output (MDEV-17568)

  • Crash on WITH RECURSIVE large query (MDEV-22748)

  • Crash with Prepared Statement with a '?' parameter inside a re-used CTE (MDEV-22779)

Other

  • div_precision_increment is now taken into account for all intermediate calculations. Previously results could be unpredictable. Note that this means results will have a lower precision in some cases - see div_precision_increment (MDEV-19232)

  • mariadb_schema data type qualifier allowing MariaDB native date types in an SQL_MODE that has conflicting data type translations.

  • MariaDB could crash after changing the query_cache size (MDEV-5924)

  • Errors and SIGSEGV on CREATE TABLE w/ various charsets (MDEV-22111)

  • Crash in CREATE TABLE AS SELECT when the precision of returning type = 0 (MDEV-22502)

  • XA: Reject DDL operations between PREPARE and COMMIT (MDEV-22420)

  • Stop mariadb-backup --prepare on errors during innodb redo log applying (MDEV-22354)

  • Server crashes in mysql_alter_table upon adding a non-null date column under NO_ZERO_DATE with ALGORITHM=INPLACE (MDEV-18042)

  • Can't uninstall plugin if the library file doesn't exist (MDEV-21258)

  • mariadb-backup parameter cleanup (MDEV-18215, MDEV-21298, MDEV-21301, MDEV-22894)

  • Rounding functions return wrong datatype (MDEV-23366, MDEV-23367, MDEV-23368, MDEV-23350, MDEV-23351, MDEV-23337, MDEV-23323)

  • Create mariadb.sys user on each update even is the user is not needed (MDEV-23102)

  • INFORMATION_SCHEMA.INNODB_TABLESPACES_ENCRYPTION required SUPER instead PROCESS privilege (MDEV-23003)

  • Reinforce DDL operation rejection after XA PREPARE (MDEV-22420)

  • As per the MariaDB Deprecation Policy, this will be the last release of MariaDB 10.5 for Ubuntu 19.10 Eoan and Fedora 30

  • Fixes for the following security vulnerabilities:

    • CVE-2021-2022

Changelog

For a complete list of changes made in MariaDB 10.5.5, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.5, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.4 Release Notes

The most recent release of MariaDB 10.5 is:MariaDB 10.5.28 Stable (GA) Download NowAlternate download from mariadb.org

DownloadRelease NotesChangelogOverview of 10.5

Release date: 24 Jun 2020

MariaDB 10.5 is the current stable series of MariaDB. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.4 is a Stable (GA) release.

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Changes

This is the first Stable (GA) release in the MariaDB 10.5 series.

  • This release of MariaDB Server includes the S3 storage engine. Note, that plugins have independent maturity levels and S3 storage engine in 10.5.4 has Alpha maturity.

  • This release of MariaDB Server includes the MariaDB ColumnStore storage engine. Note, that plugins have independent maturity levels and MariaDB ColumnStore in 10.5.4 has Beta maturity.

  • New Gamma version of the Spider Storage Engine, 3.3.15.

  • DROP TABLE now reliably deletes table remnants inside a storage engine even if the .frm file is missing (MDEV-11412)

  • Accelerated crc32() function for AMD64, ARMv8, POWER 8 (MDEV-22669)

  • Lots of bug fixes, see the changelog.

  • Galera wsrep library updated to 26.4.5

Variables

  • Limit innodb_encryption_threads to 255 (MDEV-22258).

  • Minimum value of max_sort_length raised to 8 (previously 4) so fixed size data types like DOUBLE and BIGINT are not truncated for lower values of max_sort_length (MDEV-22715).

InnoDB

  • DROP TABLE improvements: MDEV-8069, MDEV-11412, MDEV-22456

  • InnoDB Performance improvements: MDEV-15053, MDEV-22593, MDEV-22697, MDEV-22871, MDEV-22841

Changelog

For a complete list of changes made in MariaDB 10.5.4, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.4, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.3 Release Notes

The most recent release of MariaDB 10.5 is:MariaDB 10.5.28 Stable (GA) Download NowAlternate download from mariadb.org

DownloadRelease NotesChangelogOverview of 10.5

Release date: 12 May 2020

MariaDB 10.5 is the current development series of MariaDB. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.3 is a Release Candidate (RC) release.

Do not use non-stable (non-GA) releases in production!

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Changes

This is the second beta release in the MariaDB 10.5 series.

Notable changes of this release include:

Syntax

  • Application period tables: WITHOUT OVERLAPS (MDEV-16978)

  • Introduce a file format constraint to ALTER TABLE. See innodb_instant_alter_column_allowed (MDEV-20590)

Large Pages

  • Modernise Linux Large Page support (multiplesizes) (MDEV-18851)

Storage Engines

  • Partitioned S3 tables are discoverable. This means that if you create a partitioned S3 table, both the partitioned table and its partitions can be directly used by another server that has access to the S3 storage. (MDEV-22088)

Performance

  • Optimizer flag rowid_filter leads to long query (MDEV-21794)

  • WSREP_ON is unnecessarily expensive to evaluate (MDEV-22203

  • Misc wsrep performance optimization (MDEV-7962)

Security

  • Added system user for user view which allows to remove root (MDEV-19650)

  • WolfSSL updated

  • ALTER USER doesn't remove excess authentication plugins from mysql.global_priv (MDEV-21928)

  • mysql_upgrade creating empty global_priv table (MDEV-21244)

Aria

  • Updated aria_pack to support transactional tables and added the --datadir, --ignore-control-file and --require-control-file options. More details here

ALTER TABLE

  • Error on online ADD PRIMARY KEY after instant DROP/reorder (MDEV-21658)

  • Assertion failure in file data0type.cc (MDEV-20726)

  • Server aborts upon attempt to create foreign key on spatial field (MDEV-21792)

  • DROP COLUMN, DROP INDEX is wrongly claimed to be ALGORITHM=INSTANT (MDEV-22465)

  • Introduce a file format constraint (MDEV-20590)

  • FORCE all partition to rebuild if any one of the partition does rebuild (MDEV-21832)

  • InnoDB aborts while adding instant column for discarded tablespace (MDEV-22446)

  • Misc ALTER TABLE assertion failure (MDEV-22358)

Optimizer

  • Optimizer, Wrong query results with optimizer_switch="split_materialized=on" (MDEV-21614)

  • SHOW GRANTS does not quote role names properly (MDEV-20076)

  • Paritioning INSERT chooses wrong partition for RANGE partitioning by DECIMAL column (MDEV-21195)

mariadb-backup

  • mariadb-backup does not honor ignore_db_dirs from server config (MDEV-19347)

  • mariadb-backup --ftwrl-wait-timeout never times out on explicit lock (MDEV-20230)

Crash Recovery

  • Loop of Read redo log up to LSN (MDEV-21826)

  • buf_page_get_gen() should apply buffered page initialized redo log during recovery (MDEV-21572)

  • Running out of file descriptors and eventual crash (MDEV-18027)

  • Efficient InnoDB redo log record format (MDEV-12353)

  • Punch holes when pages are freed (MDEV-15528)

Other

  • Use MariaDB in error messages instead of MySQL (MDEV-17812)

  • FULLTEXT INDEX, Assertion ``!table->fts->in_queue' failed in fts_optimize_remove_table` (MDEV-21550)

  • Wrong estimate of affected BLOB columns in update of PRIMARY KEY (MDEV-22384)

  • Duplicate key value is silently truncated to 64 characters in print_keydup_error (MDEV-20604)

  • Session tracking returns incorrectly long tracking data (MDEV-22504)

  • Add pam_user_map.so file to binary tarball package (MDEV-21913)

  • Misc fixes for Mac build (MENT-606)

  • mysql_upgrade is made aware of the upstream slave tables to issue warnings when that takes place (MDEV-10047)

  • InnoDB ALTER TABLE fixes (MDEV-21564, MDEV-19092, MDEV-21549)

  • InnoDB FULLTEXT INDEX fixes (MDEV-21563)

  • Corruption for SET GLOBAL innodb_ string variables (MDEV-22393)

  • Test suite, Add JUnit support to MTR to generate XML test result (MDEV-22176)

  • mysqldump parameter, --ignore-table-data, added (MDEV-22037)

  • Refactored MYSQL_BIN_LOG::xid_count_per_binlog to satisfy UBSAN enabled build (MDEV-20923)

  • Unregister of slave threads disconnected before COM_BINLOG_DUMP (Bug#29915479)

  • Server can fail while replicating conditional comments (Bug#28388217)

  • Added the xml-report option to mysql-test-run (MDEV-22176)

  • Packages and repositories for Ubuntu 20.04 "focal" added

Changelog

For a complete list of changes made in MariaDB 10.5.3, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.3, see the MariaDB Foundation release announcement.

Do not use non-stable (non-GA) releases in production!

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.2 Release Notes

The most recent release of MariaDB 10.5 is:MariaDB 10.5.28 Stable (GA) Download NowAlternate download from mariadb.org

DownloadRelease NotesChangelogOverview of 10.5

Release date: 26 Mar 2020

MariaDB 10.5 is the current development series of MariaDB. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.2 is a Beta release.

Do not use beta releases in production!

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Changes

This is the second beta release in the MariaDB 10.5 series.

Notable changes of this release include:

Syntax

  • RELEASE_ALL_LOCKS (MDEV-10569)

  • ALTER TABLE ... RENAME INDEX / KEY (MDEV-7318)

  • ALTER TABLE ... RENAME COLUMN (MDEV-16290)

  • Recursive CTE cycle detection using CYCLE clause (MDEV-20632)

  • ALTER TABLE and RENAME TABLE now support IF EXISTS.

Privileges

  • Split SUPER privilege to smaller privileges (MDEV-21743). New privileges were added so that more fine grained tuning of what each user can do can be applied:

    • BINLOG ADMIN

    • BINLOG REPLAY

    • CONNECTION ADMIN

    • FEDERATED ADMIN

    • READ_ONLY ADMIN

    • REPLICATION MASTER ADMIN

    • REPLICATION SLAVE ADMIN

    • SET USER

  • The REPLICATION CLIENT privilege was renamed to BINLOG MONITOR. The old syntax is understood for compatibility (MDEV-21743).

  • The SHOW MASTER STATUS statement was renamed to SHOW BINLOG STATUS (MDEV-21743). The old syntax is understood for compatibility.

  • A number of statements changed the privileges that they require. The old privileges were historically inappropriately chosen in the upstream. 10.5.2 fixes this problem. Note, these changes are incompatible to previous versions. A number of GRANT commands might be needed after upgrade.

    • SHOW BINLOG EVENTS now requires the BINLOG MONITOR privilege (required REPLICATION SLAVE prior to 10.5.2).

    • SHOW SLAVE HOSTS now requires the REPLICATION MASTER ADMIN privilege (required REPLICATION SLAVE prior to 10.5.2).

    • SHOW SLAVE STATUS now requires the REPLICATION SLAVE ADMIN or the SUPER privilege (required REPLICATION CLIENT or SUPER prior to 10.5.2).

    • SHOW RELAYLOG EVENTS now requires the REPLICATION SLAVE ADMIN privilege (required REPLICATION SLAVE prior to 10.5.2).

  • In order to help the server understand which version a privilege record was written by, the mysql.global_priv.priv field contains a new JSON field, version_id (MDEV-21704)

  • SHOW PRIVILEGES now correctly lists the Delete history privilege, rather than displaying it as Delete versioning rows. (MDEV-20382)

InnoDB

  • An upgrade will only be possible after a clean shutdown. mariadb-backup --prepare will not work with backups taken before version 10.5.2.

  • Efficient InnoDB redo log record format (MDEV-12353)

  • Deprecate and ignore innodb_scrub_log and innodb_scrub_log_speed (MDEV-21870)

  • Remove INFORMATION_SCHEMA.INNODB_TABLESPACES_SCRUBBING table and deprecate and ignore innodb-background-scrub-data-uncompressed, innodb-background-scrub-data-compressed, innodb-background-scrub-data-interval and innodb-background-scrub-data-check-interval (MDEV-15528)

  • Deprecate and ignore innodb_log_files_in_group (MDEV-14425)

  • Do not acquire InnoDB record locks when covering table locks exist (MDEV-14479)

  • Issue a message on changing deprecated innodb_log_files_in_group (MDEV-21990)

  • Optimize append only files for NVDIMM (MDEV-17084)

  • Improve innodb redo log group commit performance (MDEV-21534)

  • Punch holes when pages are freed (MDEV-15528)

Optimizer

  • Allow packed sort keys in sort buffer (MDEV-21580)

Performance Schema

  • Merge 5.7 P_S transaction instrumentation and tables (MDEV-16435)

  • Merge 5.7 P_S memory instrumentation and tables (MDEV-16431)

  • Merge 5.7 P_S mdl instrumentation and tables (MDEV-16432)

  • Merge 5.7 P_S sxlocks instrumentation and tables (MDEV-16436)

  • Merge 5.7 P_S user variables instrumentation and tables (MDEV-16439)

  • Merge 5.7 P_S [show] status instrumentation and tables (MDEV-16438)

  • Merge 5.7 P_S ps instrumentation and tables (MDEV-16433)

  • Merge 5.7 P_S sp instrumentation and tables (MDEV-16434)

Replication

  • ENFORCE option for slave_run_triggers_for_rbr (MDEV-21833)

ANALYZE FORMAT=JSON

  • Add information about packed addon fields in ANALYZE FORMAT=JSON (MDEV-21838)

Binaries

  • All binaries previously beginning with mysql now begin with mariadb, with symlinks for the corresponding mysql command. (MDEV-21303)

Galera

  • Galera wsrep library updated to 26.4.4

  • Galera Cluster Node During IST gets stuck going from "Synced" to "Joining:..." (MDEV-21002)

Other

  • HeidiSQL updated to 11.0 (MDEV-22032)

  • require_secure_transport system variable, for rejecting connections attempted using insecure transport (MDEV-13362)

  • sql_if_exists session system variable, which adds an implicit IF EXISTS to ALTER, RENAME and DROP of TABLES, VIEWS, FUNCTIONS and PACKAGES. (MDEV-19964)

  • XA PREPARE transactions must survive client disconnection (MDEV-742)

  • Binary tarball size has been reduced (MDEV-21943)

Changelog

For a complete list of changes made in MariaDB 10.5.2, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.2, see the MariaDB Foundation release announcement.

Do not use beta releases in production!

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.1 Release Notes

The most recent release of MariaDB 10.5 is:MariaDB 10.5.28 Stable (GA) Download NowAlternate download from mariadb.org

DownloadRelease NotesChangelogOverview of 10.5

Release date: 14 Feb 2020

MariaDB 10.5 is the current development series of MariaDB. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.1 is a Beta release.

Do not use beta releases in production!

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Changes

This will be the first beta release in the MariaDB 10.5 series.

Notable changes of this release include:

InnoDB

  • Remove dummy tablespace for the redo log (MDEV-18115)

  • Optimize access to InnoDB page header fields (MDEV-21133)

  • Remove multiple InnoDB buffer pool instances (MDEV-15058)

    • Deprecate and ignore innodb_buffer_pool_instances and innodb_page_cleaners

    • Columns that indicated the buffer pool instance from the Information Schema innodb_buffer_page, innodb_buffer_page_lru, innodb_buffer_pool_stats, innodb_cmpmem and innodb_cmpmem_reset tables now return a dummy value of 0.

  • Deprecate and ignore innodb_log_optimize_ddl (MDEV-19747)

  • Prefer MDL to dict_sys.latch for innodb background tasks (MDEV-16678)

  • Use fdatasync() for redo log where appropriate (MDEV-21382)

  • Replace recv_sys.heap with list of buf_block_t (MDEV-21351)

  • Several fixes to server hangs (MDEV-16264)

Optimizer

  • Allow packed values of non-sorted fields in the sort buffer (MDEV-21263)

Replication and Galera

  • slave_parallel_mode now defaults to optimistic (MDEV-18648).

  • Make REPLICA a synonym for SLAVE in SQL statements (MDEV-20601)

  • Galera GTID support (commit)

  • Add new mode to wsrep_OSU_method in which Galera checks storage engine of the effected table (MDEV-20051)

  • Galera: Replicate MariaDB GTID to other nodes in the cluster (MDEV-20720)

PCRE

  • Migrate to PCRE2 (MDEV-14024)

Compatibility

  • Show internal type for TIMESTAMP, DATETIME, and TIME columns (MDEV-19906)

Variables

  • Numerous deprecated variables removed (MDEV-18650)

    • multi_range_count

    • thread_concurrency

    • timed_mutexes

Changelog

For a complete list of changes made in MariaDB 10.5.1, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.1, see the MariaDB Foundation release announcement.

Do not use beta releases in production!

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL

MariaDB 10.5.0 Release Notes

The most recent release of MariaDB 10.5 is:MariaDB 10.5.28 Stable (GA) Download NowAlternate download from mariadb.org

DownloadRelease NotesChangelogOverview of 10.5

Release date: 3 Dec 2019

MariaDB 10.5 is the current development series of MariaDB. It is an evolution of MariaDB 10.4 with several entirely new features not found anywhere else and with backported and reimplemented features from MySQL.

MariaDB 10.5.0 is an Alpha release.

Do not use alpha releases in production!

For an overview of MariaDB 10.5 see theWhat is MariaDB 10.5? page.

Thanks, and enjoy MariaDB!

Notable Changes

This is the first alpha release in the MariaDB 10.5 series.

Notable changes of this release include:

INET 6 Data Type

  • New INET6 data type for storing IPv6 addresses (MDEV-274).

Syntax

  • INSERT ... RETURNING (MDEV-10014)

  • REPLACE ... RETURNING (MDEV-10014)

  • EXCEPT ALL and INTERSECT ALL (MDEV-18844)

  • Database comments in CREATE DATABASE and ALTER DATABASE statements (MDEV-307)

  • Setup default partitions for system versioning (MDEV-19903)

  • Fix REFERENCES constraint in column definition (MDEV-20729)

JSON

  • JSON_ARRAYAGG

  • JSON_OBJECTAGG

  • Add information about packed addon fields in ANALYZE FORMAT=JSON (MDEV-21838)

S3 Storage Engine

  • S3 Storage Engine, a read-only storage engine that stores its data in Amazon S3 (MDEV-17841)

Thread Pool

  • Information Schema tables (THREADPOOL_GROUPS, THREADPOOL_QUEUES and THREADPOOL_STATS) for internals of generic threadpool (MDEV-19313)

InnoDB

  • innodb_adaptive_hash_index now defaults to OFF (MDEV-20487)

  • innodb_checksum_algorithm now defaults to full_crc32 (MDEV-19534)

  • innodb_checksums has been removed (MDEV-19534)

  • innodb_log_checksums has been deprecated (MDEV-19543)

  • innodb_locks_unsafe_for_binlog has been removed (MDEV-19544)

  • innodb_stats_sample_pages has been removed (MDEV-19551)

  • innodb_undo_logs has been deprecated (MDEV-19570)

  • innodb_rollback_segments has been removed (MDEV-19570)

  • Set innodb_log_files_in_group=1 by default (MDEV-20907)

  • Extend SHOW STATUS LIKE 'Innodb_%' (MDEV-18582)

  • Clean up INFORMATION_SCHEMA.INNODB_ tables (MDEV-19940)

  • Doublewrite buffer is unnecessarily used for newly (re)initialized pages (MDEV-19738)

  • Defer change buffer merge until pages are requested (MDEV-19514)

InnoDB Refactoring

  • Remove buf_page_t::newest_modification (MDEV-21132)

  • Replace recv_sys_t::addr_hash with a std::map (MDEV-19586)

  • Obsolete internal parser for FK in InnoDB (MDEV-20480)

  • InnoDB thread pool for background tasks (MDEV-16264)

Binary Log

  • Extended binlog metadata (MDEV-20477)

Query Optimizer

  • ANALYZE for statements is improved, now it also shows the time spent checking the WHERE clause and doing other auxiliary operations (MDEV-20854)

  • Inferred IS NOT NULL predicates can be used by the range optimizer (MDEV-15777)

Galera

  • Galera 4 Inconsistency voting (MDEV-17048)

General

  • The Information Schema SYSTEM_VARIABLES Table has a new column showing from which config file a variable derives its value (MDEV-12684)

  • Switch Perl DBI scripts from DBD::mysql to DBD::MariaDB driver (MDEV-19755)

  • The Aria max key length is now 2000 bytes, compared to 1000 bytes in MyISAM.

Do not use alpha releases in production!

Changelog

For a complete list of changes made in MariaDB 10.5.0, with links to detailed information on each push, see the changelog.

Contributors

For a full list of contributors to MariaDB 10.5.0, see the MariaDB Foundation release announcement.

Be notified of new MariaDB Server releases automatically by subscribing to the MariaDB Foundation community announce 'at' lists.mariadb.org announcement list (this is a low traffic, announce-only list). MariaDB plc customers will be notified for all new releases, security issues and critical bug fixes for all MariaDB plc products thanks to the Notification Services.

MariaDB may already be included in your favorite OS distribution. More information can be found on the Distributions which Include MariaDB page.

This page is licensed: CC BY-SA / Gnu FDL