[open-ils-commits] [GIT] Evergreen ILS branch tags/rel_2_1_3b created. 39b5be4ce2bb3a7c67bbfc167571e0e429125e9e

Evergreen Git git at git.evergreen-ils.org
Thu Sep 13 13:45:06 EDT 2012


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, tags/rel_2_1_3b has been created
        at  39b5be4ce2bb3a7c67bbfc167571e0e429125e9e (commit)

- Log -----------------------------------------------------------------
commit 39b5be4ce2bb3a7c67bbfc167571e0e429125e9e
Author: Dan Scott <dscott at laurentian.ca>
Date:   Thu Sep 13 13:08:52 2012 -0400

    Bump README for 2.1.3a release
    
    Signed-off-by: Dan Scott <dscott at laurentian.ca>

diff --git a/README b/README
index 61decb8..0b89a3e 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
-README for Evergreen 2.1.3
-==========================
+README for Evergreen 2.1.3a
+===========================
 
 Preamble: referenced user accounts
 ----------------------------------
@@ -38,8 +38,8 @@ the following commands as the *user* Linux account:
 
 [source, bash]
 ------------------------------------------------------------------------------
-wget -c http://evergreen-ils.org/downloads/Evergreen-ILS-2.1.3.tar.gz
-tar xzf Evergreen-ILS-2.1.3.tar.gz
+wget -c http://evergreen-ils.org/downloads/Evergreen-ILS-2.1.3a.tar.gz
+tar xzf Evergreen-ILS-2.1.3a.tar.gz
 ------------------------------------------------------------------------------
 
 Preamble: Developer instructions

commit e5a0bc8a04c44b11fa8cf3eee3d44f124a723f24
Author: Dan Scott <dscott at laurentian.ca>
Date:   Thu Sep 13 12:47:32 2012 -0400

    rel_2_1 does not have a config.upgrade_log.applied_to column
    
    Thanks to Michael Peters for running into & reporting this problem when
    attempting to upgrade from 2.1.2 to 2.1.3!
    
    Fix the version upgrade script.
    
    Signed-off-by: Dan Scott <dscott at laurentian.ca>

diff --git a/Open-ILS/src/sql/Pg/version-upgrade/2.1.2-2.1.3-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/2.1.2-2.1.3-upgrade-db.sql
index bec59a4..8ee3b86 100644
--- a/Open-ILS/src/sql/Pg/version-upgrade/2.1.2-2.1.3-upgrade-db.sql
+++ b/Open-ILS/src/sql/Pg/version-upgrade/2.1.2-2.1.3-upgrade-db.sql
@@ -1,6 +1,6 @@
 --Upgrade Script for 2.1.2 to 2.1.3
 BEGIN;
-INSERT INTO config.upgrade_log (version, applied_to) VALUES ('2.1.3', :eg_version);
+INSERT INTO config.upgrade_log (version) VALUES ('2.1.3');
 -- Evergreen DB patch 0722.schema.acq-po-state-constraint.sql
 --
 
@@ -10,8 +10,8 @@ ALTER TABLE acq.purchase_order ADD CONSTRAINT valid_po_state
     CHECK (state IN ('new','pending','on-order','received','cancelled'));
 
 
-INSERT INTO config.upgrade_log (version, applied_to) VALUES ('0725', :eg_version); -- gmcharlt/denials
-INSERT INTO config.upgrade_log (version, applied_to) VALUES ('0726', :eg_version); -- denials
+INSERT INTO config.upgrade_log (version) VALUES ('0725'); -- gmcharlt/denials
+INSERT INTO config.upgrade_log (version) VALUES ('0726'); -- denials
 
 CREATE OR REPLACE FUNCTION evergreen.maintain_901 () RETURNS TRIGGER AS $func$
 use strict;

commit c84fdf6a7dd6a0385021ff9fdc3b3be159d90eb9
Author: Dan Scott <dscott at laurentian.ca>
Date:   Thu Sep 13 12:46:23 2012 -0400

    rel_2_1 does not have a config.upgrade_log.applied_to column
    
    Thanks to Michael Peters for running into & reporting this problem when
    attempting to upgrade from 2.1.2 to 2.1.3!
    
    Fix the base scripts and schema creation.
    
    Signed-off-by: Dan Scott <dscott at laurentian.ca>

diff --git a/Open-ILS/src/sql/Pg/002.schema.config.sql b/Open-ILS/src/sql/Pg/002.schema.config.sql
index 414ca5c..f017f70 100644
--- a/Open-ILS/src/sql/Pg/002.schema.config.sql
+++ b/Open-ILS/src/sql/Pg/002.schema.config.sql
@@ -57,8 +57,8 @@ CREATE TABLE config.upgrade_log (
     install_date    TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW()
 );
 
-INSERT INTO config.upgrade_log (version, applied_to) VALUES ('0726', :eg_version); -- denials
-INSERT INTO config.upgrade_log (version, applied_to) VALUES ('2.1.3', :eg_version);
+INSERT INTO config.upgrade_log (version) VALUES ('0726'); -- denials
+INSERT INTO config.upgrade_log (version) VALUES ('2.1.3');
 
 CREATE TABLE config.bib_source (
 	id		SERIAL	PRIMARY KEY,
diff --git a/Open-ILS/src/sql/Pg/upgrade/0725.schema.fix_maintain_901_regex.sql b/Open-ILS/src/sql/Pg/upgrade/0725.schema.fix_maintain_901_regex.sql
index 2b0c206..bdf8e66 100644
--- a/Open-ILS/src/sql/Pg/upgrade/0725.schema.fix_maintain_901_regex.sql
+++ b/Open-ILS/src/sql/Pg/upgrade/0725.schema.fix_maintain_901_regex.sql
@@ -1,6 +1,6 @@
 BEGIN;
 
-INSERT INTO config.upgrade_log (version, applied_to) VALUES ('0725', :eg_version); -- gmcharlt/denials
+INSERT INTO config.upgrade_log (version) VALUES ('0725'); -- gmcharlt/denials
 
 CREATE OR REPLACE FUNCTION evergreen.maintain_901 () RETURNS TRIGGER AS $func$
 use strict;
diff --git a/Open-ILS/src/sql/Pg/upgrade/0726.schema.fix_maintain_901_regex.sql b/Open-ILS/src/sql/Pg/upgrade/0726.schema.fix_maintain_901_regex.sql
index 2cd5c0d..534fab0 100644
--- a/Open-ILS/src/sql/Pg/upgrade/0726.schema.fix_maintain_901_regex.sql
+++ b/Open-ILS/src/sql/Pg/upgrade/0726.schema.fix_maintain_901_regex.sql
@@ -1,6 +1,6 @@
 BEGIN;
 
-INSERT INTO config.upgrade_log (version, applied_to) VALUES ('0726', :eg_version); -- denials
+INSERT INTO config.upgrade_log (version) VALUES ('0726'); -- denials
 
 CREATE OR REPLACE FUNCTION evergreen.maintain_901 () RETURNS TRIGGER AS $func$
 use strict;

-----------------------------------------------------------------------


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list