PT-2255 Release notes for Percona Toolkit version 3.5.5

modified:   Makefile.PL
	modified:   config/sphinx-build/conf.py
	modified:   docs/release_notes.rst
This commit is contained in:
Alina Derkach
2023-09-18 00:38:02 +03:00
parent 275af2a886
commit 11a9f4414e
5 changed files with 27 additions and 5 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Percona::Toolkit',
VERSION => '3.5.4',
VERSION => '3.5.5',
EXE_FILES => [ <bin/*> ],
MAN1PODS => {
'docs/percona-toolkit.pod' => 'blib/man1/percona-toolkit.1p',
+1 -1
View File
@@ -15,7 +15,7 @@ Usage: $0 [OPTIONS]
--build_rpm If it is set - rpm will be built
--build_deb If it is set - deb will be built
--build_tarball If it is set - tarball will be built
--install_deps Install build dependencies(root privilages are required)
--install_deps Install build dependencies(root privileges are required)
--branch Branch for build
--repo Repo for build
--help) usage ;;
+1 -1
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.4'
release = '3.5.5'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
+22
View File
@@ -1,6 +1,28 @@
Percona Toolkit
***************
v3.5.5 released 2023-10-02
==============================
New Features
------------------------------------------------------------
* :jirabug:`PT-2168`: PT-OSC shouldn't fail while unable to monitor a replica node
Improvements
------------------------------------------------------------
* :jirabug:`PT-2156`: Fix tests for lib
Bugs Fixed
------------
* :jirabug:`PT-2235`: pt-mongodb-index-check does not support option --version
* :jirabug:`PT-2236`: pt-secure-collect, pt-pg-summary do not follow PT standard for option --version
* :jirabug:`PT-2241`: using --skip-check-slave-lag multiple times does not work as expected (Thanks to PinoCao for reporting and fixing this issue)
* :jirabug:`PT-2246`: CVE reported in Percona Toolkit version 3.5.4 related to GO (Thanks to Kushal Haldar for reporting this issue)
* :jirabug:`PT-2248`: pt-k8s-debug-collector does not run pg_gather with K8SPG 2
v3.5.4 released 2023-06-30
==============================
+2 -2
View File
@@ -107,8 +107,8 @@ func TestIndividualFiles(t *testing.T) {
if err != nil {
t.Errorf("test %s, error running command %s:\n%s\n\nCommand output:\n%s", test.name, test.cmd[0], err.Error(), out)
}
if test.preprocesor(bytes.NewBuffer(out).String()) != strings.Join(test.want, "\n") {
t.Errorf("test %s, output is not as expected\nOutput: %s\nWanted: %s", test.name, test.preprocesor(bytes.NewBuffer(out).String()), test.want)
if test.preprocessor(bytes.NewBuffer(out).String()) != strings.Join(test.want, "\n") {
t.Errorf("test %s, output is not as expected\nOutput: %s\nWanted: %s", test.name, test.preprocessor(bytes.NewBuffer(out).String()), test.want)
}
}
}