]> git.koha-community.org Git - koha.git/commit
Bug 31684: Plugin versions starting with a "v" cause unnecessary warnings
authorKyle M Hall <kyle@bywatersolutions.com>
Wed, 17 Mar 2021 14:44:31 +0000 (10:44 -0400)
committerLucas Gass <lucas@bywatersolutions.com>
Mon, 5 Dec 2022 21:06:13 +0000 (21:06 +0000)
commita88895d0b80f8a57d98d21c60ecad0139561aef0
treee53a938b483a918acb70f77cc6cb8073c4b083f6
parent251379247bce768c4d5d5bf0086f8d33ec99bb90
Bug 31684: Plugin versions starting with a "v" cause unnecessary warnings

Our code assumes that plugin version will be purely numeric ( e.g. 1.2.3 ) but many plugin authors ( including myself ) use the format "v1.2.3".
This causes warnings as we use a numeric comparison on the version numbers.
It could make sense to check for and strip any v's from the beginning of the version.

Test Plan:
1) Apply the first patch to set the test plugin's version to v1.01
2) prove t/db_dependent/Koha/Plugins/Plugins.t
3) Note the warnings and test failures
4) Apply this patch
5) prove t/db_dependent/Koha/Plugins/Plugins.t
6) All tests pass!

Signed-off-by: David Nind <david@davidnind.com>
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
(cherry picked from commit fd51a238c84b8e9ce5b0f276c4e35e287eb059da)

Signed-off-by: Lucas Gass <lucas@bywatersolutions.com>
Koha/Plugins/Base.pm