[galette-commits] [GIT] galette/galette.git branch master updated. 0.9.3-28-g496cb11 |
[ Thread Index |
Date Index
| More lists.galette.eu/commits Archives
]
- To: commits@xxxxxxxxxxxxxxxx
- Subject: [galette-commits] [GIT] galette/galette.git branch master updated. 0.9.3-28-g496cb11
- From: <git@xxxxxxxxxxxxx>
- Date: Thu, 13 Feb 2020 13:01:50 +0100
- Auto-submitted: auto-generated
This is an automated email from git. It was generated because a ref
change was pushed to the "galette/galette.git" repository.
The branch, master has been updated
via 496cb1191b9bb86febcfc5dad43d2004168c337c (commit)
via 34e2cbc1e7c6a26418662b10d474dfb011eaaada (commit)
via a0d47c6fe639921f76e8c23e390b6b5fec9e9749 (commit)
via e029b7d77db7fcedf8cfa5354a861d9349cac334 (commit)
via e25da5bac270235c74e59176df82b47c51024a6f (commit)
via b404c7b9aba9905bd8cdfc4f98bf7cd94cf14e12 (commit)
via 2545be65981097c54b84bdc754b7bbe607c56ec6 (commit)
via 7695512980402f0d469dc6ca61ad8d15807599e3 (commit)
via 7fe1edd21c4dec2d71afc3fe828605a25625fe6b (commit)
via 414b8541807719e7c75e2649043dbad158c4dad4 (commit)
via cc502824b8ee67c35905ec606cbdcabe0f9da186 (commit)
via 0c921c2d14b180ea2b0dfc34aa3034a699352a75 (commit)
via 3895c269ed3e917c9b25de33931f87bb0ea86f95 (commit)
via 214734db9a52a7696d873aede6b07f879039029a (commit)
via 4b5a869d089a59ee847d463873aac964e28e3323 (commit)
via 812d048a3621898d4c9f6b8c201d2bc4b3b32701 (commit)
via 21448adba0488e57f5aab839ec486cbba44272b2 (commit)
via b4ed7c317e7a1852c454663f1e77d2556cd1d260 (commit)
via 876957e37376859d3fa2c2a3785bae7f9b3bf6b5 (commit)
via 103a6db044f36b592283c956c1a959cb4024b794 (commit)
via 6efce46b3a8698d0bd6c8bcc7ac80e1263eed21e (commit)
via d1aee4a21970b75898fb36f3ae1b6a0133ef1041 (commit)
via 5da1db1a0bbdbf7df10f7be2e9cd964749ed1d84 (commit)
via 56fe6ef0538c0c3b54db8544ce0931669a146a72 (commit)
from 6b44fb4501e2a778add5140af89f47cc33202456 (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 496cb1191b9bb86febcfc5dad43d2004168c337c
Merge: 6b44fb4 34e2cbc
Author: Johan Cwiklinski <johan@xxxxxxxx>
Date: Thu Feb 13 13:01:10 2020 +0100
Merge branch 'hotfix/0.9.3.1'
-----------------------------------------------------------------------
Summary of changes:
.travis.yml | 3 +-
galette/cron/reminder.php | 35 +++-
galette/docs/CHANGES | 11 ++
galette/includes/dependencies.php | 5 +-
galette/includes/galette.inc.php | 11 +-
galette/includes/main.inc.php | 2 +-
galette/includes/routes/ajax.routes.php | 17 +-
galette/includes/routes/contributions.routes.php | 56 +-----
galette/includes/routes/management.routes.php | 30 ++++
galette/includes/routes/members.routes.php | 58 +------
galette/install/scripts/mysql.sql | 2 +-
galette/install/scripts/pgsql.sql | 35 +++-
galette/install/scripts/upgrade-to-0.931-mysql.sql | 4 +
galette/install/scripts/upgrade-to-0.931-pgsql.sql | 19 +++
galette/lib/Galette/Core/CheckModules.php | 3 +-
galette/lib/Galette/Core/Db.php | 43 ++++-
galette/lib/Galette/Core/GaletteMail.php | 15 ++
galette/lib/Galette/Core/Install.php | 2 +-
galette/lib/Galette/Core/Preferences.php | 1 -
galette/lib/Galette/DynamicFields/DynamicField.php | 33 +---
galette/lib/Galette/Entity/Adherent.php | 29 +++-
galette/lib/Galette/Entity/Entitled.php | 21 +--
galette/lib/Galette/Entity/I18nTrait.php | 49 +++---
galette/lib/Galette/Entity/PaymentType.php | 38 ++---
galette/lib/Galette/Entity/Texts.php | 5 +
galette/lib/Galette/Entity/Title.php | 4 +
galette/lib/Galette/Repository/Members.php | 44 +++++
galette/lib/Galette/Repository/PaymentTypes.php | 6 +
galette/lib/Galette/Repository/PdfModels.php | 6 +
galette/lib/Galette/Repository/Reminders.php | 4 +-
galette/lib/Galette/Repository/Titles.php | 5 +
galette/lib/Galette/Util/FakeData.php | 6 +-
galette/templates/default/ajouter_transaction.tpl | 2 +-
galette/templates/default/gestion_titres.tpl | 9 +-
galette/webroot/themes/default/galette.css | 3 +
tests/Galette/Core/tests/units/CheckModules.php | 6 +-
tests/Galette/Core/tests/units/Install.php | 31 ++--
.../tests/units/{Status.php => PaymentType.php} | 142 ++++++----------
tests/Galette/Entity/tests/units/Texts.php | 131 +++++++++++++++
.../tests/units/{SavedSeach.php => Title.php} | 110 ++++++------
.../Repository/tests/units/PaymentTypes.php | 154 +++++++++++++++++
tests/Galette/Repository/tests/units/PdfModels.php | 187 +++++++++++++++++++++
42 files changed, 950 insertions(+), 427 deletions(-)
create mode 100644 galette/install/scripts/upgrade-to-0.931-mysql.sql
create mode 100644 galette/install/scripts/upgrade-to-0.931-pgsql.sql
copy tests/Galette/Entity/tests/units/{Status.php => PaymentType.php} (50%)
create mode 100644 tests/Galette/Entity/tests/units/Texts.php
copy tests/Galette/Entity/tests/units/{SavedSeach.php => Title.php} (53%)
create mode 100644 tests/Galette/Repository/tests/units/PaymentTypes.php
create mode 100644 tests/Galette/Repository/tests/units/PdfModels.php
hooks/post-receive
--
galette/galette.git
--
Galette repositories commits - http://galette.eu
List documentation: https://listengine.tuxfamily.org/lists.galette.eu/commits/