Search
j0ke.net Open Build Service
>
Projects
>
server:database
:
postgresql
>
postgresql
> Changes
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
Changes of Revision 13
[-]
[+]
Added
postgresql.changes
@@ -0,0 +1,1183 @@ +------------------------------------------------------------------- +Wed Nov 5 16:07:45 CET 2008 - max@suse.de + +- Bugfix release: 8.3.5 + * Fix GiST index corruption due to marking the wrong index + entry "dead" after a deletion. This would result in index + searches failing to find rows they should have found. + * Fix backend crash when the client encoding cannot represent a + localized error message. + * Fix possible crash in bytea-to-XML mapping. + * Fix possible crash when deeply nested functions are invoked + from a trigger. + * Improve optimization of "expression" IN ("expression-list") + queries. + * Fix mis-expansion of rule queries when a sub-SELECT appears + in a function call in FROM, a multi-row VALUES list, or a + RETURNING list. + * Fix Assert failure during rescan of an IS NULL search of + a GiST index. + * Fix memory leak during rescan of a hashed aggregation plan. + * Ensure an error is reported when a newly-defined PL/pgSQL + trigger function is invoked as a normal function. + * Force a checkpoint before "CREATE DATABASE" starts to copy + files This prevents a possible failure if files had recently + been deleted in the source database. + * Prevent possible collision of relfilenode numbers when moving + a table to another tablespace with "ALTER SET TABLESPACE". + * Fix incorrect text search headline generation when single + query item matches first word of text. + * Fix improper display of fractional seconds in interval + values when using a non-ISO datestyle in an + "--enable-integer-datetimes" build. + * Make ILIKE compare characters case-insensitively even when + they're escaped. + * Ensure "DISCARD" is handled properly by statement logging. + * Fix incorrect logging of last-completed-transaction time + during PITR recovery. + * Ensure SPI_getvalue and SPI_getbinval behave correctly when + the passed tuple and tuple descriptor have different numbers + of columns. + * Fix small memory leak when using libpq's gsslib parameter. + * Ensure libgssapi is linked into libpq if needed. + * Fix ecpg's parsing of "CREATE ROLE". + * Fix recent breakage of pg_ctl restart. + +------------------------------------------------------------------- +Thu Sep 25 13:19:09 CEST 2008 - max@suse.de + +- Bugfix release: 8.3.4 +- Issues fixed include autovacuum crashes reported by several + users, two Heap Only Tuple bugs, a foreign key failure + condition, a too-small lock address space, two Write Ahead Log + bugs, several planner mistakes, and numerous "corner condition" + bugs. + +------------------------------------------------------------------- +Fri Sep 5 10:15:20 CEST 2008 - max@suse.de + +- New version: 8.3.3 with countless bug fixes over 8.3.1. +- For details, see + http://www.postgresql.org/docs/8.3/static/release-8-3-2.html , + http://www.postgresql.org/docs/8.3/static/release-8-3-3.html , + or /usr/share/doc/packages/postgresql/HISTORY . + +------------------------------------------------------------------- +Thu Aug 28 23:23:58 CEST 2008 - cthiel@suse.de + +- fix init script + +------------------------------------------------------------------- +Mon May 19 18:31:54 CEST 2008 - schwab@suse.de + +- Fix broken configure check. + +------------------------------------------------------------------- +Fri May 9 10:25:15 CEST 2008 - aj@suse.de + +- Add baselibs.conf. + +------------------------------------------------------------------- +Fri Apr 18 11:37:38 CEST 2008 - max@suse.de + +- Removed static libs from postgresql-devel. +- Removed more old Obsoletes: tags. +- Fixed path to pid file in init script. +- Moved "make check" to %check section +- Silence some bogus rpmlint warnings + +------------------------------------------------------------------- +Thu Apr 10 14:23:15 CEST 2008 - max@suse.de + +- Adopt the 8.3.1 package from Peter Eisentraut's OBS project. +- New features in PostgreSQL 8.3 include: + * Full text search is integrated into the core database system + * Support for the SQL/XML standard, including new operators and + an XML data type + * Enumerated data types (ENUM) + * Arrays of composite types + * Universally Unique Identifier (UUID) data type + * Add control over whether NULLs sort first or last + * Updatable cursors + * Server configuration parameters can now be set on a + per-function basis + * User-defined types can now have type modifiers + * Automatically re-plan cached queries when table definitions + change or statistics are updated + * Numerous improvements in logging and statistics collection + * Support multiple concurrent autovacuum processes, and other + autovacuum improvements +- Remove old provides/obsoletes tags for way-back package renames. + +------------------------------------------------------------------- +Thu Apr 10 12:54:45 CEST 2008 - ro@suse.de + +- added baselibs.conf file to build xxbit packages + for multilib support + +------------------------------------------------------------------- +Thu Jan 10 14:34:16 CET 2008 - max@suse.de + +- Update to 8.2.6 to fix five security issues: + - Index Functions Privilege Escalation: CVE-2007-6600 + - Regular Expression Denial-of-Service: CVE-2007-4772, + CVE-2007-6067, CVE-2007-4769, #329282 + - DBLink Privilege Escalation: CVE-2007-6601, #328403 + +------------------------------------------------------------------- +Wed Jun 6 16:02:58 CEST 2007 - max@suse.de + +- New version: 8.2.4 +- The list of changes between the 8.1 and 8.2 series is too long + to reproduce here. It can be found under + /usr/share/doc/packages/postgresql/HISTORY when the postgresql + package is installed or online at http://www.postgresql.org. +- Splited the postgresql-pl package into individual packages for + PL/Perl, PL/Python and PL/Tcl. +- Added a config file for SuSEfirewall2 (#247370). + +------------------------------------------------------------------- +Thu Mar 29 14:32:16 CEST 2007 - rguenther@suse.de + +- Add bison, flex and zlib-devel BuildRequires. + +------------------------------------------------------------------- +Tue Oct 17 15:01:57 CEST 2006 - max@suse.de + +- New patchlevel release: 8.1.5 +- Disallow aggregate functions in "UPDATE" commands, except within + sub-SELECTs. The behavior of such an aggregate was unpredictable, + and in 8.1.X could cause a crash, so it has been disabled. +- Fix core dump when an untyped literal is taken as ANYARRAY. +- Fix core dump in duration logging for extended query protocol when + a "COMMIT" or "ROLLBACK" is executed. +- Fix mishandling of AFTER triggers when query contains a SQL function + returning multiple rows. +- Fix "ALTER TABLE ... TYPE" to recheck NOT NULL for USING clause. +- Fix string_to_array() to handle overlapping matches for the + separator string. +- Fix to_timestamp() for AM/PM formats. +- Fix autovacuum's calculation that decides whether "ANALYZE" is + needed. +- Fix corner cases in pattern matching for psql's \d commands. +- Fix index-corrupting bugs in /contrib/ltree. +- Numerous robustness fixes in ecpg. +- Fix backslash escaping in /contrib/dbmirror. +- Minor fixes in /contrib/dblink and /contrib/tsearch2. +- Efficiency improvements in hash tables and bitmap index scans. + +------------------------------------------------------------------- +Wed May 24 10:24:26 CEST 2006 - max@suse.de + +- Update to 8.1.4 to fix SQL injection vulnerabilities + (bug #177931, CVE-2006-2313, CVE-2006-2314). + +- Added a new postgresql-SECURITY-NOTICE file with an FAQ that + explains the issues. + +------------------------------------------------------------------- +Mon Feb 13 15:47:46 CET 2006 - max@suse.de + +- New version: 8.1.3 (#150376). +- Relaxed dependencies between subpackages to simplify future + updates. + +------------------------------------------------------------------- +Wed Jan 25 21:40:32 CET 2006 - mls@suse.de + +- converted neededforbuild to BuildRequires + +------------------------------------------------------------------- +Fri Jan 13 17:21:31 CET 2006 - max@suse.de + +- Moved from logrotate to PostgreSQL's own log rotation facility. +- Log files are now located under /var/lib/pgsql/data/pg_log . +- Improved error reporting on test suite failures. + +------------------------------------------------------------------- +Thu Dec 22 17:26:01 CET 2005 - max@suse.de +