Skip to content

Commit

Permalink
Mise à jour en version 8.4.16
Browse files Browse the repository at this point in the history
  • Loading branch information
gleu committed Feb 19, 2013
1 parent 6625a91 commit a39357a
Show file tree
Hide file tree
Showing 7 changed files with 391 additions and 6 deletions.
2 changes: 1 addition & 1 deletion installation.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2385,7 +2385,7 @@ createlang: language installation failed: ERROR: could not load library "/opt/d
</biblioentry>

<biblioentry>
<title><ulink url=" http://www.redbooks.ibm.com/abstracts/sg245674.html?Open">Developing and Porting C and C++ Applications on AIX</ulink></title>
<title><ulink url="http://www.redbooks.ibm.com/abstracts/sg245674.html?Open">Developing and Porting C and C++ Applications on AIX</ulink></title>
<publisher>
<publishername>IBM Redbook</publishername>
</publisher>
Expand Down
4 changes: 2 additions & 2 deletions legal.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
révision $Revision$ -->

<copyright>
<year>1996-2012</year>
<year>1996-2013</year>
<holder>The PostgreSQL Global Development Group</holder>
</copyright>

<legalnotice id="legalnotice">
<title>Legal Notice</title>

<para>
<productname>PostgreSQL</productname> is Copyright &copy; 1996-2012
<productname>PostgreSQL</productname> is Copyright &copy; 1996-2013
by the PostgreSQL Global Development Group and is distributed under
the terms of the license of the University of California below.
</para>
Expand Down
2 changes: 1 addition & 1 deletion nls.xml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ msgstr "encore une de traduite"
<filename><replaceable>langue</replaceable>_<replaceable>region</replaceable>.po</filename>
où <replaceable>region</replaceable> est le code de langue sur deux
caractères (en majuscules), tel que défini par l'<ulink
url="http://www.din.de/gremien/nas/nabd/iso3166ma/codlstp1/en_listp1.html">ISO 3166-1,
url="http://www.iso.org/iso/country_names_and_code_elements">ISO 3166-1,
le code du payes sur deux lettres en majuscule</ulink>,
c'est-à-dire <filename>pt_BR.po</filename> pour le portugais du Brésil. Si vous
trouvez la langue que vous souhaitez, vous pouvez commencer à travailler
Expand Down
8 changes: 7 additions & 1 deletion ref/drop_owned.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ DROP OWNED BY <replaceable class="parameter">nom</replaceable> [, ...] [ CASCADE
<para>
<command>DROP OWNED</command> supprime tous les objets de la base qui ont
pour propriétaire un des rôles spécifiés. Tout droit donné à un des rôles
sur ces objets sera aussi supprimé.
sur ces objets ainsi qu'aux objets partagés (bases de données, tablespaces)
sera aussi supprimé.
</para>
</refsect1>

Expand Down Expand Up @@ -93,6 +94,11 @@ DROP OWNED BY <replaceable class="parameter">nom</replaceable> [, ...] [ CASCADE
propriété de tous les objets de la base possédés par un ou plusieurs
rôles.
</para>

<para>
Les bases de données et les tablespaces appartenant au(x) rôle(s) ne seront
pas supprimés.
</para>
</refsect1>

<refsect1>
Expand Down
169 changes: 169 additions & 0 deletions release-8.3.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,175 @@
par $Author: gleu $
révision $Revision: 1317 $ -->

<sect1 id="release-8-3-23">
<title>Release 8.3.23</title>

<note>
<title>Release Date</title>
<simpara>2013-02-07</simpara>
</note>

<para>
This release contains a variety of fixes from 8.3.22.
For information about new features in the 8.3 major release, see
<xref linkend="release-8-3"/>.
</para>

<para>
This is expected to be the last <productname>PostgreSQL</productname> release
in the 8.3.X series. Users are encouraged to update to a newer
release branch soon.
</para>

<sect2>
<title>Migration to Version 8.3.23</title>

<para>
A dump/restore is not required for those running 8.3.X.
</para>

<para>
However, if you are upgrading from a version earlier than 8.3.17,
see the release notes for 8.3.17.
</para>

</sect2>

<sect2>
<title>Changes</title>

<itemizedlist>

<listitem>
<para>
Prevent execution of <function>enum_recv</function> from SQL (Tom Lane)
</para>

<para>
The function was misdeclared, allowing a simple SQL command to crash the
server. In principle an attacker might be able to use it to examine the
contents of server memory. Our thanks to Sumit Soni (via Secunia SVCRP)
for reporting this issue. (CVE-2013-0255)
</para>
</listitem>

<listitem>
<para>
Fix SQL grammar to allow subscripting or field selection from a
sub-SELECT result (Tom Lane)
</para>
</listitem>

<listitem>
<para>
Protect against race conditions when scanning
<structname>pg_tablespace</structname> (Stephen Frost, Tom Lane)
</para>

<para>
<command>CREATE DATABASE</command> and <command>DROP DATABASE</command> could
misbehave if there were concurrent updates of
<structname>pg_tablespace</structname> entries.
</para>
</listitem>

<listitem>
<para>
Prevent <command>DROP OWNED</command> from trying to drop whole databases or
tablespaces (&Aacute;lvaro Herrera)
</para>

<para>
For safety, ownership of these objects must be reassigned, not dropped.
</para>
</listitem>

<listitem>
<para>
Prevent misbehavior when a <symbol>RowExpr</symbol> or <symbol>XmlExpr</symbol>
is parse-analyzed twice (Andres Freund, Tom Lane)
</para>

<para>
This mistake could be user-visible in contexts such as
<literal>CREATE TABLE LIKE INCLUDING INDEXES</literal>.
</para>
</listitem>

<listitem>
<para>
Improve defenses against integer overflow in hashtable sizing
calculations (Jeff Davis)
</para>
</listitem>

<listitem>
<para>
Ensure that non-ASCII prompt strings are translated to the correct
code page on Windows (Alexander Law, Noah Misch)
</para>

<para>
This bug affected <application>psql</application> and some other client programs.
</para>
</listitem>

<listitem>
<para>
Fix possible crash in <application>psql</application>'s <command>\?</application> command
when not connected to a database (Meng Qingzhong)
</para>
</listitem>

<listitem>
<para>
Fix one-byte buffer overrun in <application>libpq</application>'s
<function>PQprintTuples</function> (Xi Wang)
</para>

<para>
This ancient function is not used anywhere by
<productname>PostgreSQL</productname> itself, but it might still be used by some
client code.
</para>
</listitem>

<listitem>
<para>
Rearrange configure's tests for supplied functions so it is not
fooled by bogus exports from libedit/libreadline (Christoph Berg)
</para>
</listitem>

<listitem>
<para>
Ensure Windows build number increases over time (Magnus Hagander)
</para>
</listitem>

<listitem>
<para>
Make <application>pgxs</application> build executables with the right
<literal>.exe</literal> suffix when cross-compiling for Windows
(Zoltan Boszormenyi)
</para>
</listitem>

<listitem>
<para>
Add new timezone abbreviation <literal>FET</literal> (Tom Lane)
</para>

<para>
This is now used in some eastern-European time zones.
</para>
</listitem>

</itemizedlist>

</sect2>
</sect1>

<sect1 id="release-8-3-22">
<title>Release 8.3.22</title>

Expand Down

0 comments on commit a39357a

Please sign in to comment.