[open-ils-commits] [GIT] Evergreen ILS branch master updated. 1fe8de72aee2c77d831906985772637a8298713e

Evergreen Git git at git.evergreen-ils.org
Wed Jul 3 11:50:23 EDT 2019


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, master has been updated
       via  1fe8de72aee2c77d831906985772637a8298713e (commit)
       via  d77897fcdd7b75d9a7b803500632b0a14259c097 (commit)
       via  ab99b8061e278842203f11a19e6c66874e78d795 (commit)
      from  7e57f346970004a671af3a524c84157e8a02ff53 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 1fe8de72aee2c77d831906985772637a8298713e
Author: Dan Wells <dbw2 at calvin.edu>
Date:   Wed Jul 3 11:49:47 2019 -0400

    Forward-port 3.3.2 upgrade script
    
    Signed-off-by: Dan Wells <dbw2 at calvin.edu>

diff --git a/Open-ILS/src/sql/Pg/version-upgrade/3.3.1-3.3.2-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/3.3.1-3.3.2-upgrade-db.sql
new file mode 100644
index 0000000000..0046ea00e4
--- /dev/null
+++ b/Open-ILS/src/sql/Pg/version-upgrade/3.3.1-3.3.2-upgrade-db.sql
@@ -0,0 +1,48 @@
+--Upgrade Script for 3.3.1 to 3.3.2
+\set eg_version '''3.3.2'''
+BEGIN;
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('3.3.2', :eg_version);
+
+SELECT evergreen.upgrade_deps_block_check('1164', :eg_version);
+
+INSERT INTO config.workstation_setting_type
+    (name, grp, datatype, label)
+VALUES (
+    'eg.grid.circ.patron.group_members', 'gui', 'object',
+    oils_i18n_gettext(
+    'eg.grid.circ.patron.group_members',
+    'Grid Config: circ.patron.group_members',
+    'cwst', 'label')
+);
+
+
+SELECT evergreen.upgrade_deps_block_check('1165', :eg_version);
+
+INSERT INTO config.org_unit_setting_type (name,label,grp,description,datatype)
+VALUES ('ui.patron.edit.au.dob.example',oils_i18n_gettext('ui.patron.edit.au.dob.example',
+        'Example dob field on patron registration', 'coust', 'label'),'gui',
+    oils_i18n_gettext('ui.patron.edit.au.dob.example',
+        'The Example for validation on the dob field in patron registration.', 'coust', 'description'),
+    'string');
+
+
+SELECT evergreen.upgrade_deps_block_check('1166', :eg_version);
+
+UPDATE config.org_unit_setting_type
+    SET description =
+'Define the time zone in which a library physically resides. Examples: America/Toronto, ' ||
+'America/Chicago, America/Los_Angeles, America/Vancouver, Europe/Prague. See Wikipedia for a ' ||
+'<a href="https://en.wikipedia.org/wiki/List_of_tz_database_time_zones" target="_blank">complete list</a> ' ||
+'(Note: Only use "canonical" timezones).'
+WHERE name = 'lib.timezone'
+AND description = 'Define the time zone in which a library physically resides';
+
+
+
+
+SELECT evergreen.upgrade_deps_block_check('1167', :eg_version);
+
+INSERT INTO config.workstation_setting_type (name,label,grp,datatype) VALUES ('eg.circ.bills.annotatepayment','Bills: Annotate Payment', 'circ', 'bool');
+
+
+COMMIT;

commit d77897fcdd7b75d9a7b803500632b0a14259c097
Author: Dan Wells <dbw2 at calvin.edu>
Date:   Wed Jul 3 11:47:51 2019 -0400

    Forward-port 3.2.7 upgrade script
    
    Signed-off-by: Dan Wells <dbw2 at calvin.edu>

