From ffc0fd9ae218fbdca0e88009c8061065f727c838 Mon Sep 17 00:00:00 2001 From: Carlos Salguero Date: Mon, 10 Sep 2018 17:01:41 -0300 Subject: [PATCH] RM-387 Updated version, changelog and release notes --- Changelog | 7 +++++++ bin/pt-archiver | 2 +- bin/pt-config-diff | 2 +- bin/pt-deadlock-logger | 2 +- bin/pt-diskstats | 2 +- bin/pt-duplicate-key-checker | 2 +- bin/pt-find | 2 +- bin/pt-fk-error-logger | 2 +- bin/pt-heartbeat | 2 +- bin/pt-index-usage | 2 +- bin/pt-kill | 2 +- bin/pt-online-schema-change | 2 +- bin/pt-query-digest | 2 +- bin/pt-slave-delay | 2 +- bin/pt-slave-restart | 2 +- bin/pt-table-checksum | 2 +- bin/pt-table-sync | 2 +- bin/pt-upgrade | 2 +- bin/pt-variable-advisor | 2 +- docs/rn.3-0-12.txt | 14 ++++++++++++++ lib/Percona/Toolkit.pm | 2 +- 21 files changed, 40 insertions(+), 19 deletions(-) create mode 100644 docs/rn.3-0-12.txt diff --git a/Changelog b/Changelog index b8c68302..c7e58600 100644 --- a/Changelog +++ b/Changelog @@ -1,5 +1,12 @@ Changelog for Percona Toolkit + * Fixed bug PT-1611: pt-archiver fails with UTF-8 chars + * Fixed bug PT-1603: pt-table-sync is not considering unsorted enum fields in indexes for calculating chunk boundaries + * Fixed bug PT-1574: pt-online-schema-change fails on UK and NULLs + * Fixed bug PT-1572: Better usage of ENUM fields in keys in NibbleIterator + * Fixed bug PT-1422: pt-mysql-summary may get stuck when Time: NULL in processlist + * Improvement PT-1321: Add required MySQL privileges to pt-online-schema-change documentation + v3.0.11 released 2018-07-06 * Improvement PT-1571 : Improved hostname recognition in pt-secure-collect diff --git a/bin/pt-archiver b/bin/pt-archiver index 9458c155..61d0dfce 100755 --- a/bin/pt-archiver +++ b/bin/pt-archiver @@ -45,7 +45,7 @@ BEGIN { { package Percona::Toolkit; -our $VERSION = '3.0.11-dev'; +our $VERSION = '3.0.12'; use strict; use warnings FATAL => 'all'; diff --git a/bin/pt-config-diff b/bin/pt-config-diff index d8c01460..f8261300 100755 --- a/bin/pt-config-diff +++ b/bin/pt-config-diff @@ -43,7 +43,7 @@ BEGIN { { package Percona::Toolkit; -our $VERSION = '3.0.11-dev'; +our $VERSION = '3.0.12'; use strict; use warnings FATAL => 'all'; diff --git a/bin/pt-deadlock-logger b/bin/pt-deadlock-logger index eb3ccf9d..ee9a9ea7 100755 --- a/bin/pt-deadlock-logger +++ b/bin/pt-deadlock-logger @@ -42,7 +42,7 @@ BEGIN { { package Percona::Toolkit; -our $VERSION = '3.0.11-dev'; +our $VERSION = '3.0.12'; use strict; use warnings FATAL => 'all'; diff --git a/bin/pt-diskstats b/bin/pt-diskstats index 5a31deab..73950e21 100755 --- a/bin/pt-diskstats +++ b/bin/pt-diskstats @@ -38,7 +38,7 @@ BEGIN { { package Percona::Toolkit; -our $VERSION = '3.0.11-dev'; +our $VERSION = '3.0.12'; use strict; use warnings FATAL => 'all'; diff --git a/bin/pt-duplicate-key-checker b/bin/pt-duplicate-key-checker index 08ca7804..704e51be 100755 --- a/bin/pt-duplicate-key-checker +++ b/bin/pt-duplicate-key-checker @@ -39,7 +39,7 @@ BEGIN { { package Percona::Toolkit; -our $VERSION = '3.0.11-dev'; +our $VERSION = '3.0.12'; use strict; use warnings FATAL => 'all'; diff --git a/bin/pt-find b/bin/pt-find index 78e44449..aca9448f 100755 --- a/bin/pt-find +++ b/bin/pt-find @@ -35,7 +35,7 @@ BEGIN { { package Percona::Toolkit; -our $VERSION = '3.0.11-dev'; +our $VERSION = '3.0.12'; use strict; use warnings FATAL => 'all'; diff --git a/bin/pt-fk-error-logger b/bin/pt-fk-error-logger index 9a99b7c3..ff022201 100755 --- a/bin/pt-fk-error-logger +++ b/bin/pt-fk-error-logger @@ -37,7 +37,7 @@ BEGIN { { package Percona::Toolkit; -our $VERSION = '3.0.11-dev'; +our $VERSION = '3.0.12'; use strict; use warnings FATAL => 'all'; diff --git a/bin/pt-heartbeat b/bin/pt-heartbeat index 4cac693e..2ad6faf4 100755 --- a/bin/pt-heartbeat +++ b/bin/pt-heartbeat @@ -44,7 +44,7 @@ BEGIN { { package Percona::Toolkit; -our $VERSION = '3.0.11-dev'; +our $VERSION = '3.0.12'; use strict; use warnings FATAL => 'all'; diff --git a/bin/pt-index-usage b/bin/pt-index-usage index 0e2bcd8e..dbf6e50a 100755 --- a/bin/pt-index-usage +++ b/bin/pt-index-usage @@ -45,7 +45,7 @@ BEGIN { { package Percona::Toolkit; -our $VERSION = '3.0.11-dev'; +our $VERSION = '3.0.12'; use strict; use warnings FATAL => 'all'; diff --git a/bin/pt-kill b/bin/pt-kill index c4b60a8a..9d6ea833 100755 --- a/bin/pt-kill +++ b/bin/pt-kill @@ -47,7 +47,7 @@ BEGIN { { package Percona::Toolkit; -our $VERSION = '3.0.11-dev'; +our $VERSION = '3.0.12'; use strict; use warnings FATAL => 'all'; diff --git a/bin/pt-online-schema-change b/bin/pt-online-schema-change index a4027e0e..7d821070 100755 --- a/bin/pt-online-schema-change +++ b/bin/pt-online-schema-change @@ -56,7 +56,7 @@ BEGIN { { package Percona::Toolkit; -our $VERSION = '3.0.11-dev'; +our $VERSION = '3.0.12'; use strict; use warnings FATAL => 'all'; diff --git a/bin/pt-query-digest b/bin/pt-query-digest index 11dd50fa..af5cea6c 100755 --- a/bin/pt-query-digest +++ b/bin/pt-query-digest @@ -64,7 +64,7 @@ BEGIN { { package Percona::Toolkit; -our $VERSION = '3.0.11-dev'; +our $VERSION = '3.0.12'; use strict; use warnings FATAL => 'all'; diff --git a/bin/pt-slave-delay b/bin/pt-slave-delay index 4696bff9..4e75d05e 100755 --- a/bin/pt-slave-delay +++ b/bin/pt-slave-delay @@ -40,7 +40,7 @@ BEGIN { { package Percona::Toolkit; -our $VERSION = '3.0.11-dev'; +our $VERSION = '3.0.12'; use strict; use warnings FATAL => 'all'; diff --git a/bin/pt-slave-restart b/bin/pt-slave-restart index 76181367..a6cc7a99 100755 --- a/bin/pt-slave-restart +++ b/bin/pt-slave-restart @@ -41,7 +41,7 @@ BEGIN { { package Percona::Toolkit; -our $VERSION = '3.0.11-dev'; +our $VERSION = '3.0.12'; use strict; use warnings FATAL => 'all'; diff --git a/bin/pt-table-checksum b/bin/pt-table-checksum index b5053504..cf1000fd 100755 --- a/bin/pt-table-checksum +++ b/bin/pt-table-checksum @@ -58,7 +58,7 @@ BEGIN { { package Percona::Toolkit; -our $VERSION = '3.0.11-dev'; +our $VERSION = '3.0.12'; use strict; use warnings FATAL => 'all'; diff --git a/bin/pt-table-sync b/bin/pt-table-sync index eb4b4a76..a29f52d3 100755 --- a/bin/pt-table-sync +++ b/bin/pt-table-sync @@ -55,7 +55,7 @@ BEGIN { { package Percona::Toolkit; -our $VERSION = '3.0.11-dev'; +our $VERSION = '3.0.12'; use strict; use warnings FATAL => 'all'; diff --git a/bin/pt-upgrade b/bin/pt-upgrade index 127ac4df..852b4d85 100755 --- a/bin/pt-upgrade +++ b/bin/pt-upgrade @@ -61,7 +61,7 @@ BEGIN { { package Percona::Toolkit; -our $VERSION = '3.0.11-dev'; +our $VERSION = '3.0.12'; use strict; use warnings FATAL => 'all'; diff --git a/bin/pt-variable-advisor b/bin/pt-variable-advisor index d8d7b72d..16712ebd 100755 --- a/bin/pt-variable-advisor +++ b/bin/pt-variable-advisor @@ -44,7 +44,7 @@ BEGIN { { package Percona::Toolkit; -our $VERSION = '3.0.11-dev'; +our $VERSION = '3.0.12'; use strict; use warnings FATAL => 'all'; diff --git a/docs/rn.3-0-12.txt b/docs/rn.3-0-12.txt new file mode 100644 index 00000000..8cd918b8 --- /dev/null +++ b/docs/rn.3-0-12.txt @@ -0,0 +1,14 @@ +v3.0.11 released 2018-07-06 +=========================== + +Fixed bugs + +* :jirabug:`PT-1611`: ``pt-archiver`` fails with UTF-8 chars +* :jirabug:`PT-1603`: ``pt-table-sync`` is not considering unsorted enum fields in indexes for calculating chunk boundaries +* :jirabug:`PT-1574`: ``pt-online-schema-change`` fails on UK and NULLs +* :jirabug:`PT-1572`: Better usage of ENUM fields in keys in NibbleIterator +* :jirabug:`PT-1422`: ``pt-mysql-summary`` may get stuck when Time: NULL in processlist + +Documentation changes + +* :jirabug:`PT-1321`: Add required MySQL privileges to ``pt-online-schema-change`` documentation diff --git a/lib/Percona/Toolkit.pm b/lib/Percona/Toolkit.pm index fbe3c81c..9e4f053d 100644 --- a/lib/Percona/Toolkit.pm +++ b/lib/Percona/Toolkit.pm @@ -18,7 +18,7 @@ # ########################################################################### package Percona::Toolkit; -our $VERSION = '3.0.11-dev'; +our $VERSION = '3.0.12'; use strict; use warnings FATAL => 'all';