[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Accepted postgresql-8.4 8.4.3-1 (source all i386)



-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Sat, 13 Mar 2010 16:44:46 +0100
Source: postgresql-8.4
Binary: libpq-dev libpq5 libecpg6 libecpg-dev libecpg-compat3 libpgtypes3 postgresql-8.4 postgresql-client-8.4 postgresql-server-dev-8.4 postgresql-doc-8.4 postgresql-contrib-8.4 postgresql-plperl-8.4 postgresql-plpython-8.4 postgresql-pltcl-8.4 postgresql postgresql-client postgresql-doc postgresql-contrib
Architecture: source all i386
Version: 8.4.3-1
Distribution: unstable
Urgency: low
Maintainer: Martin Pitt <mpitt@debian.org>
Changed-By: Martin Pitt <mpitt@debian.org>
Description: 
 libecpg-compat3 - older version of run-time library for ECPG programs
 libecpg-dev - development files for ECPG (Embedded PostgreSQL for C)
 libecpg6   - run-time library for ECPG programs
 libpgtypes3 - shared library libpgtypes for PostgreSQL 8.4
 libpq-dev  - header files for libpq5 (PostgreSQL library)
 libpq5     - PostgreSQL C client library
 postgresql - object-relational SQL database (supported version)
 postgresql-8.4 - object-relational SQL database, version 8.4 server
 postgresql-client - front-end programs for PostgreSQL (supported version)
 postgresql-client-8.4 - front-end programs for PostgreSQL 8.4
 postgresql-contrib - additional facilities for PostgreSQL (supported version)
 postgresql-contrib-8.4 - additional facilities for PostgreSQL
 postgresql-doc - documentation for the PostgreSQL database management system
 postgresql-doc-8.4 - documentation for the PostgreSQL database management system
 postgresql-plperl-8.4 - PL/Perl procedural language for PostgreSQL 8.4
 postgresql-plpython-8.4 - PL/Python procedural language for PostgreSQL 8.4
 postgresql-pltcl-8.4 - PL/Tcl procedural language for PostgreSQL 8.4
 postgresql-server-dev-8.4 - development files for PostgreSQL 8.4 server-side programming
Closes: 570108
Changes: 
 postgresql-8.4 (8.4.3-1) unstable; urgency=low
 .
   * New upstream bug fix release:
     - Add new configuration parameter ssl_renegotiation_limit to control
       how often we do session key renegotiation for an SSL connection.
       This can be set to zero to disable renegotiation completely, which
       may be required if a broken SSL library is used. In particular,
       some vendors are shipping stopgap patches for CVE-2009-3555 that
       cause renegotiation attempts to fail.
     - Fix possible deadlock during backend startup.
     - Fix possible crashes due to not handling errors during relcache
       reload cleanly.
     - Fix possible crash due to use of dangling pointer to a cached plan.
     - Fix possible crash due to overenthusiastic invalidation of cached
       plan for "ROLLBACK".
     - Fix possible crashes when trying to recover from a failure in
       subtransaction start.
     - Fix server memory leak associated with use of savepoints and a
       client encoding different from server's encoding.
     - Fix incorrect WAL data emitted during end-of-recovery cleanup of a
       GIST index page split.
     - Fix bug in WAL redo cleanup method for GIN indexes.
     - Fix incorrect comparison of scan key in GIN index search.
     - Make substring() for bit types treat any negative length as meaning
       "all the rest of the string". The previous coding treated only -1 that
       way, and would produce an invalid result value for other negative
       values, possibly leading to a crash (CVE-2010-0442).
     - Fix integer-to-bit-string conversions to handle the first
       fractional byte correctly when the output bit width is wider than
       the given integer by something other than a multiple of 8 bits.
     - Fix some cases of pathologically slow regular expression matching.
     - Fix bug occurring when trying to inline a SQL function that returns
       a set of a composite type that contains dropped columns.
     - Fix bug with trying to update a field of an element of a
       composite-type array column.
     - Avoid failure when "EXPLAIN" has to print a FieldStore or
       assignment ArrayRef expression.
       These cases can arise now that "EXPLAIN VERBOSE" tries to print
       plan node target lists.
     - Avoid an unnecessary coercion failure in some cases where an
       undecorated literal string appears in a subquery within
       "UNION"/"INTERSECT"/"EXCEPT".
       This fixes a regression for some cases that worked before 8.4.
     - Avoid undesirable rowtype compatibility check failures in some
       cases where a whole-row Var has a rowtype that contains dropped
       columns.
     - Fix the STOP WAL LOCATION entry in backup history files to report
       the next WAL segment's name when the end location is exactly at a
       segment boundary.
     - Always pass the catalog ID to an option validator function
       specified in "CREATE FOREIGN DATA WRAPPER".
     - Fix some more cases of temporary-file leakage.
       This corrects a problem introduced in the previous minor release.
       One case that failed is when a plpgsql function returning set is
       called within another function's exception handler.
     - Add support for doing FULL JOIN ON FALSE.
       This prevents a regression from pre-8.4 releases for some queries
       that can now be simplified to a constant-false join condition.
     - Improve constraint exclusion processing of boolean-variable cases,
       in particular make it possible to exclude a partition that has a
       "bool_column = false" constraint.
     - Prevent treating an INOUT cast as representing binary compatibility.
     - Include column name in the message when warning about inability to
       grant or revoke column-level privileges.
       This is more useful than before and helps to prevent confusion when
       a "REVOKE" generates multiple messages, which formerly appeared to
       be duplicates.
     - When reading "pg_hba.conf" and related files, do not treat
       @something as a file inclusion request if the @ appears inside
       quote marks; also, never treat @ by itself as a file inclusion
       request.
       This prevents erratic behavior if a role or database name starts
       with @. If you need to include a file whose path name contains
       spaces, you can still do so, but you must write @"/path to/file"
       rather than putting the quotes around the whole construct.
     - Prevent infinite loop on some platforms if a directory is named as
       an inclusion target in "pg_hba.conf" and related files.
     - Fix possible infinite loop if SSL_read or SSL_write fails without
       setting errno.
       This is reportedly possible with some Windows versions of openssl.
     - Disallow GSSAPI authentication on local connections, since it
       requires a hostname to function correctly.
     - Protect ecpg against applications freeing strings unexpectedly.
     - Make ecpg report the proper SQLSTATE if the connection disappears.
     - Fix translation of cell contents in psql \d output.
     - Fix psql's numericlocale option to not format strings it shouldn't
       in latex and troff output formats.
     - Fix a small per-query memory leak in psql.
     - Make psql return the correct exit status (3) when ON_ERROR_STOP and
       --single-transaction are both specified and an error occurs during
       the implied "COMMIT".
     - Fix pg_dump's output of permissions for foreign servers.
     - Fix possible crash in parallel pg_restore due to out-of-range
       dependency IDs.
     - Fix plpgsql failure in one case where a composite column is set to
       NULL.
     - Fix possible failure when calling PL/Perl functions from PL/PerlU
       or vice versa.
     - Add volatile markings in PL/Python to avoid possible
       compiler-specific misbehavior>
     - Ensure PL/Tcl initializes the Tcl interpreter.
       The only known symptom of this oversight is that the Tcl clock
       command misbehaves if using Tcl 8.5 or later.
     - Prevent ExecutorEnd from being run on portals created within a
       failed transaction or subtransaction.
       This is known to cause issues when using "contrib/auto_explain".
     - Prevent crash in "contrib/dblink" when too many key columns are
       specified to a dblink_build_sql_- function.
     - Allow zero-dimensional arrays in "contrib/ltree" operations.
       This case was formerly rejected as an error, but it's more
       convenient to treat it the same as a zero-element array. In
       particular this avoids unnecessary failures when an ltree operation
       is applied to the result of ARRAY(SELECT ...) and the sub-select
       returns no rows.
     - Fix assorted crashes in "contrib/xml2" caused by sloppy memory
       management.
   * Rebuild against libossp-uuid16. (Closes: #570108, LP: #538284)
Checksums-Sha1: 
 cba033e185d9f2048d47a7381a30c65591511e87 1850 postgresql-8.4_8.4.3-1.dsc
 9c666fa85e0782fc3e555766856bf1c2b6b35aa0 16853436 postgresql-8.4_8.4.3.orig.tar.gz
 87fa579bb79096bb07dda741aab61dfc7bface29 34003 postgresql-8.4_8.4.3-1.diff.gz
 3114a6fa1e917ad6f1764bbb96fcc14b23a0818a 2093818 postgresql-doc-8.4_8.4.3-1_all.deb
 5318a7cdf16c37cae3e96e3f107056dd0b9e308b 13228 postgresql_8.4.3-1_all.deb
 35ef8b4cde1a7572ae8cc428942584c25ebd8093 13196 postgresql-client_8.4.3-1_all.deb
 6e2990841817bf0cc2fba003d91e5753c31a8b84 13036 postgresql-doc_8.4.3-1_all.deb
 34594514e67f657ba0b88d31a16b55773ef71f87 13094 postgresql-contrib_8.4.3-1_all.deb
 0a5e573462ced2b0494146171df9001a27f22b20 217008 libpq-dev_8.4.3-1_i386.deb
 acfb74e3312a4a2e8044991c229a6f01d749d373 129628 libpq5_8.4.3-1_i386.deb
 1aee2bf80a8425cb5ea1a7741edb345a3ef11491 67966 libecpg6_8.4.3-1_i386.deb
 c0e8fd6335ea39b21a3c0034d72b139800b0f08b 236054 libecpg-dev_8.4.3-1_i386.deb
 05c7d16a50f741e1df4ac421f5537707ab536d01 20230 libecpg-compat3_8.4.3-1_i386.deb
 b0f52d288695edc5b3b33229ac29e816a3d20b47 43748 libpgtypes3_8.4.3-1_i386.deb
 86e87b26473711e6f8e14ab6eb5f9c44c32f544e 4779114 postgresql-8.4_8.4.3-1_i386.deb
 07b3e450e1235a183825ffaa133b4162b98d7a28 1239324 postgresql-client-8.4_8.4.3-1_i386.deb
 b3c95a00eccf77c9c1cf2b6f96d58d14f217b31e 629942 postgresql-server-dev-8.4_8.4.3-1_i386.deb
 81d0dd98265c4c4d43a2af8bb4602ed7c14238ea 382220 postgresql-contrib-8.4_8.4.3-1_i386.deb
 d49402906b65d6a5cd59b8c0dd812d2a8b20a9e1 44884 postgresql-plperl-8.4_8.4.3-1_i386.deb
 2a5f9946a154985e3965f941d13d020f01343205 44902 postgresql-plpython-8.4_8.4.3-1_i386.deb
 1340c8a145f76cae011ecc5fee06d38592b8274e 33608 postgresql-pltcl-8.4_8.4.3-1_i386.deb
Checksums-Sha256: 
 21d7f78918f16edb7bca658e29c7fcb1bdc3f0db1704c463ddc5f0077d59bc27 1850 postgresql-8.4_8.4.3-1.dsc
 09c3eed3297234d88a8d1b12ebf5b01513d7e0428ebc8ff02b341749e9fb6f56 16853436 postgresql-8.4_8.4.3.orig.tar.gz
 99b438f7bc67c1505835cd24183e62484d3d4bde75054d789d9f7831b0d7b771 34003 postgresql-8.4_8.4.3-1.diff.gz
 2442939a7afa711619cd3bf5e7fc70a82e1c25a466126e9fc63f261102562db0 2093818 postgresql-doc-8.4_8.4.3-1_all.deb
 6f7603af2619e43b2a43bc6f2f3c2a215af3749c263d690d8b4f0324c5484ee0 13228 postgresql_8.4.3-1_all.deb
 e5f16dff9f3a4ddb75be42e1639c5580f4e81d1ce7bd9be3da0798a7d54ffbff 13196 postgresql-client_8.4.3-1_all.deb
 89fb9e8b9762be4240ef400ccc93ce167b914f1855f9f54fc0eece1006573690 13036 postgresql-doc_8.4.3-1_all.deb
 07f74648011ac0498af0773689b9d4b4cc7a841d203125410514fbed50eb7e47 13094 postgresql-contrib_8.4.3-1_all.deb
 e83962fc088ff6f27321a4f3af610f0bf05c785ce84515f345144c7f049e3876 217008 libpq-dev_8.4.3-1_i386.deb
 333072f77771cbfd20c104b2ec1598f1a9b55e3c342e6152e57073457544cfe2 129628 libpq5_8.4.3-1_i386.deb
 be954bd20ced14bf6b1d868cf5389fada85667a512e9c4f73793f162b64949ce 67966 libecpg6_8.4.3-1_i386.deb
 a7cde9e25aab300a4321b66981fd979148498071e1c64f204449b4327b716108 236054 libecpg-dev_8.4.3-1_i386.deb
 a023e967cd5f7dc1d5262ba60b37af612d65ee64ed9663bf44bef0b9c13d2eee 20230 libecpg-compat3_8.4.3-1_i386.deb
 1ee8aa6a8e536e428dce7201f0109b5d44eeeaa5d63159347fb09390ff487855 43748 libpgtypes3_8.4.3-1_i386.deb
 492c5f5928273a1fa255484debca15b618b70dde4c23f0e12098a1852183373e 4779114 postgresql-8.4_8.4.3-1_i386.deb
 fa613bed2660b2f133bf7d09da62f6959aa94ea9c495871f87716887d0fd2c56 1239324 postgresql-client-8.4_8.4.3-1_i386.deb
 06ffed3d24ba55850462c06f3975d8a3cc2e44cf5a0038cf78c84894cd687b05 629942 postgresql-server-dev-8.4_8.4.3-1_i386.deb
 863f22b7b94c9d66e38c257f4b0ab880c59104a11aa9cf77c1158fa9e87d33fd 382220 postgresql-contrib-8.4_8.4.3-1_i386.deb
 dc5a2782e9138c0f16cad90c24d45e046012290b3bca9ea458938984541570fc 44884 postgresql-plperl-8.4_8.4.3-1_i386.deb
 a8fb5e37654d16759a094e8538ca5a1802d27cd74190f96315402a8cfba310d9 44902 postgresql-plpython-8.4_8.4.3-1_i386.deb
 a514371cafc97df39981bdc215d6efc826748ed3953dd938981f8df0a3e99b45 33608 postgresql-pltcl-8.4_8.4.3-1_i386.deb
Files: 
 4a8412b17f1ff447eb60c6c2868fdb8f 1850 database optional postgresql-8.4_8.4.3-1.dsc
 712a5d8f78814d2de2071cf43ed323ac 16853436 database optional postgresql-8.4_8.4.3.orig.tar.gz
 7b2315bdb243d9d63260f72fec0bebc8 34003 database optional postgresql-8.4_8.4.3-1.diff.gz
 6ff68d424dfcf40a0a90edcf03dcd3d7 2093818 doc optional postgresql-doc-8.4_8.4.3-1_all.deb
 b2e502c667d7b7299f75c5f1ccef7a98 13228 database optional postgresql_8.4.3-1_all.deb
 d3c634a561adb9bf0304e8ef6d1204f1 13196 database optional postgresql-client_8.4.3-1_all.deb
 647cebd011843780196fbfc723830b23 13036 doc optional postgresql-doc_8.4.3-1_all.deb
 fc5d276611744fa103e86fee74d4d960 13094 database optional postgresql-contrib_8.4.3-1_all.deb
 999b5e51612829353aa09093393cff99 217008 libdevel optional libpq-dev_8.4.3-1_i386.deb
 7d5cae4b2268c68c25081ff178f688bc 129628 libs optional libpq5_8.4.3-1_i386.deb
 ac8938022e67ae7b430bb18029c7f1bd 67966 libs optional libecpg6_8.4.3-1_i386.deb
 74ae80c5fa5f51d3ea6a3adee1f1e957 236054 libdevel optional libecpg-dev_8.4.3-1_i386.deb
 4cc00becfdd96825a5fcac1b246902d0 20230 libs optional libecpg-compat3_8.4.3-1_i386.deb
 1bc542a42c8dc175e0b575bbf8b3e6e6 43748 libs optional libpgtypes3_8.4.3-1_i386.deb
 b4dccecfff5bab5bbf8e70459c8c25dc 4779114 database optional postgresql-8.4_8.4.3-1_i386.deb
 74849a6573dcde35e0a832aa9a3a5f1d 1239324 database optional postgresql-client-8.4_8.4.3-1_i386.deb
 094532f1bf4b013db0ca20ccb9b67af5 629942 libdevel optional postgresql-server-dev-8.4_8.4.3-1_i386.deb
 a6f88ce614b18a37b1ecde597df88f55 382220 database optional postgresql-contrib-8.4_8.4.3-1_i386.deb
 980ddd6e33946bd9936245edc58ba858 44884 database optional postgresql-plperl-8.4_8.4.3-1_i386.deb
 b5c79773595e80df4d709bf22754fa2a 44902 database optional postgresql-plpython-8.4_8.4.3-1_i386.deb
 49919926468cdf21f42edef41393e507 33608 database optional postgresql-pltcl-8.4_8.4.3-1_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAkubusgACgkQDecnbV4Fd/I3TACg6Bt0xMyfQ/JDKjtUHySGvb0v
Cu0AoKl/wweXGaDw4BEuXQBjrTjy6rWC
=LFzc
-----END PGP SIGNATURE-----


Accepted:
libecpg-compat3_8.4.3-1_i386.deb
  to main/p/postgresql-8.4/libecpg-compat3_8.4.3-1_i386.deb
libecpg-dev_8.4.3-1_i386.deb
  to main/p/postgresql-8.4/libecpg-dev_8.4.3-1_i386.deb
libecpg6_8.4.3-1_i386.deb
  to main/p/postgresql-8.4/libecpg6_8.4.3-1_i386.deb
libpgtypes3_8.4.3-1_i386.deb
  to main/p/postgresql-8.4/libpgtypes3_8.4.3-1_i386.deb
libpq-dev_8.4.3-1_i386.deb
  to main/p/postgresql-8.4/libpq-dev_8.4.3-1_i386.deb
libpq5_8.4.3-1_i386.deb
  to main/p/postgresql-8.4/libpq5_8.4.3-1_i386.deb
postgresql-8.4_8.4.3-1.diff.gz
  to main/p/postgresql-8.4/postgresql-8.4_8.4.3-1.diff.gz
postgresql-8.4_8.4.3-1.dsc
  to main/p/postgresql-8.4/postgresql-8.4_8.4.3-1.dsc
postgresql-8.4_8.4.3-1_i386.deb
  to main/p/postgresql-8.4/postgresql-8.4_8.4.3-1_i386.deb
postgresql-8.4_8.4.3.orig.tar.gz
  to main/p/postgresql-8.4/postgresql-8.4_8.4.3.orig.tar.gz
postgresql-client-8.4_8.4.3-1_i386.deb
  to main/p/postgresql-8.4/postgresql-client-8.4_8.4.3-1_i386.deb
postgresql-client_8.4.3-1_all.deb
  to main/p/postgresql-8.4/postgresql-client_8.4.3-1_all.deb
postgresql-contrib-8.4_8.4.3-1_i386.deb
  to main/p/postgresql-8.4/postgresql-contrib-8.4_8.4.3-1_i386.deb
postgresql-contrib_8.4.3-1_all.deb
  to main/p/postgresql-8.4/postgresql-contrib_8.4.3-1_all.deb
postgresql-doc-8.4_8.4.3-1_all.deb
  to main/p/postgresql-8.4/postgresql-doc-8.4_8.4.3-1_all.deb
postgresql-doc_8.4.3-1_all.deb
  to main/p/postgresql-8.4/postgresql-doc_8.4.3-1_all.deb
postgresql-plperl-8.4_8.4.3-1_i386.deb
  to main/p/postgresql-8.4/postgresql-plperl-8.4_8.4.3-1_i386.deb
postgresql-plpython-8.4_8.4.3-1_i386.deb
  to main/p/postgresql-8.4/postgresql-plpython-8.4_8.4.3-1_i386.deb
postgresql-pltcl-8.4_8.4.3-1_i386.deb
  to main/p/postgresql-8.4/postgresql-pltcl-8.4_8.4.3-1_i386.deb
postgresql-server-dev-8.4_8.4.3-1_i386.deb
  to main/p/postgresql-8.4/postgresql-server-dev-8.4_8.4.3-1_i386.deb
postgresql_8.4.3-1_all.deb
  to main/p/postgresql-8.4/postgresql_8.4.3-1_all.deb


Reply to: