[open-ils-commits] r18783 - in tags/rel_1_6_0_10: . Open-ILS/src/perlmods/OpenILS Open-ILS/src/sql/Pg (miker)

svn at svn.open-ils.org svn at svn.open-ils.org
Thu Nov 18 10:57:58 EST 2010


Author: miker
Date: 2010-11-18 10:57:56 -0500 (Thu, 18 Nov 2010)
New Revision: 18783

Added:
   tags/rel_1_6_0_10/Open-ILS/src/sql/Pg/1.6.0.9-1.6.0.10-upgrade-db.sql
Modified:
   tags/rel_1_6_0_10/ChangeLog
   tags/rel_1_6_0_10/Open-ILS/src/perlmods/OpenILS/Application.pm
   tags/rel_1_6_0_10/Open-ILS/src/sql/Pg/002.schema.config.sql
   tags/rel_1_6_0_10/README
Log:
Bump version numbers and add an upgrade script

Modified: tags/rel_1_6_0_10/ChangeLog
===================================================================
--- tags/rel_1_6_0_10/ChangeLog	2010-11-18 15:47:45 UTC (rev 18782)
+++ tags/rel_1_6_0_10/ChangeLog	2010-11-18 15:57:56 UTC (rev 18783)
@@ -1 +1,40 @@
-#ChangeLog
+2010-11-10  gmc
+
+	* do not use TRUNCATE when refreshing
+	  reporter.materialized_simple_record
+	  
+	  Previous behavior would break Slony replication after doing a
+	  bib load. Since a deletion is slower than a truncate, if you're
+	  not using Slony replication, you may prefer to truncate rmsr
+	  prior to calling
+	  reporter.enable_materialized_simple_record_trigger.
+	  
+	  Signed-off-by: Galen Charlton <gmc at esilibrary.com>
+
+2010-11-15  miker
+
+	* Reverting and extending r18472 to correct implementation thinko
+
+2010-11-15  dbs
+
+	* asset.uri needs a seed entry for queries of its ID values
+	  
+	  To fix a problem with ingesting URIs, Ingest.pm was changed to
+	  reflect
+	  the maximum asset.uri.id value rather than the
+	  asset.call_number.id
+	  value. However, with no entries in asset.uri, the query returned
+	  a
+	  NULL object which broke ingest entirely. Adding a seed entry
+	  avoids
+	  this problem.
+
+2010-11-18  erickson
+
+	* back-porting 17292: added custom internal_id handler to SIP
+	  patron module
+
+2010-11-18  miker
+
+	* .: Tagging 1.6.0.10
+

Modified: tags/rel_1_6_0_10/Open-ILS/src/perlmods/OpenILS/Application.pm
===================================================================
--- tags/rel_1_6_0_10/Open-ILS/src/perlmods/OpenILS/Application.pm	2010-11-18 15:47:45 UTC (rev 18782)
+++ tags/rel_1_6_0_10/Open-ILS/src/perlmods/OpenILS/Application.pm	2010-11-18 15:57:56 UTC (rev 18783)
@@ -6,7 +6,7 @@
 sub ils_version {
     # version format is "x-y-z-p", for example "1-2-1-0" for Evergreen 1.2.1.0
     # For branches, format is "x-y-z"
-    return "1-6-0";
+    return "1-6-0-10";
 }
 
 __PACKAGE__->register_method(

Modified: tags/rel_1_6_0_10/Open-ILS/src/sql/Pg/002.schema.config.sql
===================================================================
--- tags/rel_1_6_0_10/Open-ILS/src/sql/Pg/002.schema.config.sql	2010-11-18 15:47:45 UTC (rev 18782)
+++ tags/rel_1_6_0_10/Open-ILS/src/sql/Pg/002.schema.config.sql	2010-11-18 15:57:56 UTC (rev 18783)
@@ -51,7 +51,7 @@
     install_date    TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW()
 );
 
-INSERT INTO config.upgrade_log (version) VALUES ('1.6.0.4'); -- dbs
+INSERT INTO config.upgrade_log (version) VALUES ('1.6.0.10');
 
 CREATE TABLE config.bib_source (
 	id		SERIAL	PRIMARY KEY,

Added: tags/rel_1_6_0_10/Open-ILS/src/sql/Pg/1.6.0.9-1.6.0.10-upgrade-db.sql
===================================================================
--- tags/rel_1_6_0_10/Open-ILS/src/sql/Pg/1.6.0.9-1.6.0.10-upgrade-db.sql	                        (rev 0)
+++ tags/rel_1_6_0_10/Open-ILS/src/sql/Pg/1.6.0.9-1.6.0.10-upgrade-db.sql	2010-11-18 15:57:56 UTC (rev 18783)
@@ -0,0 +1,17 @@
+/*
+ * Copyright (C) 2010  Equinox Software, Inc.
+ * Mike Rylander <miker at esilibrary.com>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ */
+
+INSERT INTO config.upgrade_log(version) VALUES ('1.6.0.10');

Modified: tags/rel_1_6_0_10/README
===================================================================
--- tags/rel_1_6_0_10/README	2010-11-18 15:47:45 UTC (rev 18782)
+++ tags/rel_1_6_0_10/README	2010-11-18 15:57:56 UTC (rev 18783)
@@ -1,11 +1,11 @@
-README for Evergreen 1.6
+README for Evergreen 1.6.0.10
 
 Installing prerequisites:
 ========================
 Evergreen has a number of prerequisite packages that must be installed
 before you can successfully configure, compile, and install Evergreen.
 
-1. Begin by installing the most recent version of OpenSRF (1.1 or later).
+1. Begin by installing the most recent version of OpenSRF (1.2 or later).
 You can download OpenSRF releases from
 http://evergreen-ils.org/downloads
 
@@ -40,7 +40,7 @@
 Once you have configured and compiled Evergreen, issue the following
 command as the root user to install Evergreen:
 
-make STAFF_CLIENT_BUILD_ID=rel_1_6_0_0 install
+make STAFF_CLIENT_BUILD_ID=rel_1_6_0_10 install
 
 This will install Evergreen, including example configuration files in
 /openils/conf/ that you can use as templates for your own configuration files.
@@ -59,9 +59,9 @@
 files into the correct directory, adjusting the version number to match the
 version of the Dojo Toolkit that you downloaded:
 
-wget http://download.dojotoolkit.org/release-1.3.2/dojo-release-1.3.2.tar.gz
-tar -C /openils/var/web/js -xzf dojo-release-1.3.2.tar.gz
-cp -r /openils/var/web/js/dojo-release-1.3.2/* /openils/var/web/js/dojo/.
+wget http://download.dojotoolkit.org/release-1.3.3/dojo-release-1.3.3.tar.gz
+tar -C /openils/var/web/js -xzf dojo-release-1.3.3.tar.gz
+cp -r /openils/var/web/js/dojo-release-1.3.3/* /openils/var/web/js/dojo/.
 
 Change ownership of the Evergreen files:
 =======================================



More information about the open-ils-commits mailing list