diff --git a/Open-ILS/src/sql/Pg/version-upgrade/3.2.6-3.2.7-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/3.2.6-3.2.7-upgrade-db.sql
new file mode 100644
index 0000000000..8b67a98c6b
--- /dev/null
+++ b/Open-ILS/src/sql/Pg/version-upgrade/3.2.6-3.2.7-upgrade-db.sql
@@ -0,0 +1,48 @@
+--Upgrade Script for 3.2.6 to 3.2.7
+\set eg_version '''3.2.7'''
+BEGIN;
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('3.2.7', :eg_version);
+
+SELECT evergreen.upgrade_deps_block_check('1164', :eg_version);
+
+INSERT INTO config.workstation_setting_type
+    (name, grp, datatype, label)
+VALUES (
+    'eg.grid.circ.patron.group_members', 'gui', 'object',
+    oils_i18n_gettext(
+    'eg.grid.circ.patron.group_members',
+    'Grid Config: circ.patron.group_members',
+    'cwst', 'label')
+);
+
+
+SELECT evergreen.upgrade_deps_block_check('1165', :eg_version);
+
+INSERT INTO config.org_unit_setting_type (name,label,grp,description,datatype)
+VALUES ('ui.patron.edit.au.dob.example',oils_i18n_gettext('ui.patron.edit.au.dob.example',
+        'Example dob field on patron registration', 'coust', 'label'),'gui',
+    oils_i18n_gettext('ui.patron.edit.au.dob.example',
+        'The Example for validation on the dob field in patron registration.', 'coust', 'description'),
+    'string');
+
+
+SELECT evergreen.upgrade_deps_block_check('1166', :eg_version);
+
+UPDATE config.org_unit_setting_type
+    SET description =
+'Define the time zone in which a library physically resides. Examples: America/Toronto, ' ||
+'America/Chicago, America/Los_Angeles, America/Vancouver, Europe/Prague. See Wikipedia for a ' ||
+'<a href="https://en.wikipedia.org/wiki/List_of_tz_database_time_zones" target="_blank">complete list</a> ' ||
+'(Note: Only use "canonical" timezones).'
+WHERE name = 'lib.timezone'
+AND description = 'Define the time zone in which a library physically resides';
+
+
+
+
+SELECT evergreen.upgrade_deps_block_check('1167', :eg_version);
+
+INSERT INTO config.workstation_setting_type (name,label,grp,datatype) VALUES ('eg.circ.bills.annotatepayment','Bills: Annotate Payment', 'circ', 'bool');
+
+
+COMMIT;

commit ab99b8061e278842203f11a19e6c66874e78d795
Author: Dan Wells <dbw2 at calvin.edu>
Date:   Wed Jul 3 11:33:10 2019 -0400

    Forward-port 3.1.13 upgrade script
    
    Signed-off-by: Dan Wells <dbw2 at calvin.edu>

diff --git a/Open-ILS/src/sql/Pg/version-upgrade/3.1.12-3.1.13-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/3.1.12-3.1.13-upgrade-db.sql
new file mode 100644
index 0000000000..8a32ea2e3f
--- /dev/null
+++ b/Open-ILS/src/sql/Pg/version-upgrade/3.1.12-3.1.13-upgrade-db.sql
@@ -0,0 +1,5 @@
+--Upgrade Script for 3.1.12 to 3.1.13
+\set eg_version '''3.1.13'''
+BEGIN;
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('3.1.13', :eg_version);
+COMMIT;

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

Summary of changes:
 .../version-upgrade/3.1.12-3.1.13-upgrade-db.sql   |  5 +++
 .../Pg/version-upgrade/3.2.6-3.2.7-upgrade-db.sql  | 48 ++++++++++++++++++++++
 .../Pg/version-upgrade/3.3.1-3.3.2-upgrade-db.sql  | 48 ++++++++++++++++++++++
 3 files changed, 101 insertions(+)
 create mode 100644 Open-ILS/src/sql/Pg/version-upgrade/3.1.12-3.1.13-upgrade-db.sql
 create mode 100644 Open-ILS/src/sql/Pg/version-upgrade/3.2.6-3.2.7-upgrade-db.sql
 create mode 100644 Open-ILS/src/sql/Pg/version-upgrade/3.3.1-3.3.2-upgrade-db.sql


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list