Chris Browne cbbrowne at lists.slony.info
Mon May 11 12:57:26 PDT 2009
Update of /home/cvsd/slony1/slony1-www/content
In directory main.slony.info:/tmp/cvs-serv12869/content

Modified Files:
	frontpage.txt news.txt 
Log Message:
Release of 2.0.2/1.2.16


Index: frontpage.txt
===================================================================
RCS file: /home/cvsd/slony1/slony1-www/content/frontpage.txt,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -d -r1.33 -r1.34
*** frontpage.txt	26 Feb 2009 16:31:02 -0000	1.33
--- frontpage.txt	11 May 2009 19:57:24 -0000	1.34
***************
*** 1,3 ****
--- 1,14 ----
  ---
+ Slony-I 2.0.2 Released
+ 
+ <P> See the "news" area for more details, including a copy of the
+ release notes.  This version fixes quite a number of issues found in
+ early use of version 2.0.
+ ---
+ Slony-I 1.2.16 Released
+ 
+ <P> See the "news" area for more details, including a copy of the
+ release notes.  This version fixes issues relating to FAILOVER.
+ ---
  Slony-I 2.0.1 Released
  

Index: news.txt
===================================================================
RCS file: /home/cvsd/slony1/slony1-www/content/news.txt,v
retrieving revision 1.56
retrieving revision 1.57
diff -C2 -d -r1.56 -r1.57
*** news.txt	30 Apr 2009 17:04:37 -0000	1.56
--- news.txt	11 May 2009 19:57:24 -0000	1.57
***************
*** 5,13 ****
  Chris Browne
  
! Slony-1 2.0.1 <a href="http://main.slony.info/downloads/2.0/source/slony1-2.0.1.tar.bz2">engine</a>
! <a href="http://main.slony.info/downloads/2.0/source/slony1-2.0.1-docs.tar.bz2">documentation</a>
  <br/>
! Slony-1 1.2.15 <a href="http://main.slony.info/downloads/1.2/source/slony1-1.2.15.tar.bz2">engine</a>
! <a href="http://main.slony.info/downloads/1.2/source/slony1-1.2.15-docs.tar.bz2">documentation</a>
  <br/>
  Slony-1 1.1.9 <a href="http://main.slony.info/downloads/1.1/source/slony1-1.1.9.tar.bz2">engine</a>
--- 5,13 ----
  Chris Browne
  
! Slony-1 2.0.2 <a href="http://main.slony.info/downloads/2.0/source/slony1-2.0.2.tar.bz2">engine</a>
! <a href="http://main.slony.info/downloads/2.0/source/slony1-2.0.2-docs.tar.bz2">documentation</a>
  <br/>
! Slony-1 1.2.16 <a href="http://main.slony.info/downloads/1.2/source/slony1-1.2.16.tar.bz2">engine</a>
! <a href="http://main.slony.info/downloads/1.2/source/slony1-1.2.16-docs.tar.bz2">documentation</a>
  <br/>
  Slony-1 1.1.9 <a href="http://main.slony.info/downloads/1.1/source/slony1-1.1.9.tar.bz2">engine</a>
***************
*** 15,18 ****
--- 15,97 ----
  
  ---
+ Slony-I 2.0.2 candidate released
+ http://main.slony.info/downloads/2.0/source/slony1-2.0.2.tar.bz2
+ 2009-05-08
+ Chris Browne
+ 
+ Version <a href=
+ "http://main.slony.info/downloads/2.0/source/slony1-2.0.2.tar.bz2">
+ slony1-2.0.2.tar.bz2 </a> has been released.
+ 
+ <p>Changes since 2.0.1 are as follows:
+ 
+ <ul>
+ <li> PostgreSQL 8.4 compatibility - src/backend/slony1_funcs.c needed to
+   #include "catalog/pg_type.h"; that is no longer implicitly included by
+   the SPI #include
+ 
+ <li> Fix bug #71 - config dump was failing on string entries that were NULL
+ 
+ <li> Fix bug #76 - REPAIR CONFIG could have collisions where, when we 
+   load a schema, one entry in sl_table already has an OID value
+   that incorrectly matches a value that another update is trying to
+   fix.
+ 
+ <P>  This would cause REPAIR CONFIG to fail.
+ 
+ <P>  Put in a query that updates the oids in sl_table and sl_sequence to
+   randomly selected values from pg_class that couldn't match (since
+   the values selected are from non-table/non-sequence objects)
+ 
+ <li> Updated release notes to indicate that 2.0 only supports PostgreSQL
+   8.3+
+ 
+ <li> Change to configure.ac to allow it to run on autoconf 2.63; there was
+   something unsuitable about SLONREL_VERSION processing
+ 
+ <li> Fixes to Makefile for admin guide
+ 
+ <li> Various fixes to admin guide material
+ 
+ <li> Added an extra test to Schema name test that validates that things
+   can operate properly even if the DB lacks a "public" schema
+ 
+ <li> Fixed bug in tools/start_slon.sh
+ 
+ <li> Fixed pathname substitutions in a couple of altperl scripts
+ 
+ <li> Add a test which validates that the cluster schema name is valid; 
+   pgAdminIII allowed setting up cluster names that slonik would refuse
+   to connect to.
+ 
+ <li> Revised regression tests to use SYNC/WAIT FOR EVENT instead of
+   queries that try to coordinate sl_status information with rather
+   less determinacy...
+ 
+ </ul>
+ ---
+ Slony-I 1.2.16 released
+ http://main.slony.info/downloads/1.2/source/slony1-1.2.16.tar.bz2
+ 2009-05-08
+ Chris Browne
+ 
+ Version <a href=
+ "http://main.slony.info/downloads/1.2/source/slony1-1.2.16.tar.bz2">
+ slony1-1.2.16.tar.bz2 </a> has been released.
+ 
+ Changes since 1.2.15:
+ <ul>
+ <li> Fix problems with failover:
+ <ul>
+ <li> Failover would fail (ERROR) where there is no path to backup node - change this to a WARNING so that failover can complete; admin will need to fix up paths later  </li>
+ <li> Failover apparently never supported failing over to nodes that were not directly subscribing to the failed node
+ Fixed some broken logic in failedNode()
+ <li> Fixed a problem where slonik cannot perform a failover if multiple origins
+ fail at once.
+ </ul></li>
+ <li> Fixed autoconf 2.63 incompatibility </li>
+ <li> Draw in latest documentation updates from 2.0 branch </li>
+ </ul>
+ ---
  Slony-I 2.0.2 release candidate released
  http://main.slony.info/downloads/2.0/source/slony1-2.0.2-rc.tar.bz2



More information about the Slony1-commit mailing list