Hello community, here is the log from the commit of package postgresql94 for openSUSE:Factory checked in at 2019-09-05 12:30:22 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/postgresql94 (Old) and /work/SRC/openSUSE:Factory/.postgresql94.new.7948 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "postgresql94" Thu Sep 5 12:30:22 2019 rev:19 rq:723119 version:9.4.24 Changes: -------- --- /work/SRC/openSUSE:Factory/postgresql94/postgresql94.changes 2019-05-20 10:26:15.685958723 +0200 +++ /work/SRC/openSUSE:Factory/.postgresql94.new.7948/postgresql94.changes 2019-09-05 12:30:27.679618644 +0200 @@ -1,0 +2,20 @@ +Mon Aug 12 14:54:42 UTC 2019 - Reinhard Max <[email protected]> + +- Update to 9.4.24: + * https://www.postgresql.org/about/news/1960/ + * https://www.postgresql.org/docs/9.4/release-9-4-24.html + * CVE-2019-10208, bsc#1145092: TYPE in pg_temp executes arbitrary + SQL during SECURITY DEFINER execution. + +------------------------------------------------------------------- +Fri Aug 2 08:52:04 UTC 2019 - Martin Liška <[email protected]> + +- Use FAT LTO objects in order to provide proper static library. + +------------------------------------------------------------------- +Fri Jun 21 14:49:54 UTC 2019 - Marcus Rueckert <[email protected]> + +- Update to 9.4.23: + * https://www.postgresql.org/docs/9.4/release-9-4-23.html + +------------------------------------------------------------------- Old: ---- postgresql-9.4.22.tar.bz2 New: ---- postgresql-9.4.24.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ postgresql94.spec ++++++ --- /var/tmp/diff_new_pack.XEOoMU/_old 2019-09-05 12:30:29.363618314 +0200 +++ /var/tmp/diff_new_pack.XEOoMU/_new 2019-09-05 12:30:29.367618312 +0200 @@ -71,7 +71,7 @@ Summary: Basic Clients and Utilities for PostgreSQL License: PostgreSQL Group: Productivity/Databases/Tools -Version: 9.4.22 +Version: 9.4.24 Release: 0 %define pg_minor_version %(echo %version | sed -r 's/^([0-9]+\\.[0-9]+).*/\\1/') Source0: https://ftp.postgresql.org/pub/source/v%{version}/postgresql-%{version}.tar.bz2 @@ -326,13 +326,14 @@ %patch6 -p1 %patch7 -p1 %patch8 -p1 -%patch9 -p1 +%patch9 touch -r tmp configure rm tmp find src/test/ -name '*.orig' -delete find -name .gitignore -delete %build +%global _lto_cflags %{_lto_cflags} -ffat-lto-objects PACKAGE_TARNAME=%name %configure \ --bindir=%pgbindir \ --libdir=%pglibdir \ ++++++ postgresql-9.4.22.tar.bz2 -> postgresql-9.4.24.tar.bz2 ++++++ /work/SRC/openSUSE:Factory/postgresql94/postgresql-9.4.22.tar.bz2 /work/SRC/openSUSE:Factory/.postgresql94.new.7948/postgresql-9.4.24.tar.bz2 differ: char 11, line 1 ++++++ postgresql-var-run-socket.patch ++++++ --- /var/tmp/diff_new_pack.XEOoMU/_old 2019-09-05 12:30:29.439618299 +0200 +++ /var/tmp/diff_new_pack.XEOoMU/_new 2019-09-05 12:30:29.439618299 +0200 @@ -13,11 +13,9 @@ override it via postgresql.conf.) -Index: postgresql-9.3.5/contrib/pg_upgrade/test.sh -=================================================================== ---- postgresql-9.3.5.orig/contrib/pg_upgrade/test.sh 2014-07-25 12:48:53.890020586 +0200 -+++ postgresql-9.3.5/contrib/pg_upgrade/test.sh 2014-07-25 12:54:10.221108886 +0200 -@@ -138,6 +138,12 @@ +--- contrib/pg_upgrade/test.sh.orig ++++ contrib/pg_upgrade/test.sh +@@ -149,6 +149,12 @@ done EXTRA_REGRESS_OPTS="$EXTRA_REGRESS_OPTS --port=$PGPORT" export EXTRA_REGRESS_OPTS @@ -27,14 +25,12 @@ + +POSTMASTER_OPTS="$POSTMASTER_OPTS -c unix_socket_directories='$PGHOST'" + - # enable echo so the user can see what is being executed - set -x + standard_initdb "$oldbindir"/initdb + $oldbindir/pg_ctl start -l "$logdir/postmaster1.log" -o "$POSTMASTER_OPTS" -w -Index: postgresql-9.3.5/src/backend/utils/misc/guc.c -=================================================================== ---- postgresql-9.3.5.orig/src/backend/utils/misc/guc.c 2014-07-25 12:48:53.893020625 +0200 -+++ postgresql-9.3.5/src/backend/utils/misc/guc.c 2014-07-25 12:54:10.223108912 +0200 -@@ -2971,7 +2971,7 @@ +--- src/backend/utils/misc/guc.c.orig ++++ src/backend/utils/misc/guc.c +@@ -3066,7 +3066,7 @@ static struct config_string ConfigureNam }, &Unix_socket_directories, #ifdef HAVE_UNIX_SOCKETS @@ -43,11 +39,9 @@ #else "", #endif -Index: postgresql-9.3.5/src/bin/initdb/initdb.c -=================================================================== ---- postgresql-9.3.5.orig/src/bin/initdb/initdb.c 2014-07-25 12:48:53.894020638 +0200 -+++ postgresql-9.3.5/src/bin/initdb/initdb.c 2014-07-25 12:54:10.223108912 +0200 -@@ -1204,7 +1204,7 @@ +--- src/bin/initdb/initdb.c.orig ++++ src/bin/initdb/initdb.c +@@ -1226,7 +1226,7 @@ setup_config(void) #ifdef HAVE_UNIX_SOCKETS snprintf(repltok, sizeof(repltok), "#unix_socket_directories = '%s'", @@ -56,11 +50,9 @@ #else snprintf(repltok, sizeof(repltok), "#unix_socket_directories = ''"); #endif -Index: postgresql-9.3.5/src/include/pg_config_manual.h -=================================================================== ---- postgresql-9.3.5.orig/src/include/pg_config_manual.h 2014-07-25 12:48:53.894020638 +0200 -+++ postgresql-9.3.5/src/include/pg_config_manual.h 2014-07-25 12:54:10.224108925 +0200 -@@ -144,7 +144,7 @@ +--- src/include/pg_config_manual.h.orig ++++ src/include/pg_config_manual.h +@@ -152,7 +152,7 @@ * here's where to twiddle it. You can also override this at runtime * with the postmaster's -k switch. */
