[Trad] [svn:pgfr] r1470 - in traduc/branches/bv747/manuel: . ref

admin at listes.postgresql.fr admin at listes.postgresql.fr
Sam 13 Mar 15:33:59 CET 2010


Author: gleu
Date: 2010-03-13 15:33:58 +0100 (Sat, 13 Mar 2010)
New Revision: 1470

Modified:
   traduc/branches/bv747/manuel/ref/psql-ref.sgml
   traduc/branches/bv747/manuel/release-7.4.sgml
   traduc/branches/bv747/manuel/runtime.sgml
   traduc/branches/bv747/manuel/version.sgml
Log:
Mise ?\195?\160 jour en version 7.4.28.


Modified: traduc/branches/bv747/manuel/ref/psql-ref.sgml
===================================================================
--- traduc/branches/bv747/manuel/ref/psql-ref.sgml	2010-03-13 14:22:03 UTC (rev 1469)
+++ traduc/branches/bv747/manuel/ref/psql-ref.sgml	2010-03-13 14:33:58 UTC (rev 1470)
@@ -688,7 +688,7 @@
 	<tip>
 	 <para>
 	  Pour afficher votre répertoire courant, utilisez
-	  <literal>\!pwd</literal>.
+	  <literal>\! pwd</literal>.
 	 </para>
 	</tip>
        </listitem>

Modified: traduc/branches/bv747/manuel/release-7.4.sgml
===================================================================
--- traduc/branches/bv747/manuel/release-7.4.sgml	2010-03-13 14:22:03 UTC (rev 1469)
+++ traduc/branches/bv747/manuel/release-7.4.sgml	2010-03-13 14:33:58 UTC (rev 1470)
@@ -1,6 +1,125 @@
 <!-- $PostgreSQL: pgsql/doc/src/sgml/release-7.4.sgml,v 1.1.10.3 2009-09-03 22:14:41 tgl Exp $ -->
 <!-- See header comment in release.sgml about typical markup -->
 
+ <sect1 id="release-7-4-28">
+  <title>Release 7.4.28</title>
+
+  <note>
+  <title>Release date</title>
+  <simpara>2010-03-15</simpara>
+  </note>
+
+  <para>
+   This release contains a variety of fixes from 7.4.27.
+   For information about new features in the 7.4 major release, see
+   <xref linkend="release-7-4"/>.
+  </para>
+
+  <para>
+   The <productname>PostgreSQL</productname> community will stop releasing updates
+   for the 7.4.X release series in July 2010.
+   Users are encouraged to update to a newer release branch soon.
+  </para>
+
+  <sect2>
+   <title>Migration to Version 7.4.28</title>
+
+   <para>
+    A dump/restore is not required for those running 7.4.X.
+    However, if you are upgrading from a version earlier than 7.4.26,
+    see the release notes for 7.4.26.
+   </para>
+
+  </sect2>
+
+  <sect2>
+   <title>Changes</title>
+
+   <itemizedlist>
+
+    <listitem>
+     <para>
+      Add new configuration parameter <varname>ssl_renegotiation_limit</varname> to
+      control how often we do session key renegotiation for an SSL connection
+      (Magnus)
+     </para>
+
+     <para>
+      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.
+     </para>
+    </listitem>
+
+    <listitem>
+     <para>
+      Make <function>substring()</function> for <type>bit</type> types treat any negative
+      length as meaning <quote>all the rest of the string</quote> (Tom)
+     </para>
+
+     <para>
+      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).
+     </para>
+    </listitem>
+
+    <listitem>
+     <para>
+      Fix some cases of pathologically slow regular expression matching (Tom)
+     </para>
+    </listitem>
+
+    <listitem>
+     <para>
+      When reading <filename>pg_hba.conf</filename> and related files, do not treat
+      <literal>@something</literal> as a file inclusion request if the <literal>@</literal>
+      appears inside quote marks; also, never treat <literal>@</literal> by itself
+      as a file inclusion request (Tom)
+     </para>
+
+     <para>
+      This prevents erratic behavior if a role or database name starts with
+      <literal>@</literal>.  If you need to include a file whose path name
+      contains spaces, you can still do so, but you must write
+      <literal>@"/path to/file"</literal> rather than putting the quotes around
+      the whole construct.
+     </para>
+    </listitem>
+
+    <listitem>
+     <para>
+      Prevent infinite loop on some platforms if a directory is named as
+      an inclusion target in <filename>pg_hba.conf</filename> and related files
+      (Tom)
+     </para>
+    </listitem>
+
+    <listitem>
+     <para>
+      Ensure PL/Tcl initializes the Tcl interpreter fully (Tom)
+     </para>
+
+     <para>
+      The only known symptom of this oversight is that the Tcl
+      <literal>clock</literal> command misbehaves if using Tcl 8.5 or later.
+     </para>
+    </listitem>
+
+    <listitem>
+     <para>
+      Prevent crash in <filename>contrib/dblink</filename> when too many key
+      columns are specified to a <function>dblink_build_sql_*</function> function
+      (Rushabh Lathia, Joe Conway)
+     </para>
+    </listitem>
+
+   </itemizedlist>
+
+  </sect2>
+ </sect1>
+
  <sect1 id="release-7-4-27">
   <title>Release 7.4.27</title>
 

