[open-ils-commits] r16786 - in tags/rel_1_6_0_6: . Open-ILS/src/perlmods/OpenILS Open-ILS/src/sql/Pg (miker)
svn at svn.open-ils.org
svn at svn.open-ils.org
Tue Jun 22 22:25:28 EDT 2010
Author: miker
Date: 2010-06-22 22:25:26 -0400 (Tue, 22 Jun 2010)
New Revision: 16786
Added:
tags/rel_1_6_0_6/Open-ILS/src/sql/Pg/1.6.0.5-1.6.0.6-upgrade-db.sql
Modified:
tags/rel_1_6_0_6/ChangeLog
tags/rel_1_6_0_6/Open-ILS/src/perlmods/OpenILS/Application.pm
tags/rel_1_6_0_6/Open-ILS/src/sql/Pg/002.schema.config.sql
tags/rel_1_6_0_6/README
Log:
version bumping for release
Modified: tags/rel_1_6_0_6/ChangeLog
===================================================================
--- tags/rel_1_6_0_6/ChangeLog 2010-06-23 02:18:27 UTC (rev 16785)
+++ tags/rel_1_6_0_6/ChangeLog 2010-06-23 02:25:26 UTC (rev 16786)
@@ -1 +1,30 @@
-#ChangeLog
+2010-06-11 erickson
+
+ * added a number of info messages to the action/trigger runner and
+ server code. the messages provide summary data about what event
+ defs / hooks are being processed and when/if they complete or
+ timeout.
+
+2010-06-14 erickson
+
+ * removed unused method retrieved from method_lookup. apart from
+ being unused, the call was attempting to fetch a nonexistent
+ method ('auth' vs. 'authority') and hilarity ensued
+
+2010-06-18 dbs
+
+ * Backport security fix r16747 from trunk
+
+ 1. Disable fleshing for PCRUD. Otherwise fleshing would provide a
+ back door whereby a user could see stuff he has no permission to
+ see.
+
+ 2. For the id_list method: strip out the "flesh_fields" entry,
+ not the "flesh_columns" entry (which doesn't exist). This actually
+ makes no difference, but if we're going to do something useless, we
+ might as well do it right.
+
+2010-06-23 miker
+
+ * .: tagging 1.6.0.6, security release
+
Modified: tags/rel_1_6_0_6/Open-ILS/src/perlmods/OpenILS/Application.pm
===================================================================
--- tags/rel_1_6_0_6/Open-ILS/src/perlmods/OpenILS/Application.pm 2010-06-23 02:18:27 UTC (rev 16785)
+++ tags/rel_1_6_0_6/Open-ILS/src/perlmods/OpenILS/Application.pm 2010-06-23 02:25:26 UTC (rev 16786)
@@ -5,7 +5,7 @@
sub ils_version {
# version format is "x-y-z-p", for example "1-2-1-0" for Evergreen 1.2.1.0
- return "1-5";
+ return "1-6-0-6";
}
__PACKAGE__->register_method(
Modified: tags/rel_1_6_0_6/Open-ILS/src/sql/Pg/002.schema.config.sql
===================================================================
--- tags/rel_1_6_0_6/Open-ILS/src/sql/Pg/002.schema.config.sql 2010-06-23 02:18:27 UTC (rev 16785)
+++ tags/rel_1_6_0_6/Open-ILS/src/sql/Pg/002.schema.config.sql 2010-06-23 02:25:26 UTC (rev 16786)
@@ -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.6'); -- miker
CREATE TABLE config.bib_source (
id SERIAL PRIMARY KEY,
Added: tags/rel_1_6_0_6/Open-ILS/src/sql/Pg/1.6.0.5-1.6.0.6-upgrade-db.sql
===================================================================
--- tags/rel_1_6_0_6/Open-ILS/src/sql/Pg/1.6.0.5-1.6.0.6-upgrade-db.sql (rev 0)
+++ tags/rel_1_6_0_6/Open-ILS/src/sql/Pg/1.6.0.5-1.6.0.6-upgrade-db.sql 2010-06-23 02:25:26 UTC (rev 16786)
@@ -0,0 +1,21 @@
+/*
+ * 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.
+ *
+ */
+
+BEGIN;
+
+INSERT INTO config.upgrade_log(version) VALUES ('1.6.0.6');
+
+COMMIT;
Modified: tags/rel_1_6_0_6/README
===================================================================
--- tags/rel_1_6_0_6/README 2010-06-23 02:18:27 UTC (rev 16785)
+++ tags/rel_1_6_0_6/README 2010-06-23 02:25:26 UTC (rev 16786)
@@ -1,4 +1,4 @@
-README for Evergreen 1.6
+README for Evergreen 1.6.0.6
Installing prerequisites:
========================
@@ -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_6 install
This will install Evergreen, including example configuration files in
/openils/conf/ that you can use as templates for your own configuration files.
More information about the open-ils-commits
mailing list