
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, main has been updated via d18e5107816dd44cbcde715814a78237a3bd7690 (commit) from da949267ad65c27c097f769710be308042b7166d (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 d18e5107816dd44cbcde715814a78237a3bd7690 Author: blake <blake@mobiusconsortium.org> Date: Wed May 21 14:10:02 2025 -0500 Port forward 3.13, 3.14 and 3.15 db upgrade scripts Signed-off-by: blake <blake@mobiusconsortium.org> diff --git a/Open-ILS/src/sql/Pg/version-upgrade/3.13.10-3.13.11-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/3.13.10-3.13.11-upgrade-db.sql new file mode 100644 index 0000000000..e34457f5f1 --- /dev/null +++ b/Open-ILS/src/sql/Pg/version-upgrade/3.13.10-3.13.11-upgrade-db.sql @@ -0,0 +1,9 @@ +--Upgrade Script for 3.13.10 to 3.13.11 +\set eg_version '''3.13.11''' +BEGIN; +INSERT INTO config.upgrade_log (version, applied_to) VALUES ('3.13.11', :eg_version); +COMMIT; + +-- Update auditor tables to catch changes to source tables. +-- Can be removed/skipped if there were no schema changes. +SELECT auditor.update_auditors(); diff --git a/Open-ILS/src/sql/Pg/version-upgrade/3.14.5-3.14.6-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/3.14.5-3.14.6-upgrade-db.sql new file mode 100644 index 0000000000..df954e640f --- /dev/null +++ b/Open-ILS/src/sql/Pg/version-upgrade/3.14.5-3.14.6-upgrade-db.sql @@ -0,0 +1,9 @@ +--Upgrade Script for 3.14.5 to 3.14.6 +\set eg_version '''3.14.6''' +BEGIN; +INSERT INTO config.upgrade_log (version, applied_to) VALUES ('3.14.6', :eg_version); +COMMIT; + +-- Update auditor tables to catch changes to source tables. +-- Can be removed/skipped if there were no schema changes. +SELECT auditor.update_auditors(); diff --git a/Open-ILS/src/sql/Pg/version-upgrade/3.15.0-3.15.1-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/3.15.0-3.15.1-upgrade-db.sql new file mode 100644 index 0000000000..ccffc6410e --- /dev/null +++ b/Open-ILS/src/sql/Pg/version-upgrade/3.15.0-3.15.1-upgrade-db.sql @@ -0,0 +1,9 @@ +--Upgrade Script for 3.15.0 to 3.15.1 +\set eg_version '''3.15.1''' +BEGIN; +INSERT INTO config.upgrade_log (version, applied_to) VALUES ('3.15.1', :eg_version); +COMMIT; + +-- Update auditor tables to catch changes to source tables. +-- Can be removed/skipped if there were no schema changes. +SELECT auditor.update_auditors(); ----------------------------------------------------------------------- Summary of changes: ...3.13.9-3.13.10-upgrade-db.sql => 3.13.10-3.13.11-upgrade-db.sql} | 6 +++--- .../{3.12.5-3.12.6-upgrade-db.sql => 3.14.5-3.14.6-upgrade-db.sql} | 6 +++--- .../{3.12.5-3.12.6-upgrade-db.sql => 3.15.0-3.15.1-upgrade-db.sql} | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) copy Open-ILS/src/sql/Pg/version-upgrade/{3.13.9-3.13.10-upgrade-db.sql => 3.13.10-3.13.11-upgrade-db.sql} (81%) copy Open-ILS/src/sql/Pg/version-upgrade/{3.12.5-3.12.6-upgrade-db.sql => 3.14.5-3.14.6-upgrade-db.sql} (72%) copy Open-ILS/src/sql/Pg/version-upgrade/{3.12.5-3.12.6-upgrade-db.sql => 3.15.0-3.15.1-upgrade-db.sql} (72%) hooks/post-receive -- Evergreen ILS