Modified: traduc/branches/bv747/manuel/runtime.sgml
===================================================================
--- traduc/branches/bv747/manuel/runtime.sgml	2010-03-13 14:22:03 UTC (rev 1469)
+++ traduc/branches/bv747/manuel/runtime.sgml	2010-03-13 14:33:58 UTC (rev 1470)
@@ -765,6 +765,36 @@
      </varlistentry>
 
      <varlistentry>
+      <term><varname>ssl_renegotiation_limit</varname> (<type>int</type>)</term>
+      <indexterm>
+       <primary>paramètre de configuration <varname>ssl_renegotiation_limit</varname></primary>
+      </indexterm>
+      <listitem>
+       <para>
+        Indique la quantité de données pouvant transiter sur une connexion
+        en <acronym>SSL</acronym> avant qu'une renégotiation de la session ne
+        survienne. La renégotiation de la session diminue le risque d'analyse
+        du chiffrement lorsque de gros volumes de données sont envoyées mais
+        cela a un coût important pour les performances. Les données émises et
+        réceptionnées sont prises en compte lors de la vérification de la
+        limite. Si ce paramètre est à 0, la renégotiation est désactivée. La
+        valeur par défaut est de <literal>512 Mo</literal>.
+       </para>
+       <note>
+        <para>
+         Les bibliothèques SSL antérieures à novembre 2009 ne sont pas
+         sécurisées lors de l'utilisation de la renégotiation SSL à cause d'une
+         faille dans le protocole SSL. Pour corriger rapidement cette faille,
+         certains fournisseurs de la bibliothèque ont proposé des bibliothèques
+         SSL ne disposant plus de la fonctionnalité de renégotiation. Si une de
+         ces bibliothèques sont utilisées sur le serveur ou sur le client, la
+         renégotiation SSL doit être désactivée.
+        </para>
+       </note>
+      </listitem>
+     </varlistentry>
+
+     <varlistentry>
       <term><varname>password_encryption</varname> (<type>boolean</type>)</term>
       <listitem>
        <para>

Modified: traduc/branches/bv747/manuel/version.sgml
===================================================================
--- traduc/branches/bv747/manuel/version.sgml	2010-03-13 14:22:03 UTC (rev 1469)
+++ traduc/branches/bv747/manuel/version.sgml	2010-03-13 14:33:58 UTC (rev 1470)
@@ -1,2 +1,2 @@
-<!entity version "7.4.27">
+<!entity version "7.4.28">
 <!entity majorversion "7.4">



Plus d'informations sur la liste de diffusion Trad