From 80626ae95944e4f28bb458a7accea4268c336580 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Fri, 10 Oct 2025 08:36:41 +0200 Subject: [PATCH] Bug 40983: (QA follow-up) Add a (final) upgrade warn Content-Type: text/plain; charset=utf-8 Just a last wake up call. Signed-off-by: Marcel de Rooy --- installer/data/mysql/atomicupdate/bug_40983.pl | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 installer/data/mysql/atomicupdate/bug_40983.pl diff --git a/installer/data/mysql/atomicupdate/bug_40983.pl b/installer/data/mysql/atomicupdate/bug_40983.pl new file mode 100755 index 0000000000..2778816e3b --- /dev/null +++ b/installer/data/mysql/atomicupdate/bug_40983.pl @@ -0,0 +1,16 @@ +use Modern::Perl; +use Koha::Installer::Output qw(say_warning say_success say_info); + +return { + bug_number => "40983", + description => "Warn about removed pre-payload parameters of after_biblio_action hooks", + up => sub { + my ($args) = @_; + my ( $dbh, $out ) = @$args{qw(dbh out)}; + + say_warning( + $out, + "WARNING: A few deprecated parameters for after_biblio_action plugins have been removed now. If you still use them in your plugins, adjust your plugins right away to use the payload hash and prevent issues!" + ); + }, +}; -- 2.39.5