From b371e7ac9d4365eb2f1034e7d891e92e8a0f78b9 Mon Sep 17 00:00:00 2001 From: Johan Wikman Date: Fri, 14 Sep 2018 10:43:14 +0300 Subject: [PATCH 1/3] Update release notes. --- .../Release-Notes/MaxScale-2.2.14-Release-Notes.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Documentation/Release-Notes/MaxScale-2.2.14-Release-Notes.md b/Documentation/Release-Notes/MaxScale-2.2.14-Release-Notes.md index edbc84b88..3cc475de7 100644 --- a/Documentation/Release-Notes/MaxScale-2.2.14-Release-Notes.md +++ b/Documentation/Release-Notes/MaxScale-2.2.14-Release-Notes.md @@ -2,8 +2,8 @@ Release 2.2.14 is a GA release. -This document describes the changes in release 2.2.14, when compared to -release 2.2.13. +This document describes the changes in release 2.2.14, when compared to the +previous release in the same series. For any problems you encounter, please consider submitting a bug report on [our Jira](https://jira.mariadb.org/projects/MXS). @@ -14,11 +14,15 @@ report on [our Jira](https://jira.mariadb.org/projects/MXS). ## Bug fixes +* [MXS-2046](https://jira.mariadb.org/browse/MXS-2046) Memory leak in binlog router +* [MXS-2042](https://jira.mariadb.org/browse/MXS-2042) Hang with multistatment queries * [MXS-2041](https://jira.mariadb.org/browse/MXS-2041) Crash on failure to create schemarouter session * [MXS-2040](https://jira.mariadb.org/browse/MXS-2040) Default monitor timeouts are too short * [MXS-2037](https://jira.mariadb.org/browse/MXS-2037) % wildcards not working with source in Named Server Filter * [MXS-2036](https://jira.mariadb.org/browse/MXS-2036) A slave with sql thread stopped causes wrong master after failover +* [MXS-2035](https://jira.mariadb.org/browse/MXS-2035) available_when_donor don't working with mariabackup sst method * [MXS-2034](https://jira.mariadb.org/browse/MXS-2034) query_retry_timeout was not set +* [MXS-2033](https://jira.mariadb.org/browse/MXS-2033) MASTER_SSL_KEY and MASTER_SSL_CERT should not be required * [MXS-2027](https://jira.mariadb.org/browse/MXS-2027) LOAD DATA LOCAL INFILE is not ignored by protocol modules * [MXS-2024](https://jira.mariadb.org/browse/MXS-2024) Crash in reauthenticate_client * [MXS-2019](https://jira.mariadb.org/browse/MXS-2019) All atexit handlers aren't called @@ -26,6 +30,7 @@ report on [our Jira](https://jira.mariadb.org/projects/MXS). * [MXS-2007](https://jira.mariadb.org/browse/MXS-2007) Fatal: MaxScale 2.2.13 received fatal signal 11 (Aurora Monitor) * [MXS-1999](https://jira.mariadb.org/browse/MXS-1999) Invalid null relationship handling in REST API * [MXS-1996](https://jira.mariadb.org/browse/MXS-1996) Avrorouter writes misleading error messages to the log +* [MXS-1947](https://jira.mariadb.org/browse/MXS-1947) Composite roles are not supported * [MXS-1880](https://jira.mariadb.org/browse/MXS-1880) MaxScale 2.2.5-1 Crashes after a non clean Start * [MXS-1736](https://jira.mariadb.org/browse/MXS-1736) Clarify the usage of maxpasswd in documentation * [MXS-1735](https://jira.mariadb.org/browse/MXS-1735) Clarify SSL documentation From d6ce6e42897ab6d9e08fec62995767e348557ee8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Sat, 15 Sep 2018 01:22:39 +0300 Subject: [PATCH 2/3] MXS-2035: Fix available_when_donor The parameter got broken by the previous change. --- server/modules/monitor/galeramon/galeramon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/modules/monitor/galeramon/galeramon.c b/server/modules/monitor/galeramon/galeramon.c index 532ef5709..ab8c5bc19 100644 --- a/server/modules/monitor/galeramon/galeramon.c +++ b/server/modules/monitor/galeramon/galeramon.c @@ -281,7 +281,7 @@ static bool using_xtrabackup(MXS_MONITORED_SERVER *database, const char* server_ while ((row = mysql_fetch_row(result))) { - if (row[1] && (strcmp(row[1], "xtrabackup") == 0 || strcmp(row[1], "mariabackup"))) + if (row[1] && (strcmp(row[1], "xtrabackup") == 0 || strcmp(row[1], "mariabackup") == 0)) { rval = true; } From 81a18db18efce68047330672e5fca8c482418e5f Mon Sep 17 00:00:00 2001 From: Johan Wikman Date: Mon, 17 Sep 2018 12:52:25 +0300 Subject: [PATCH 3/3] Update release date --- Documentation/Release-Notes/MaxScale-2.2.14-Release-Notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/Release-Notes/MaxScale-2.2.14-Release-Notes.md b/Documentation/Release-Notes/MaxScale-2.2.14-Release-Notes.md index 3cc475de7..c46fd8940 100644 --- a/Documentation/Release-Notes/MaxScale-2.2.14-Release-Notes.md +++ b/Documentation/Release-Notes/MaxScale-2.2.14-Release-Notes.md @@ -1,4 +1,4 @@ -# MariaDB MaxScale 2.2.14 Release Notes +# MariaDB MaxScale 2.2.14 Release Notes -- 2018-09-17 Release 2.2.14 is a GA release.