From f0a0a8f7372dd697bf0ff56bf28744cbe2b17f2d Mon Sep 17 00:00:00 2001 From: Tomislav Plavcic Date: Wed, 6 Aug 2014 21:55:47 +0200 Subject: [PATCH] Build percona-toolkit-2.2.10 --- Changelog | 2 ++ Makefile.PL | 2 +- config/deb/changelog | 11 +++++++++++ config/sphinx-build/conf.py | 2 +- docs/percona-toolkit.pod | 2 +- docs/release_notes.rst | 29 +++++++++++++++++++++++++++++ 6 files changed, 45 insertions(+), 3 deletions(-) diff --git a/Changelog b/Changelog index f3bb5ae3..1752c5bd 100644 --- a/Changelog +++ b/Changelog @@ -1,5 +1,7 @@ Changelog for Percona Toolkit +v2.2.10 released 2014-08-06 + * Fixed bug 1287253: pt-table-checksum deadlock * Fixed bug 1299387: 5.6 slow query log Thead_id becomes Id * Fixed bug 1311654: pt-table-checksum + PXC inconsistent results upon --resume diff --git a/Makefile.PL b/Makefile.PL index 4cc44aca..d1642e51 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -2,7 +2,7 @@ use ExtUtils::MakeMaker; WriteMakefile( NAME => 'percona-toolkit', - VERSION => '2.2.9', + VERSION => '2.2.10', EXE_FILES => [ ], MAN1PODS => { 'docs/percona-toolkit.pod' => 'blib/man1/percona-toolkit.1p', diff --git a/config/deb/changelog b/config/deb/changelog index 552645c5..22429a93 100644 --- a/config/deb/changelog +++ b/config/deb/changelog @@ -1,3 +1,14 @@ +percona-toolkit (2.2.10) unstable; urgency=low + + * Fixed bug 1287253: pt-table-checksum deadlock + * Fixed bug 1299387: 5.6 slow query log Thead_id becomes Id + * Fixed bug 1311654: pt-table-checksum + PXC inconsistent results upon --resume + * Fixed bug 1340728: pt-online-schema-change doesn't work with HASH indexes + * Fixed bug 1253872: pt-table-checksum max load 20% rounds down + * Fixed bug 1340364: some shell tools output error when queried for --version + + -- Percona Toolkit Developers Wed, 06 Aug 2014 19:53:53 +0000 + percona-toolkit (2.2.9) unstable; urgency=low * Fixed bug 1258135: pt-deadlock-logger introduces a noise to MySQL diff --git a/config/sphinx-build/conf.py b/config/sphinx-build/conf.py index 8eba050a..fe8f3a4a 100644 --- a/config/sphinx-build/conf.py +++ b/config/sphinx-build/conf.py @@ -50,7 +50,7 @@ copyright = u'2013, Percona LLC and/or its affiliates' # The short X.Y version. version = '2.2' # The full version, including alpha/beta/rc tags. -release = '2.2.9' +release = '2.2.10' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/percona-toolkit.pod b/docs/percona-toolkit.pod index bfda6763..cc3f4378 100644 --- a/docs/percona-toolkit.pod +++ b/docs/percona-toolkit.pod @@ -557,6 +557,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA. =head1 VERSION -Percona Toolkit v2.2.9 released 2014-07-08 +Percona Toolkit v2.2.10 released 2014-08-06 =cut diff --git a/docs/release_notes.rst b/docs/release_notes.rst index 4673db42..3142fdd3 100644 --- a/docs/release_notes.rst +++ b/docs/release_notes.rst @@ -1,6 +1,35 @@ Release Notes ************* +v2.2.10 released 2014-08-06 +=========================== + +Percona Toolkit 2.2.10 has been released. This release contains six bug fixes. + +Bugs Fixed: + +* Fixed bug 1287253: pt-table-checksum would exit with error if it would encounter deadlock when doing checksum. This was fixed by retrying the command in case of deadlock error. + +* Fixed bug 1311654: When used with Percona XtraDB Cluster, pt-table-checksum could show incorrect result if --resume option was used. This was fixed by adding a new ``--replicate-check-retries`` command line parameter. If you are having resume problems you can now set ``--replicate-check-retries`` N , where N is the number of times to retry a discrepant checksum (default = 1 , no retries). Setting a value of ``3`` is enough to completely eliminate spurious differences. + +* Fixed bug 1299387: pt-query-digest didn't work correctly do to a changed logging format when field ``Thread_id`` has been renamed to ``Id``. Fixed by implementing support for the new format. + +* Fixed bug 1340728: in some cases, where the index was of type "hash" , pt-online-schema-change would refuse to run because MySQL reported it would not use an index for the select. This check should have been able to be skipped using --nocheck-plan option, but it wasn't. ``--nocheck-plan`` now ignores the chosen index correctly. + +* Fixed bug 1253872: When running pt-table-checksum or pt-online-schema on a server that is unused, setting the 20% max load would fail due to tools rounding the value down. This has been fixed by rounding the value up. + +* Fixed bug 1340364: Due to incompatibility of dash and bash syntax some shell tools were showing error when queried for version. + +Changelog +--------- + +* Fixed bug 1287253: pt-table-checksum deadlock +* Fixed bug 1299387: 5.6 slow query log Thead_id becomes Id +* Fixed bug 1311654: pt-table-checksum + PXC inconsistent results upon --resume +* Fixed bug 1340728: pt-online-schema-change doesn't work with HASH indexes +* Fixed bug 1253872: pt-table-checksum max load 20% rounds down +* Fixed bug 1340364: some shell tools output error when queried for --version + v2.2.9 released 2014-07-08 ==========================