[Rt-commit] rt branch 5.0/combine-search-and-count updated. rt-5.0.3-339-g17c8e00189
BPS Git Server
git at git.bestpractical.com
Mon Mar 27 19:33:24 UTC 2023
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 "rt".
The branch, 5.0/combine-search-and-count has been updated
via 17c8e0018980a40ddf6de1cdbddd754a2c40e0a7 (commit)
from 3601fd76d17c4a66de25c305eb2114f88be6ec9e (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 17c8e0018980a40ddf6de1cdbddd754a2c40e0a7
Author: Jim Brandt <jbrandt at bestpractical.com>
Date: Mon Mar 27 15:32:14 2023 -0400
Update DBD::SQLite dependency and document the change
A newer version is needed to run the new combined
count code for queries.
diff --git a/docs/UPGRADING-5.0 b/docs/UPGRADING-5.0
index 44af9fe041..7fc00ba4e3 100644
--- a/docs/UPGRADING-5.0
+++ b/docs/UPGRADING-5.0
@@ -574,6 +574,16 @@ We recommend using the "CustomRoles" section because individual top
level custom role entries like the "Manager" following "..." in
the above example will be removed in the future.
+=item * DBD::SQLite Dependency updated to 1.72
+
+We use the wonderful L<SQLite|https://www.sqlite.org> database for
+testing, although we don't recommend it for production RT installations.
+Updates in RT 5.0.4 require a new version of L<DBD::SQLite> and this will
+be checked during the normal C<make testdeps> step on upgrade if it is
+used based on your configuration. We do not test upgrades on SQLite
+databases, so if you are using SQLite in some way
+with your RT, make sure to take backups before upgrading.
+
=back
=cut
diff --git a/etc/cpanfile b/etc/cpanfile
index 0992469931..2ba7e663a4 100644
--- a/etc/cpanfile
+++ b/etc/cpanfile
@@ -172,7 +172,7 @@ feature 'pg' => sub {
};
feature 'sqlite' => sub {
- requires 'DBD::SQLite', '>= 1.00';
+ requires 'DBD::SQLite', '>= 1.72';
};
-----------------------------------------------------------------------
Summary of changes:
docs/UPGRADING-5.0 | 10 ++++++++++
etc/cpanfile | 2 +-
2 files changed, 11 insertions(+), 1 deletion(-)
hooks/post-receive
--
rt
More information about the rt-commit
mailing list