Change log for postgresql-10 package in Ubuntu
1 → 41 of 41 results | First • Previous • Next • Last |
postgresql-10 (10.23-0ubuntu0.18.04.2) bionic-security; urgency=medium * SECURITY UPDATE: CREATE SCHEMA ... schema_element defeats protective search_path changes - debian/patches/CVE-2023-2454-1.patch: replace last PushOverrideSearchPath() call with set_config_option() in src/backend/catalog/namespace.c, src/backend/commands/schemacmds.c, src/test/regress/expected/namespace.out, src/test/regress/sql/namespace.sql. - debian/patches/CVE-2023-2454-2.patch: adjust sepgsql expected output for 681d9e462 et al in contrib/sepgsql/expected/ddl.out. - CVE-2023-2454 * SECURITY UPDATE: Row security policies disregard user ID changes after inlining - debian/patches/CVE-2023-2455.patch: handle RLS dependencies in inlined set-returning functions properly in src/backend/optimizer/util/clauses.c, src/test/regress/expected/rowsecurity.out, src/test/regress/sql/rowsecurity.sql. - CVE-2023-2455 -- Marc Deslauriers <email address hidden> Tue, 23 May 2023 11:07:52 -0400
Available diffs
postgresql-10 (10.23-0ubuntu0.18.04.1) bionic; urgency=medium * New upstream version (LP: #1996770). + A dump/restore is not required for those running 10.X. + Also, if you are upgrading from a version earlier than 10.19, see those release notes as well please. + Disallow rules named _RETURN that are not ON SELECT rules (Tom Lane). + Fix use-after-free hazard in string comparisons. (Tom Lane) + Details about these and many further changes can be found at: https://www.postgresql.org/docs/10/release-10-23.html -- Sergio Durigan Junior <email address hidden> Thu, 17 Nov 2022 16:39:57 -0500
postgresql-10 (10.22-0ubuntu0.18.04.1) bionic-security; urgency=medium * New upstream version (LP: #1984012). + A dump/restore is not required for those running 10.X. + Also, if you are upgrading from a version earlier than 10.19, see those release notes as well please. + Do not let extension scripts replace objects not already belonging to the extension (Tom Lane). (CVE-2022-2625) + Fix permissions checks in CREATE INDEX (Nathan Bossart, Noah Misch). + Details about these and many further changes can be found at: https://www.postgresql.org/docs/10/release-10-22.html -- Athos Ribeiro <email address hidden> Thu, 11 Aug 2022 16:54:48 -0300
Available diffs
postgresql-10 (10.21-0ubuntu0.18.04.1) bionic-security; urgency=medium * New upstream version (LP: #1973627). + A dump/restore is not required for those running 10.X. + However, if you are upgrading from a version earlier than 10.19, see those release notes as well please. + Confine additional operations within "security restricted operation" sandboxes (Sergey Shinderuk, Noah Misch). Autovacuum, CLUSTER, CREATE INDEX, REINDEX, REFRESH MATERIALIZED VIEW, and pg_amcheck activated the "security restricted operation" protection mechanism too late, or even not at all in some code paths. A user having permission to create non-temporary objects within a database could define an object that would execute arbitrary SQL code with superuser permissions the next time that autovacuum processed the object, or that some superuser ran one of the affected commands against it. The PostgreSQL Project thanks Alexander Lakhin for reporting this problem. (CVE-2022-1552) + Details about these and many further changes can be found at: https://www.postgresql.org/docs/10/release-10-21.html -- Sergio Durigan Junior <email address hidden> Tue, 17 May 2022 21:58:23 -0400
postgresql-10 (10.20-0ubuntu0.18.04.1) bionic; urgency=medium * New upstream version (LP: #1961127). + A dump/restore is not required for those running 10.X. + However, if you are upgrading from a version earlier than 10.19, see those release notes as well please. + The PostgreSQL community will stop releasing updates for the 10.X release series in November 2022. After this date, there will be no further minor release updates, but Ubuntu will continue to backport important fixes as needed. + Details about these and many further changes can be found at: https://www.postgresql.org/docs/10/release-10-20.html -- Athos Ribeiro <email address hidden> Mon, 14 Feb 2022 10:28:53 -0300
postgresql-10 (10.19-0ubuntu0.18.04.1) bionic-security; urgency=medium * New upstream version (LP: #1950268). + Make the server reject extraneous data after an SSL or GSS encryption handshake CVE-2021-23214 + Make libpq reject extraneous data after an SSL or GSS encryption handshake CVE-2021-23222 + A dump/restore is not required for those running 10.X. + However, note that installations using physical replication should update standby servers before the primary server, details in the release notes linked below. + Also, several bugs have been found that may have resulted in corrupted indexes, explained in detail in the release notes linked below. If any of those cases apply to you, it's recommended to reindex possibly-affected indexes after updating. + Also, if you are upgrading from a version earlier than 10.16, see those release notes as well please. + Details about these and many further changes can be found at: https://www.postgresql.org/docs/10/release-10-19.html -- Christian Ehrhardt <email address hidden> Tue, 09 Nov 2021 09:39:50 +0100
Available diffs
postgresql-10 (10.18-0ubuntu0.18.04.1) bionic-security; urgency=medium * New upstream version (LP: #1939396). + Disallow SSL renegotiation more completely (Michael Paquier) SSL renegotiation has been disabled for some time, but the server would still cooperate with a client-initiated renegotiation request. A maliciously crafted renegotiation request could result in a server crash (see OpenSSL issue CVE-2021-3449). Disable the feature altogether on OpenSSL versions that permit doing so, which are 1.1.0h and newer. (CVE-2021-3449) + Details about these and many further changes can be found at: https://www.postgresql.org/docs/10/release-10-18.html + d/p/reproducible-bki: refreshed for 10.18 -- Christian Ehrhardt <email address hidden> Tue, 10 Aug 2021 14:18:35 +0200
postgresql-10 (10.17-0ubuntu0.18.04.1) bionic-security; urgency=medium * New upstream version (LP: #1928773). + Prevent integer overflows in array subscripting calculations (Tom Lane) The array code previously did not complain about cases where an array's lower bound plus length overflows an integer. This resulted in later entries in the array becoming inaccessible (since their subscripts could not be written as integers), but more importantly it confused subsequent assignment operations. This could lead to memory overwrites, with ensuing crashes or unwanted data modifications. (CVE-2021-32027) + Fix mishandling of junk columns in INSERT ... ON CONFLICT ... UPDATE target lists (Tom Lane) If the UPDATE list contains any multi-column sub-selects (which give rise to junk columns in addition to the results proper), the UPDATE path would end up storing tuples that include the values of the extra junk columns. That's fairly harmless in the short run, but if new columns are added to the table then the values would become accessible, possibly leading to malfunctions if they don't match the datatypes of the added columns. In addition, in versions supporting cross-partition updates, a cross-partition update triggered by such a case had the reverse problem: the junk columns were removed from the target list, typically causing an immediate crash due to malfunction of the multi-column sub-select mechanism. (CVE-2021-32028) + Details about these and many further changes can be found at: https://www.postgresql.org/docs/10/release-10-17.html -- Christian Ehrhardt <email address hidden> Tue, 18 May 2021 12:17:37 +0200
Available diffs
postgresql-10 (10.16-0ubuntu0.18.04.1) bionic; urgency=medium * New upstream version (LP: #1915254) + Fix CREATE INDEX CONCURRENTLY to wait for concurrent prepared transactions (Andrey Borodin) At the point where CREATE INDEX CONCURRENTLY waits for all concurrent transactions to complete so that it can see rows they inserted, it must also wait for all prepared transactions to complete, for the same reason. Its failure to do so meant that rows inserted by prepared transactions might be omitted from the new index, causing queries relying on the index to miss such rows. In installations that have enabled prepared transactions (max_prepared_transactions > 0), it's recommended to reindex any concurrently-built indexes in case this problem occurred when they were built. + Details about this and many further changes can be found at: https://www.postgresql.org/docs/10/static/release-10-16.html -- Christian Ehrhardt <email address hidden> Wed, 10 Feb 2021 11:47:35 +0100
Available diffs
postgresql-10 (10.15-0ubuntu0.18.04.1) bionic-security; urgency=medium * New upstream version. + Block DECLARE CURSOR ... WITH HOLD and firing of deferred triggers within index expressions and materialized view queries (Noah Misch) This is essentially a leak in the security restricted operation sandbox mechanism. An attacker having permission to create non-temporary SQL objects could parlay this leak to execute arbitrary SQL code as a superuser. The PostgreSQL Project thanks Etienne Stalmans for reporting this problem. (CVE-2020-25695) + Fix usage of complex connection-string parameters in pg_dump, pg_restore, clusterdb, reindexdb, and vacuumdb (Tom Lane) The -d parameter of pg_dump and pg_restore, or the --maintenance-db parameter of the other programs mentioned, can be a connection string containing multiple connection parameters rather than just a database name. In cases where these programs need to initiate additional connections, such as parallel processing or processing of multiple databases, the connection string was forgotten and just the basic connection parameters (database name, host, port, and username) were used for the additional connections. This could lead to connection failures if the connection string included any other essential information, such as non-default SSL or GSS parameters. Worse, the connection might succeed but not be encrypted as intended, or be vulnerable to man-in-the-middle attacks that the intended connection parameters would have prevented. (CVE-2020-25694) + When psql's \connect command re-uses connection parameters, ensure that all non-overridden parameters from a previous connection string are re-used (Tom Lane) This avoids cases where reconnection might fail due to omission of relevant parameters, such as non-default SSL or GSS options. Worse, the reconnection might succeed but not be encrypted as intended, or be vulnerable to man-in-the-middle attacks that the intended connection parameters would have prevented. This is largely the same problem as just cited for pg_dump et al, although psql's behavior is more complex since the user may intentionally override some connection parameters. (CVE-2020-25694) + Prevent psql's \gset command from modifying specially-treated variables (Noah Misch) \gset without a prefix would overwrite whatever variables the server told it to. Thus, a compromised server could set specially-treated variables such as PROMPT1, giving the ability to execute arbitrary shell code in the user's session. The PostgreSQL Project thanks Nick Cleaton for reporting this problem. (CVE-2020-25696) + Details about these and many further changes can be found at: https://www.postgresql.org/docs/10/static/release-10-15.html -- Christian Ehrhardt <email address hidden> Thu, 12 Nov 2020 12:13:22 +0100
Available diffs
postgresql-10 (10.14-0ubuntu0.18.04.1) bionic-security; urgency=medium * New upstream release (LP: #1892335). - Set a secure search_path in logical replication walsenders and apply workers (Noah Misch) A malicious user of either the publisher or subscriber database could potentially cause execution of arbitrary SQL code by the role running replication, which is often a superuser. Some of the risks here are equivalent to those described in CVE-2018-1058, and are mitigated in this patch by ensuring that the replication sender and receiver execute with empty search_path settings. (As with CVE-2018-1058, that change might cause problems for under-qualified names used in replicated tables' DDL.) Other risks are inherent in replicating objects that belong to untrusted roles; the most we can do is document that there is a hazard to consider. CVE-2020-14349 - Make contrib modules' installation scripts more secure (Tom Lane) Attacks similar to those described in CVE-2018-1058 could be carried out against an extension installation script, if the attacker can create objects in either the extension's target schema or the schema of some prerequisite extension. Since extensions often require superuser privilege to install, this can open a path to obtaining superuser privilege. To mitigate this risk, be more careful about the search_path used to run an installation script; disable check_function_bodies within the script; and fix catalog-adjustment queries used in some contrib modules to ensure they are secure. Also provide documentation to help third-party extension authors make their installation scripts secure. This is not a complete solution; extensions that depend on other extensions can still be at risk if installed carelessly. CVE-2020-14350 - Details about these and many further changes can be found at: https://www.postgresql.org/docs/10/static/release-10-13.html https://www.postgresql.org/docs/10/static/release-10-14.html -- Christian Ehrhardt <email address hidden> Thu, 20 Aug 2020 11:29:28 +0200
Available diffs
postgresql-10 (10.12-0ubuntu0.18.04.1) bionic-security; urgency=medium * New upstream release (LP: #1863108) - A dump/restore is not required however, if you use the contrib/intarray extension with a GiST index, and you rely on indexed searches for the <@ operator, see the release notes for details in regard to a related fix. - Add missing permissions checks for ALTER ... DEPENDS ON EXTENSION. Marking an object as dependent on an extension did not have any privilege check whatsoever. This oversight allowed any user to mark routines, triggers, materialized views, or indexes as droppable by anyone able to drop an extension. Require that the calling user own the specified object (and hence have privilege to drop it). (CVE-2020-1720) - Details about these and many further changes can be found at: https://www.postgresql.org/docs/10/static/release-10-11.html https://www.postgresql.org/docs/10/static/release-10-12.html -- Christian Ehrhardt <email address hidden> Thu, 13 Feb 2020 15:18:22 +0100
Available diffs
postgresql-10 (10.10-0ubuntu0.18.04.1) bionic-security; urgency=medium * SECURITY UPDATE: New upstream release (LP: #1839058) - Require schema qualification to cast to a temporary type when using functional cast syntax (CVE-2019-10208) - Fix failure of ALTER TABLE ... ALTER COLUMN TYPE when altering multiple columns' types in one command. This fixes a regression introduced in the most recent minor releases - Details about these and many further changes can be found at: https://www.postgresql.org/docs/10/static/release-10-10.html -- Christian Ehrhardt <email address hidden> Tue, 06 Aug 2019 08:55:10 +0200
Available diffs
postgresql-10 (10.9-0ubuntu0.18.04.1) bionic-security; urgency=medium * New upstream release (LP: #1828012) - Fix buffer-overflow hazards in SCRAM verifier parsing and libpq CVE-2019-10164 - Fix failure of ALTER TABLE ... ALTER COLUMN TYPE when the table has a partial exclusion constraint - Fix failure of COMMENT command for comments on domain constraints - Prevent possible memory clobber when there are duplicate columns in a hash aggregate's hash key list - Details about these and many further changes can be found at: https://www.postgresql.org/docs/10/static/release-10-9.html -- Christian Ehrhardt <email address hidden> Tue, 18 Jun 2019 13:11:36 +0200
Available diffs
postgresql-10 (10.9-0ubuntu0.18.10.1) cosmic-security; urgency=medium * New upstream release (LP: #1828012) - Fix buffer-overflow hazards in SCRAM verifier parsing and libpq CVE-2019-10164 - Fix failure of ALTER TABLE ... ALTER COLUMN TYPE when the table has a partial exclusion constraint - Fix failure of COMMENT command for comments on domain constraints - Prevent possible memory clobber when there are duplicate columns in a hash aggregate's hash key list - Details about these and many further changes can be found at: https://www.postgresql.org/docs/10/static/release-10-9.html -- Christian Ehrhardt <email address hidden> Tue, 18 Jun 2019 13:11:36 +0200
Available diffs
postgresql-10 (10.8-0ubuntu0.18.04.1) bionic-security; urgency=medium * New upstream release(s) (LP: #1828012) - Prevent row-level security policies from being bypassed via selectivity estimators. CVE-2019-10130 - Details about these and many further changes can be found at: https://www.postgresql.org/docs/10/static/release-10-8.html -- Christian Ehrhardt <email address hidden> Tue, 07 May 2019 11:20:35 +0200
Available diffs
postgresql-10 (10.8-0ubuntu0.18.10.1) cosmic-security; urgency=medium * New upstream release(s) (LP: #1828012) - Prevent row-level security policies from being bypassed via selectivity estimators. CVE-2019-10130 - Details about these and many further changes can be found at: https://www.postgresql.org/docs/10/static/release-10-8.html -- Christian Ehrhardt <email address hidden> Tue, 07 May 2019 11:20:35 +0200
Available diffs
postgresql-10 (10.7-0ubuntu0.18.04.1) bionic; urgency=medium * New upstream release (LP: #1815665) - By default, panic instead of retrying after fsync() failure, to avoid possible data corruption. A new server parameter "guc-data-sync-retry" has been added to control this; - d/p/pg-10-Disallow-setting-client_min_messages-higher-than-ERR.patch: to retain SRU stability this patch reverts one of the changes which disabled the error suppression by setting client_min_messages to fatal or panic. Overall that means no change to the handling of client_min_messages due to this upload. - d/p/pg-10-Rename-rbtree.c-functions-to-use-rbt-prefix-not-rb-p.patch: this change of 10.7 would break an external ABI/API exposed to extensions. To avoid breaking those (especially those not in the Ubuntu Archive that we can't control) this change of upstreams stable release is reverted. Thereby the ABI/API is unchanged in regard to the rb_ function prefix by this new package upload to Ubuntu. - Details about these and many further changes can be found at: https://www.postgresql.org/docs/10/static/release-10-7.html -- Christian Ehrhardt <email address hidden> Tue, 12 Feb 2019 21:25:34 +0100
postgresql-10 (10.7-0ubuntu0.18.10.1) cosmic; urgency=medium * New upstream release (LP: #1815665) - By default, panic instead of retrying after fsync() failure, to avoid possible data corruption. A new server parameter "guc-data-sync-retry" has been added to control this; - d/p/pg-10-Disallow-setting-client_min_messages-higher-than-ERR.patch: to retain SRU stability this patch reverts one of the changes which disabled the error suppression by setting client_min_messages to fatal or panic. Overall that means no change to the handling of client_min_messages due to this upload. - d/p/pg-10-Rename-rbtree.c-functions-to-use-rbt-prefix-not-rb-p.patch: this change of 10.7 would break an external ABI/API exposed to extensions. To avoid breaking those (especially those not in the Ubuntu Archive that we can't control) this change of upstreams stable release is reverted. Thereby the ABI/API is unchanged in regard to the rb_ function prefix by this new package upload to Ubuntu. - Details about these and many further changes can be found at: https://www.postgresql.org/docs/10/static/release-10-7.html -- Christian Ehrhardt <email address hidden> Tue, 12 Feb 2019 21:25:34 +0100
Deleted in disco-release (Reason: (From Debian) ROM; superseded by postgresql-11; Debian bu...) |
Deleted in disco-proposed (Reason: moved to release) |
postgresql-10 (10.5-1ubuntu3) disco; urgency=medium * Drop mangling of files in debian/libpq-dev that isn't built. * Build-depend on libpq-dev and libecpg-dev to find symbols. -- Adam Conrad <email address hidden> Wed, 14 Nov 2018 14:22:31 -0700
Available diffs
- diff from 10.5-1build2 to 10.5-1ubuntu3 (2.5 KiB)
- diff from 10.5-1ubuntu2 to 10.5-1ubuntu3 (1.2 KiB)
Superseded in disco-proposed |
postgresql-10 (10.5-1ubuntu2) disco; urgency=medium * Drop --fail-missing from dh_install calls due to previous upload. -- Adam Conrad <email address hidden> Wed, 14 Nov 2018 13:07:54 -0700
Available diffs
- diff from 10.5-1ubuntu1 to 10.5-1ubuntu2 (639 bytes)
Superseded in disco-proposed |
postgresql-10 (10.5-1ubuntu1) disco; urgency=medium * Don't build the libraries to smooth ICU and psql transitions. -- Adam Conrad <email address hidden> Wed, 14 Nov 2018 12:33:07 -0700
Available diffs
- diff from 10.5-1build3 to 10.5-1ubuntu1 (1.3 KiB)
postgresql-10 (10.6-0ubuntu0.18.04.1) bionic-security; urgency=medium * SECURITY UPDATE: Updated to 10.6 to fix security issue. - Details about the new release can be found at https://www.postgresql.org/docs/10/release-10-6.html - CVE-2018-16850 -- Marc Deslauriers <email address hidden> Tue, 13 Nov 2018 15:18:23 -0500
Available diffs
postgresql-10 (10.6-0ubuntu0.18.10.1) cosmic-security; urgency=medium * SECURITY UPDATE: Updated to 10.6 to fix security issue. - Details about the new release can be found at https://www.postgresql.org/docs/10/release-10-6.html - CVE-2018-16850 -- Marc Deslauriers <email address hidden> Tue, 13 Nov 2018 14:20:49 -0500
Available diffs
Superseded in disco-proposed |
postgresql-10 (10.5-1build3) disco; urgency=medium * No-change rebuild for icu soname changes. -- Matthias Klose <email address hidden> Tue, 13 Nov 2018 08:17:13 +0000
Available diffs
- diff from 10.5-1build2 to 10.5-1build3 (315 bytes)
postgresql-10 (10.5-1build2) disco; urgency=medium * No-change rebuild for the perl 5.28 transition. -- Adam Conrad <email address hidden> Fri, 02 Nov 2018 18:14:47 -0600
Available diffs
- diff from 10.5-1build1 to 10.5-1build2 (327 bytes)
postgresql-10 (10.5-1build1) disco; urgency=medium * No-change rebuild to build for python3.7 as the default. -- Matthias Klose <email address hidden> Wed, 31 Oct 2018 12:36:22 +0000
Available diffs
- diff from 10.5-1 (in Debian) to 10.5-1build1 (322 bytes)
postgresql-10 (10.5-0ubuntu0.18.04) bionic-security; urgency=medium * New upstream release (LP: #1786938) - Fix failure to reset libpq's state fully between connection attempts . An unprivileged user of dblink or postgres_fdw could bypass the checks intended to prevent use of server-side credentials, such as a ~/.pgpass file owned by the operating-system user running the server. Servers allowing peer authentication on local connections are particularly vulnerable. Other attacks such as SQL injection into a postgres_fdw session are also possible. Attacking postgres_fdw in this way requires the ability to create a foreign server object with selected connection parameters, but any user with access to dblink could exploit the problem. In general, an attacker with the ability to select the connection parameters for a libpq-using application could cause mischief, though other plausible attack scenarios are harder to think of. Our thanks to Andrew Krasichkov for reporting this issue. (CVE-2018-10915) - Fix INSERT ... ON CONFLICT UPDATE through a view that isn't just SELECT FROM ... . Erroneous expansion of an updatable view could lead to crashes or attribute ... has the wrong type errors, if the view's SELECT list doesn't match one-to-one with the underlying table's columns. Furthermore, this bug could be leveraged to allow updates of columns that an attacking user lacks UPDATE privilege for, if that user has INSERT and UPDATE privileges for some other column(s) of the table. Any user could also use it for disclosure of server memory. (CVE-2018-10925) - d/libecpg-dev.install: Add new pgtypes header. - d/libpgtypes3.symbols: Add new pgtypes symbol. - d/p/filter-debug-prefix-map: update to match 10.5 - update maintainers - Details about these and other changes can be found at https://www.postgresql.org/docs/10/static/release-10-5.html -- Christian Ehrhardt <email address hidden> Tue, 14 Aug 2018 14:49:18 +0200
Available diffs
Superseded in disco-release |
Obsolete in cosmic-release |
Deleted in cosmic-proposed (Reason: moved to release) |
postgresql-10 (10.5-1) unstable; urgency=medium * New upstream version. + Fix failure to reset libpq's state fully between connection attempts An unprivileged user of dblink or postgres_fdw could bypass the checks intended to prevent use of server-side credentials, such as a ~/.pgpass file owned by the operating-system user running the server. Servers allowing peer authentication on local connections are particularly vulnerable. Other attacks such as SQL injection into a postgres_fdw session are also possible. Attacking postgres_fdw in this way requires the ability to create a foreign server object with selected connection parameters, but any user with access to dblink could exploit the problem. In general, an attacker with the ability to select the connection parameters for a libpq-using application could cause mischief, though other plausible attack scenarios are harder to think of. Our thanks to Andrew Krasichkov for reporting this issue. (CVE-2018-10915) + Fix INSERT ... ON CONFLICT UPDATE through a view that isn't just SELECT FROM ... Erroneous expansion of an updatable view could lead to crashes or attribute ... has the wrong type errors, if the view's SELECT list doesn't match one-to-one with the underlying table's columns. Furthermore, this bug could be leveraged to allow updates of columns that an attacking user lacks UPDATE privilege for, if that user has INSERT and UPDATE privileges for some other column(s) of the table. Any user could also use it for disclosure of server memory. (CVE-2018-10925) * Remove version checking for libselinux1-dev, 2.1.10 is old enough now. * Drop support for tcl8.5. * Use dh_auto_configure to correctly seed the build architecture. * Filter -fdebug-prefix-map and -ffile-prefix-map in more places, and make PGXS modules build reproducibly. * Add new pgtypes header and symbol. -- Christoph Berg <email address hidden> Tue, 07 Aug 2018 10:56:16 +0200
Available diffs
- diff from 10.4-2 to 10.5-1 (2.0 MiB)
postgresql-10 (10.4-0ubuntu0.18.04) bionic; urgency=medium * New upstream release (LP: #1769888) - A dump/restore is not required for those running 10.X. However, if you use the adminpack extension, you should update it as per the first changelog entry of the changelog. (CVE-2018-1115) Also, if the function marking mistakes mentioned in the first changelog entry affect you, you will want to take steps to correct your database catalogs. - Details about changes can be found at https://www.postgresql.org/docs/10/static/release-10-4.html -- Christian Ehrhardt <email address hidden> Tue, 08 May 2018 15:17:41 +0200
Available diffs
postgresql-10 (10.4-2) unstable; urgency=medium * Update libpq_pgport in Makefile.global to find libpgcommon/libpgport in pkglibdir. -- Christoph Berg <email address hidden> Sat, 12 May 2018 17:57:49 +0200
Available diffs
- diff from 10.3-1 to 10.4-2 (2.1 MiB)
- diff from 10.4-1 to 10.4-2 (577 bytes)
postgresql-10 (10.4-1) unstable; urgency=medium * New upstream version. + Remove public execute privilege from contrib/adminpack's pg_logfile_rotate() function. (CVE-2018-1115) + Fix incorrect volatility and parallel-safety markings on a few built-in functions. * Move libpgport.a, libpgcommon.a, and libpgfeutils.a from libdir to pkglibdir. * Revert "B-D on python3-distutils | python3-dev (<< 3.6.4~rc1-2)". -- Christoph Berg <email address hidden> Tue, 08 May 2018 16:02:19 +0200
Available diffs
- diff from 10.3-2 to 10.4-1 (2.1 MiB)
postgresql-10 (10.3-2) unstable; urgency=medium * Improve wording of NEWS entry on search_path changes. Thanks Chris Lamb! (Closes: #891898) * Disable spinlocks on riscv64, thanks Aurelien Jarno! (Closes: #892807) * B-D on python3-distutils | python3-dev (<< 3.6.4~rc1-2). -- Christoph Berg <email address hidden> Wed, 21 Mar 2018 13:56:34 +0100
Superseded in cosmic-release |
Published in bionic-release |
Deleted in bionic-proposed (Reason: moved to release) |
postgresql-10 (10.3-1) unstable; urgency=medium * New upstream version. If you run an installation in which not all users are mutually trusting, or if you maintain an application or extension that is intended for use in arbitrary situations, it is strongly recommended that you read the documentation changes described in the first changelog entry below, and take suitable steps to ensure that your installation or code is secure. Also, the changes described in the second changelog entry below may cause functions used in index expressions or materialized views to fail during auto-analyze, or when reloading from a dump. After upgrading, monitor the server logs for such problems, and fix affected functions. + Document how to configure installations and applications to guard against search-path-dependent trojan-horse attacks from other users Using a search_path setting that includes any schemas writable by a hostile user enables that user to capture control of queries and then run arbitrary SQL code with the permissions of the attacked user. While it is possible to write queries that are proof against such hijacking, it is notationally tedious, and it's very easy to overlook holes. Therefore, we now recommend configurations in which no untrusted schemas appear in one's search path. (CVE-2018-1058) + Avoid use of insecure search_path settings in pg_dump and other client programs pg_dump, pg_upgrade, vacuumdb and other PostgreSQL-provided applications were themselves vulnerable to the type of hijacking described in the previous changelog entry; since these applications are commonly run by superusers, they present particularly attractive targets. To make them secure whether or not the installation as a whole has been secured, modify them to include only the pg_catalog schema in their search_path settings. Autovacuum worker processes now do the same, as well. In cases where user-provided functions are indirectly executed by these programs -- for example, user-provided functions in index expressions -- the tighter search_path may result in errors, which will need to be corrected by adjusting those user-provided functions to not assume anything about what search path they are invoked under. That has always been good practice, but now it will be necessary for correct behavior. (CVE-2018-1058) -- Christoph Berg <email address hidden> Tue, 27 Feb 2018 12:54:34 +0100
Available diffs
- diff from 10.2-1 to 10.3-1 (1.1 MiB)
postgresql-10 (10.2-1) unstable; urgency=medium * New upstream version. + Fix processing of partition keys containing multiple expressions (CVE-2018-1052) + Ensure that all temporary files made by pg_upgrade are non-world-readable (CVE-2018-1053) + Change the behavior of contrib/cube's cube ~> int operator to make it compatible with KNN search. The meaning of the second argument (the dimension selector) has been changed to make it predictable which value is selected even when dealing with cubes of varying dimensionalities. This is an incompatible change, but since the point of the operator was to be used in KNN searches, it seems rather useless as-is. After installing this update, any expression indexes or materialized views using this operator will need to be reindexed/refreshed. -- Christoph Berg <email address hidden> Wed, 07 Feb 2018 13:50:31 +0100
Available diffs
- diff from 10.1-2 to 10.2-1 (2.6 MiB)
- diff from 10.1-3build1 (in Ubuntu) to 10.2-1 (2.6 MiB)
Superseded in bionic-proposed |
postgresql-10 (10.1-3build1) bionic; urgency=high * No change rebuild against openssl1.1. -- Dimitri John Ledkov <email address hidden> Mon, 05 Feb 2018 16:52:21 +0000
Available diffs
- diff from 10.1-3 (in Debian) to 10.1-3build1 (544 bytes)
postgresql-10 (10.1-3) unstable; urgency=medium * Suppress build variability in schemapg.h. * Include package version number in "extra version" so it is reported by "psql --version" and friends. * postgresql-10.postinst: Ignore command-with-path-in-maintainer-script. * debian/rules: Set DEB_HOST_* via /usr/share/dpkg/architecture.mk. -- Christoph Berg <email address hidden> Thu, 18 Jan 2018 13:18:14 +0100
Available diffs
- diff from 10.1-2 to 10.1-3 (4.8 KiB)
postgresql-10 (10.1-2) unstable; urgency=medium * Drop dbg package in favor of dbgsym packages. * Reimplement /usr/bin/pg_config in perl. This makes libpq-dev cross- compilation friendly (Closes: #794103), and unbreaks co-installation of the split dbgsym packages because we previously installed the same pg_config twice. * Show package version number in version(). * Remove actual build path from Makefile.global for reproducibility. -- Christoph Berg <email address hidden> Thu, 14 Dec 2017 21:14:32 +0100
Available diffs
- diff from 10.1-1 to 10.1-2 (3.3 KiB)
postgresql-10 (10.1-1) unstable; urgency=medium * New upstream version. + Ensure that INSERT ... ON CONFLICT DO UPDATE checks table permissions and RLS policies in all cases (Dean Rasheed) The update path of INSERT ... ON CONFLICT DO UPDATE requires SELECT permission on the columns of the arbiter index, but it failed to check for that in the case of an arbiter specified by constraint name. In addition, for a table with row level security enabled, it failed to check updated rows against the table's SELECT policies (regardless of how the arbiter index was specified). (CVE-2017-15099) + Fix crash due to rowtype mismatch in json{b}_populate_recordset() (Michael Paquier, Tom Lane) These functions used the result rowtype specified in the FROM ... AS clause without checking that it matched the actual rowtype of the supplied tuple value. If it didn't, that would usually result in a crash, though disclosure of server memory contents seems possible as well. (CVE-2017-15098) + Fix BRIN index summarization to handle concurrent table extension correctly (Álvaro Herrera) Previously, a race condition allowed some table rows to be omitted from the index. It may be necessary to reindex existing BRIN indexes to recover from past occurrences of this problem. * Remove empty conf.d directory on purge, even when postgresql-common was already removed. (Closes: #877264) * Remove docbook-dsssl and openjade from Build-Depends, not needed anymore. -- Christoph Berg <email address hidden> Wed, 08 Nov 2017 10:40:59 +0100
Available diffs
Superseded in bionic-proposed |
postgresql-10 (10.0-1build1) bionic; urgency=medium * No-change rebuild for icu soname change. -- Matthias Klose <email address hidden> Tue, 07 Nov 2017 08:54:58 +0000
Available diffs
- diff from 10.0-1 (in Debian) to 10.0-1build1 (320 bytes)
postgresql-10 (10.0-1) unstable; urgency=medium * First PostgreSQL 10 stable release. -- Christoph Berg <email address hidden> Wed, 04 Oct 2017 20:29:51 +0200
1 → 41 of 41 results | First • Previous • Next • Last |