2023-02-15 21:51:02 by Adam Ciarcinski | Files touched by this commit (66) |  |
Log message:
postgresql: updated to 15.2, 14.7, 13.10, 12.14, and 11.19
Security Issues
CVE-2022-41862: Client memory disclosure when connecting, with Kerberos, to \
modified server.
Versions Affected: 12 - 15.
A modified, unauthenticated server or an unauthenticated man-in-the-middle can \
send an unterminated string during the establishment of Kerberos transport \
encryption. When a libpq client application has a Kerberos credential cache and \
doesn't explicitly disable option gssencmode, a server can cause libpq to \
over-read and report an error message containing uninitialized bytes from and \
following its receive buffer. If libpq's caller somehow makes that message \
accessible to the attacker, this achieves a disclosure of the over-read bytes. \
We have not confirmed or ruled out viability of attacks that arrange for a crash \
or for presence of notable, confidential information in disclosed bytes.
The PostgreSQL project thanks Jacob Champion for reporting this problem.
Bug Fixes and Improvements
This update fixes over 60 bugs that were reported in the last several months. \
The issues listed below affect PostgreSQL 15. Some of these issues may also \
affect other supported versions of PostgreSQL.
Included in this release:
Fix for partitioned tables to correctly update GENERATED columns in child tables \
if the GENERATED column does not exist in the parent table or the child \
generated column has different dependencies than the parent.
Several fixes for the MERGE command.
Allow a WITH RECURSIVE ... CYCLE query to access its SET output column.
Fix an issue with bulk insertions on foreign tables that could lead to logical \
inconsistencies, for example, a BEFORE ROW trigger may not process rows that \
should be available.
Reject uses of undefined variables in jsonpath existence checks.
Fix for jsonb subscripting that come directly from a text column in a table.
Honor updated values of checkpoint_completion_target on reload.
Log the correct ending timestamp in recovery_target_xid mode.
Fix issue to allow column lists longer than 100 when using logical replication.
Prevent "wrong tuple length" failure at the end of VACUUM.
Avoid an immediate commit after ANALYZE when using query pipelining.
Several fixes to the query planner, including one that provides more \
opportunities for using memoization with partitionwise joins.
Fix for statistics collection to correctly handle when a relation changes type \
(e.g. a table is converted to a view).
Ensure full text search queries can be cancelled while performing phrase matches.
Fix deadlock between DROP DATABASE and logical replication worker process.
Fix small session-lifespan memory leak when CREATE SUBSCRIPTION fails its \
connection attempt.
Performance improvement for replicas with hot_standby enabled that are \
processing SELECT queries.
Several fixes for logical decoding that improve its stability and bloat handling.
Fix the default logical replication plug-in, pgoutput, to not send columns that \
are not listed in a table's replication column list.
Fix possible corruption of very large tablespace map files in pg_basebackup.
Remove a harmless warning from pg_dump in --if-exists mode when the public \
schema has a non-default owner.
Fix the psql commands \sf and \ef to handle SQL-language functions that have \
SQL-standard function bodies (i.e. BEGIN ATOMIC).
Fix tab completion of ALTER FUNCTION/PROCEDURE/ROUTINE ... SET SCHEMA.
Update the pageinspect extension to mark its disk-accessing functions as \
PARALLEL RESTRICTED.
Fix the seg extension to not crash or print garbage if an input number has more \
than 127 digits.
|
2022-11-23 17:21:30 by Adam Ciarcinski | Files touched by this commit (1878) |  |
Log message:
massive revision bump after textproc/icu update
|
2022-11-13 10:34:27 by Adam Ciarcinski | Files touched by this commit (31) |  |
Log message:
postgresql1[0-5]: Updated to 15.1, 14.6, 13.9, 12.13, 11.18, and 10.23
PostgreSQL 15.1, 14.6, 13.9, 12.13, 11.18, and 10.23 Released!
Bug Fixes and Improvements
This update fixes over 25 bugs that were reported in the last several months. \
The issues listed below affect PostgreSQL 15. Some of these issues may also \
affect other supported versions of PostgreSQL.
Included in this release:
Fix for updatable views for INSERT statements that include multi-row VALUES \
clauses with a DEFAULT set.
Disallow rules named _RETURN that are not ON SELECT rules.
Disallow use of MERGE on a partitioned table that has foreign-table partitions.
Fix for construction of per-partition foreign key constraints while doing ALTER \
TABLE ... ATTACH PARTITION, where previously incorrect or duplicate constraints \
could be built.
Fix for a planner failure with extended statistics on partitioned or inherited \
tables.
Fix bugs in logical decoding that could lead to memory leaks when replay starts \
from a point between the beginning of a transaction and the beginning of its \
subtransaction.
Fix issues with slow shutdown of replication workers by allowing interrupts in \
more places.
Disallow logical replication into foreign-table partitions.
Prevent crash in replication works after a SQL or PL/pgSQL function syntax error.
psql -c now exits with a nonzero status if the query is canceled.
Allow cross-platform tablespace relocation in pg_basebackup.
Fix pg_dump to include comments attached to some CHECK constraints.
|
2022-11-01 11:20:55 by Jonathan Perkin | Files touched by this commit (1) |
Log message:
postgresql15: Avoid picking up random zstd commands.
|
2022-10-19 15:16:46 by Adam Ciarcinski | Files touched by this commit (43) |
Log message:
postgresql15: added version 15.0
PostgreSQL 15 contains many new features and enhancements, including:
Support for the SQL MERGE command.
Selective publication of tables' contents within logical replication \
publications, through the ability to specify column lists and row filter \
conditions.
More options for compression, including support for Zstandard (zstd) \
compression. This includes support for performing compression on the server side \
during pg_basebackup.
Support for structured server log output using the JSON format.
Performance improvements, particularly for in-memory and on-disk sorting.
|