From 5a4cd07b45e9f5c0d089147540d01d68b33e5829 Mon Sep 17 00:00:00 2001 From: Isaac Bennetch Date: Thu, 10 Feb 2022 23:09:52 -0500 Subject: [PATCH] Prepare for version 5.1.3 Signed-off-by: Isaac Bennetch --- ChangeLog | 3 ++- README | 2 +- doc/conf.py | 2 +- libraries/classes/Version.php | 6 +++--- package.json | 2 +- 5 files changed, 8 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index f6c39a3805..f28ce8bdd4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,7 @@ phpMyAdmin - ChangeLog ====================== -5.1.3 (not yet released) +5.1.3 (2022-02-10) - issue #17308 Fix broken pagination links in the navigation sidebar - issue #17331 Fix MariaDB has no support for system variable "disabled_storage_engines" - issue #17315 Fix unsupported operand types in Results.php when running "SHOW PROCESSLIST" SQL query @@ -11,6 +11,7 @@ phpMyAdmin - ChangeLog - issue #17298 Fixed import of email-adresses or links from ODS results in empty contents - issue #17344 Fixed a type error on ODS import with non string values - issue #17239 Fixed header row show/hide columns buttons on each line after hover are shown on each row +- issue [security] Fix for path disclosure under certain server configurations (if display_errors is on, for instance) 5.1.2 (2022-01-20) - issue Replaced MySQL documentation redirected links diff --git a/README b/README index 0521ed122e..540ef2a22e 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ phpMyAdmin - Readme =================== -Version 5.1.3-dev +Version 5.1.3 A web interface for MySQL and MariaDB. diff --git a/doc/conf.py b/doc/conf.py index 66da5da01d..d4a6768f40 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -51,7 +51,7 @@ copyright = u'2012 - 2021, The phpMyAdmin devel team' # built documents. # # The short X.Y version. -version = '5.1.3-dev' +version = '5.1.3' # The full version, including alpha/beta/rc tags. release = version diff --git a/libraries/classes/Version.php b/libraries/classes/Version.php index 7190fd6935..9968d73d57 100644 --- a/libraries/classes/Version.php +++ b/libraries/classes/Version.php @@ -12,12 +12,12 @@ namespace PhpMyAdmin; final class Version { // The VERSION_SUFFIX constant is defined at libraries/vendor_config.php - public const VERSION = '5.1.3-dev' . VERSION_SUFFIX; + public const VERSION = '5.1.3' . VERSION_SUFFIX; public const SERIES = '5.1'; public const MAJOR = 5; public const MINOR = 1; public const PATCH = 3; public const ID = 50103; - public const PRE_RELEASE_NAME = 'dev'; - public const IS_DEV = true; + public const PRE_RELEASE_NAME = ''; + public const IS_DEV = false; } diff --git a/package.json b/package.json index 12195f05aa..88d7cfb892 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "phpmyadmin", - "version": "5.1.3-dev", + "version": "5.1.3", "description": "A web interface for MySQL and MariaDB", "repository": "https://github.com/phpmyadmin/phpmyadmin.git", "author": "The phpMyAdmin Team (https://www.phpmyadmin.net/team/)",