PT-2291 Release notes for Percona Toolkit version 3.5.6

modified:   Changelog
	modified:   Makefile.PL
	modified:   config/sphinx-build/conf.py
	modified:   docs/release_notes.rst
This commit is contained in:
Alina Derkach
2023-11-29 17:18:59 +02:00
parent fe12a19e04
commit a49d87d12f
4 changed files with 32 additions and 3 deletions

View File

@@ -1,5 +1,16 @@
Changelog for Percona Toolkit
v3.5.6 released 2023-12-
* Improvement PT-1860: pt-osc case sensitivity issue (Thanks to ikruglov implementing this improvement)
* Fixed bug PT-2083: Pt-archiver --charset option is not working for MySQL8.0 (Thanks to Yijian Zhang for reporting this issue)
* Fixed bug PT-2109: pt-mysql-summary throws an error when using sql_mode="ANSI_QUOTES"
* Fixed bug PT-2207: pt-archiver doesn't work when ANSI_QUOTES is set in sql_mode
* Fixed bug PT-2268: pt-online-schema-change 3.5.5 breaks on mysql5.7 with server_id 0 (Thanks to Hristo Mitev for reorting this issue)
* Fixed bug PT-2279: Option --charset is confusing when set to utf8mb4
* Fixed bug PT-2281: provide container name for copying files in the dump
* Fixed bug PT-2286: CVE reported in Percona Toolkit version 3.5.5 related to GO (Thanks to Kushal Haldar for reorting this issue)
v3.5.5 released 2023-10-03
* Feature PR-645: Add after nibble hook to pt-online-schema-change (Thanks to Marcelo HP Ferreira for the contribution)

View File

@@ -11,7 +11,7 @@ MAKE_GOTOOLS
WriteMakefile(
NAME => 'Percona::Toolkit',
VERSION => '3.5.5',
VERSION => '3.5.6',
EXE_FILES => [
map {
(my $name = $_) =~ s/^bin.//;

View File

@@ -50,7 +50,7 @@ copyright = u'2023, Percona LLC and/or its affiliates'
# The short X.Y version.
version = '3.5'
# The full version, including alpha/beta/rc tags.
release = '3.5.5'
release = '3.5.6'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@@ -1,6 +1,24 @@
Percona Toolkit
***************
v3.5.6 released 2023-12-
==============================
Improvements
------------------------------------------------------------
* :jirabug:`PT-1860`: pt-osc case sensitivity issue (Thanks to ikruglov implementing this improvement)
Bugs Fixed
------------
* :jirabug:`PT-2083`: Pt-archiver --charset option is not working for MySQL8.0 (Thanks to Yijian Zhang for reporting this issue)
* :jirabug:`PT-2109`: pt-mysql-summary throws an error when using sql_mode="ANSI_QUOTES"
* :jirabug:`PT-2207`: pt-archiver doesn't work when ANSI_QUOTES is set in sql_mode
* :jirabug:`PT-2268`: pt-online-schema-change 3.5.5 breaks on mysql5.7 with server_id 0 (Thanks to Hristo Mitev for reorting this issue)
* :jirabug:`PT-2279`: Option --charset is confusing when set to utf8mb4
* :jirabug:`PT-2281`: provide container name for copying files in the dump
* :jirabug:`PT-2286`: CVE reported in Percona Toolkit version 3.5.5 related to GO (Thanks to Kushal Haldar for reorting this issue)
v3.5.5 released 2023-10-03
==============================
@@ -9,7 +27,7 @@ New Features
------------------------------------------------------------
* :jirabug:`PT-2168`: PT-OSC shouldn't fail while unable to monitor a replica node
* `PR-645`: Add after nibble hook to pt-online-schema-change (Thanks to Marcelo HP Ferreira for the implementing this feature)
* `PR-645`: Add after nibble hook to pt-online-schema-change (Thanks to Marcelo HP Ferreira for implementing this feature)
* :jirabug:`PT-2258`: Pass tbl as argument for on_copy_rows_after_nibble
Improvements