Hello community, here is the log from the commit of package phpPgAdmin for openSUSE:Factory checked in at 2020-06-23 21:05:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/phpPgAdmin (Old) and /work/SRC/openSUSE:Factory/.phpPgAdmin.new.2956 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "phpPgAdmin" Tue Jun 23 21:05:08 2020 rev:25 rq:816161 version:7.12.1 Changes: -------- --- /work/SRC/openSUSE:Factory/phpPgAdmin/phpPgAdmin.changes 2019-02-01 11:44:12.352628875 +0100 +++ /work/SRC/openSUSE:Factory/.phpPgAdmin.new.2956/phpPgAdmin.changes 2020-06-23 21:05:35.778036422 +0200 @@ -2 +2,33 @@ -Sat Jan 19 13:08:04 UTC 2019 - Christian Wittmer <[email protected]> +Mon Mar 2 20:01:15 UTC 2020 - [email protected] + +- Version 7.12.1 (December 10, 2019) + Features: + * Add support for granting USAGE on sequences + * Update French translation + Bugs: + * Fix issues with OID removal in Postgres 12+ + * Remove broken tree branch from table/view browse option + * Properly escape identifiers when browsing tables/views/schemas + * Fix truncation of long multibyte strings + * Clean up a number of misspellings and typos from codespell report + Incompatabilities: + * Require mbstring module support in PHP +- Version 7.12.0 (September 28, 2019) + Features + * Add Support for PHP 7.x + * Add Support for Postgres 12 + * Update Bootstrap to version 3.3.7 (wisekeep) + Bugs + * Fix several issues with CSS files (wisekeep) + * Clean up file permissions (nirgal) + * Fixed Reflected XSS vulnerability (om3rcitak) + * Fixes with sequence visbility and permission handling. + Incompatabilities: + * We no longer support php5 (>= 7.1) + * Change in version numbering system +- rebase patch + * rename phpPgAdmin-4.2.3-config.inc.patch to phpPgAdmin-config.inc.patch +- fix changes file + +------------------------------------------------------------------- +Sat Jan 19 13:08:04 UTC 2019 - [email protected] Old: ---- phpPgAdmin-4.2.3-config.inc.patch phpPgAdmin-5.6.0.tar.bz2 New: ---- phpPgAdmin-7.12.1.tar.bz2 phpPgAdmin-config.inc.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ phpPgAdmin.spec ++++++ --- /var/tmp/diff_new_pack.hDgp0H/_old 2020-06-23 21:05:36.814039769 +0200 +++ /var/tmp/diff_new_pack.hDgp0H/_new 2020-06-23 21:05:36.814039769 +0200 @@ -1,7 +1,7 @@ # # spec file for package phpPgAdmin # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -28,16 +28,19 @@ Summary: Administration of PostgreSQL over the web License: GPL-2.0-or-later Group: Productivity/Databases/Tools -Version: 5.6.0 +Version: 7.12.1 Release: 0 -Url: http://phppgadmin.sourceforge.net -Source0: https://github.com/%{lc_name}/%{lc_name}/releases/download/REL_5-6-0/%{name}-%{version}.tar.bz2 +#define rel_version %(/usr/bin/sed -e "s/\./-/g" <<<%{version}) +%define rel_version REL_7-12-1 +URL: http://phppgadmin.sourceforge.net +Source0: https://github.com/%{lc_name}/%{lc_name}/releases/download/%{rel_version}/%{name}-%{version}.tar.bz2 Source1: %{name}.http -Patch0: %{name}-4.2.3-config.inc.patch +Patch0: %{name}-config.inc.patch BuildArch: noarch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: apache2-devel Requires: mod_php_any +Requires: php >= 7.1 Requires: php-pgsql %description @@ -47,7 +50,7 @@ Features * Administer multiple servers -* Support for PostgreSQL 8.4.x, 9.x.x, 10.x, 11.x +* Support for PostgreSQL 9.x.x, 10.x, 11.x, 12.x * Manage all aspects of: o Users & groups o Databases @@ -66,11 +69,11 @@ * Excellent language support: o Available in 27 languages o No encoding conflicts. Edit Russian data using a Japanese interface! -* Easy to install and configur +* Easy to install and configure %prep %setup -q -%patch0 -p1 +%patch0 %build ++++++ phpPgAdmin-5.6.0.tar.bz2 -> phpPgAdmin-7.12.1.tar.bz2 ++++++ ++++ 53944 lines of diff (skipped) ++++++ phpPgAdmin-config.inc.patch ++++++ Index: libraries/lib.inc.php =================================================================== --- libraries/lib.inc.php.orig +++ libraries/lib.inc.php @@ -27,12 +27,12 @@ exit(sprintf('Version of PHP not supported. Please upgrade to version %s or later.', $phpMinVer)); // Check to see if the configuration file exists, if not, explain - if (file_exists('conf/config.inc.php')) { + if (file_exists('/etc/phpPgAdmin/config.inc.php')) { $conf = array(); - include('./conf/config.inc.php'); + include('/etc/phpPgAdmin/config.inc.php'); } else { - echo 'Configuration error: Copy conf/config.inc.php-dist to conf/config.inc.php and edit appropriately.'; + echo 'Configuration error: Can not include config /etc/phpPgAdmin/config.inc.php.'; exit; }
