This is an automated email from git. It was generated because a ref change was pushed to the "galette/galette.git" repository.
The branch, develop has been updated via 52902b1632da3ef1ae1c74b0e62d5fe0d915800f (commit) via 5229634557647c4f441173aa32924591e22a424b (commit) via 3d7360371751ce947ee097a01d6d589cad1e4ebc (commit) via 521fb91874baf399c6f23ecb448abc3d4cf51377 (commit) via eb315b39470e73398f978644f48fe81341032549 (commit) via 798e83f3a757a8c1c39be83127ce9e6d3cd62adc (commit) via e36fa98574d3f0a6ae7321349a70e128e8280a25 (commit) via 6c9d0e7d0265e5fb9270d9ad93910c9568d51e13 (commit) via bbdc9a8a5077922380da6bbcaaf62a4042210ac7 (commit) via 3fbf998b4b59557a9a48d49e73b00748e92fa5d7 (commit) via fefe549ff5a10a67a2e0ba08dd17edbddf50930e (commit) from 809fcdf15e8c1eb27588bf514becfc4d6c531d8b (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 52902b1632da3ef1ae1c74b0e62d5fe0d915800f Author: Johan Cwiklinski <jo...@x-tnd.be> Date: Sat Nov 6 11:24:14 2021 +0100 Validate password after other data have been populated commit 5229634557647c4f441173aa32924591e22a424b Author: Johan Cwiklinski <jo...@x-tnd.be> Date: Sat Nov 6 11:09:51 2021 +0100 Fix "dead" code commit 3d7360371751ce947ee097a01d6d589cad1e4ebc Author: Johan Cwiklinski <jo...@x-tnd.be> Date: Sat Nov 6 10:05:36 2021 +0100 Check MySQL warning in tests suite commit 521fb91874baf399c6f23ecb448abc3d4cf51377 Author: Johan Cwiklinski <jo...@x-tnd.be> Date: Sat Nov 6 06:57:07 2021 +0100 Throw errors commit eb315b39470e73398f978644f48fe81341032549 Author: Johan Cwiklinski <jo...@x-tnd.be> Date: Sat Nov 6 07:11:37 2021 +0100 Non logged cannot see contributions or transactions commit 798e83f3a757a8c1c39be83127ce9e6d3cd62adc Author: Johan Cwiklinski <jo...@x-tnd.be> Date: Wed Nov 3 07:35:01 2021 +0100 lower is done in addPersonalInformation commit e36fa98574d3f0a6ae7321349a70e128e8280a25 Author: Johan Cwiklinski <jo...@x-tnd.be> Date: Tue Nov 2 21:06:49 2021 +0100 No longer look for saved searches duplicates commit 6c9d0e7d0265e5fb9270d9ad93910c9568d51e13 Author: Johan Cwiklinski <jo...@x-tnd.be> Date: Tue Nov 2 20:19:18 2021 +0100 Handle null instead of required strings null case on date filtering null calling mb_substr commit bbdc9a8a5077922380da6bbcaaf62a4042210ac7 Author: Johan Cwiklinski <jo...@x-tnd.be> Date: Tue Nov 2 12:47:34 2021 +0100 Patch laminas for php 8.1 commit 3fbf998b4b59557a9a48d49e73b00748e92fa5d7 Author: Johan Cwiklinski <jo...@x-tnd.be> Date: Tue Nov 2 12:28:08 2021 +0100 Display errors during tests See https://github.com/atoum/atoum/issues/879 commit fefe549ff5a10a67a2e0ba08dd17edbddf50930e Author: Johan Cwiklinski <jo...@x-tnd.be> Date: Fri Sep 24 11:04:54 2021 +0200 Add php 8.1 to tests suite ----------------------------------------------------------------------- Summary of changes: .github/workflows/ci-linux.yml | 2 +- galette/composer.json | 3 +- galette/includes/galette.inc.php | 4 +- galette/lib/Galette/Core/Db.php | 17 +++++++ galette/lib/Galette/Core/History.php | 16 ++++--- galette/lib/Galette/Core/Links.php | 11 +++-- galette/lib/Galette/Core/Login.php | 2 +- galette/lib/Galette/Core/MailingHistory.php | 19 ++++---- galette/lib/Galette/Entity/Adherent.php | 22 ++++++--- galette/lib/Galette/Entity/Contribution.php | 54 +++++++++++++--------- galette/lib/Galette/Entity/ContributionsTypes.php | 8 ++-- galette/lib/Galette/Entity/DynamicFieldsHandle.php | 2 +- galette/lib/Galette/Entity/Entitled.php | 19 ++++---- galette/lib/Galette/Entity/FieldsCategories.php | 11 +++-- galette/lib/Galette/Entity/FieldsConfig.php | 15 +++--- galette/lib/Galette/Entity/Group.php | 19 ++++---- galette/lib/Galette/Entity/ImportModel.php | 12 ++--- galette/lib/Galette/Entity/ListsConfig.php | 12 ++--- galette/lib/Galette/Entity/PaymentType.php | 5 +- .../lib/Galette/Entity/PdfAdhesionFormModel.php | 8 ++-- galette/lib/Galette/Entity/PdfContribution.php | 6 +-- galette/lib/Galette/Entity/PdfModel.php | 8 ++-- galette/lib/Galette/Entity/Reminder.php | 8 ++-- galette/lib/Galette/Entity/SavedSearch.php | 47 +++++-------------- galette/lib/Galette/Entity/Status.php | 8 ++-- galette/lib/Galette/Entity/Texts.php | 6 +-- galette/lib/Galette/Entity/Title.php | 9 ++-- galette/lib/Galette/Entity/Transaction.php | 39 +++++++++++++--- galette/lib/Galette/Filters/ContributionsList.php | 3 ++ galette/lib/Galette/Repository/Contributions.php | 8 ++-- galette/lib/Galette/Repository/Groups.php | 7 ++- galette/lib/Galette/Repository/Members.php | 8 ++-- galette/lib/Galette/Repository/PaymentTypes.php | 7 +-- galette/lib/Galette/Repository/SavedSearches.php | 14 +++--- galette/lib/Galette/Util/Password.php | 14 +++--- patches/laminas-php81.patch | 11 +++++ .../Controllers/tests/units/PdfController.php | 18 +++++++- tests/Galette/Core/tests/units/CheckModules.php | 15 ++++++ tests/Galette/Core/tests/units/Db.php | 29 +++++++++++- tests/Galette/Core/tests/units/History.php | 38 +-------------- tests/Galette/Core/tests/units/I18n.php | 20 +++++++- tests/Galette/Core/tests/units/Install.php | 19 +++++++- tests/Galette/Core/tests/units/L10n.php | 11 +++-- tests/Galette/Core/tests/units/Links.php | 9 ++-- tests/Galette/Core/tests/units/Logo.php | 18 +++++++- tests/Galette/Core/tests/units/Password.php | 18 +++++++- tests/Galette/Core/tests/units/Picture.php | 20 +++++++- tests/Galette/Core/tests/units/Plugins.php | 17 ++++++- tests/Galette/Core/tests/units/Preferences.php | 18 +++++++- tests/Galette/Core/tests/units/PrintLogo.php | 18 +++++++- .../Galette/DynamicFields/tests/units/Boolean.php | 4 +- .../DynamicFields/tests/units/Separator.php | 4 +- tests/Galette/Entity/tests/units/Adherent.php | 6 +-- tests/Galette/Entity/tests/units/Contribution.php | 35 ++++---------- tests/Galette/Entity/tests/units/FieldsConfig.php | 4 +- tests/Galette/Entity/tests/units/ListsConfig.php | 11 +++-- tests/Galette/Entity/tests/units/PaymentType.php | 11 +++-- tests/Galette/Entity/tests/units/PdfModel.php | 12 +++-- tests/Galette/Entity/tests/units/SavedSeach.php | 17 +++++-- tests/Galette/Entity/tests/units/Status.php | 11 +++-- tests/Galette/Entity/tests/units/Title.php | 11 +++-- tests/Galette/Entity/tests/units/Transaction.php | 12 ++--- tests/Galette/IO/tests/units/CsvIn.php | 12 +++-- tests/Galette/IO/tests/units/News.php | 4 +- tests/Galette/Middleware/tests/unit/CheckAcls.php | 4 +- tests/Galette/Repository/tests/units/Members.php | 12 +++-- .../Repository/tests/units/PaymentTypes.php | 11 +++-- tests/Galette/Repository/tests/units/PdfModels.php | 11 +++-- tests/Galette/Repository/tests/units/Reminders.php | 11 +++-- tests/Galette/Util/tests/units/Password.php | 7 ++- tests/Galette/Util/tests/units/Telemetry.php | 8 +++- tests/GaletteTestCase.php | 37 +++++++++++++-- tests/GaletteUpdate/Core/tests/units/Install.php | 18 +++++++- 73 files changed, 632 insertions(+), 373 deletions(-) create mode 100644 patches/laminas-php81.patch hooks/post-receive -- galette/galette.git -- Galette repositories commits - http://galette.eu List documentation: https://listengine.tuxfamily.org/lists.galette.eu/commits/