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

svn at svn.open-ils.org svn at svn.open-ils.org
Fri Feb 4 15:19:18 EST 2011


Author: miker
Date: 2011-02-04 15:19:13 -0500 (Fri, 04 Feb 2011)
New Revision: 19393

Modified:
   tags/rel_1_6_2_2/ChangeLog
   tags/rel_1_6_2_2/Open-ILS/src/perlmods/OpenILS/Application.pm
   tags/rel_1_6_2_2/Open-ILS/src/sql/Pg/002.schema.config.sql
   tags/rel_1_6_2_2/README
Log:
version bumps

Modified: tags/rel_1_6_2_2/ChangeLog
===================================================================
--- tags/rel_1_6_2_2/ChangeLog	2011-02-04 20:06:22 UTC (rev 19392)
+++ tags/rel_1_6_2_2/ChangeLog	2011-02-04 20:19:13 UTC (rev 19393)
@@ -1 +1,90 @@
-#ChangeLog
+2011-01-11  phasefx
+
+	* fix regression with org selector when specifying ?ol= and the org
+	  unit hiding setting is unset
+
+2011-01-19  phasefx
+
+	* some interfaces (or at least org_unit_settings.js) was not
+	  infering the identifier value here. This helps the filtering org
+	  select dijit in that interface
+
+2011-01-19  miker
+
+	* Build and flatten a tree, correcting a sorting issue in some OU
+	  dropdowns.
+	  
+	  The previous code assumed that work org units would be delivered
+	  in hierarchical order, but alas, they are not. Thus, we build the
+	  hierarchy and then flatten it, sorting at each level.
+	  This will be non-fast with many work OUs, but the common case is
+	  a small set, which is not painful.
+	  
+	  Further improvement is warranted when the above proves false.
+
+2011-01-19  senator
+
+	* Backport r19214 from trunk
+	  
+	  Booking: Robert Soulliere spotted and fixed a bug in processing
+	  reservation-
+	  related overdue fines. See
+	  https://bugs.launchpad.net/evergreen/+bug/705061
+
+2011-01-20  senator
+
+	* Backport r19229 from trunk
+	  
+	  Booking: these lines don't belong; they were erroneously copied
+	  and pasted
+	  from a neighboring section of the file
+
+2011-01-20  phasefx
+
+	* don't offer to cancel related transits that have already
+	  completed when canceling holds. related to 19234, but data
+	  structure is different
+
+2011-01-24  gmc
+
+	* improve performance of multi-class searches
+	  
+	  Backport of trunk commit 18233.
+	  
+	  For as yet unknown reasons, Postgres sometimes uses
+	  nested loops instead of hash joins when joining subqueries
+	  in a multi-class bib search. This can result in searches
+	  such as "author:rowling title:harry potter" never completing.
+	  
+	  Removing the interior limit clause can both speed up the query
+	  and make search results more accurate when combining queries
+	  of two or more common words.
+	  
+	  Signed-off-by: Galen Charlton <gmc at esilibrary.com>
+
+2011-01-27  phasefx
+
+	* enable the checkbox column so we can delete hard due dates
+
+2011-02-01  dbwells
+
+	* Backport r19288 : Fix checkin backdate assumptions
+	  
+	  checkin_handle_backdate() did not properly interpret bill data
+	  (voided too much), so lets use void_overdues() instead
+
+2011-02-02  phasefx
+
+	* backport r19364 from trunk for stat cat field value removal in
+	  patron editor
+
+2011-02-04  dbwells
+
+	* Fix ModsParser.pm bug involving invalid ISBNs. See bug #697398.
+
+2011-02-04  miker
+
+	* upgrade scripts
+
+	* .: Tagging 1.6.2.2
+

Modified: tags/rel_1_6_2_2/Open-ILS/src/perlmods/OpenILS/Application.pm
===================================================================
--- tags/rel_1_6_2_2/Open-ILS/src/perlmods/OpenILS/Application.pm	2011-02-04 20:06:22 UTC (rev 19392)
+++ tags/rel_1_6_2_2/Open-ILS/src/perlmods/OpenILS/Application.pm	2011-02-04 20:19:13 UTC (rev 19393)
@@ -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-6";
+    return "1-6-2-2";
 }
 
 __PACKAGE__->register_method(

Modified: tags/rel_1_6_2_2/Open-ILS/src/sql/Pg/002.schema.config.sql
===================================================================
--- tags/rel_1_6_2_2/Open-ILS/src/sql/Pg/002.schema.config.sql	2011-02-04 20:06:22 UTC (rev 19392)
+++ tags/rel_1_6_2_2/Open-ILS/src/sql/Pg/002.schema.config.sql	2011-02-04 20:19:13 UTC (rev 19393)
@@ -51,7 +51,7 @@
     install_date    TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW()
 );
 
-INSERT INTO config.upgrade_log (version) VALUES ('1.6'); -- miker
+INSERT INTO config.upgrade_log (version) VALUES ('1.6.2.2');
 
 CREATE TABLE config.bib_source (
 	id		SERIAL	PRIMARY KEY,

Modified: tags/rel_1_6_2_2/README
===================================================================
--- tags/rel_1_6_2_2/README	2011-02-04 20:06:22 UTC (rev 19392)
+++ tags/rel_1_6_2_2/README	2011-02-04 20:19:13 UTC (rev 19393)
@@ -1,4 +1,4 @@
-README for Evergreen 1.6
+README for Evergreen 1.6.2.2
 
 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_2_2 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