diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a8b6a8f5ec5e58f375daeb35bcae5aedacc456b..8a6586706e511bcd064ca5f37fa399df5b8aa8a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ Journal des modifications ========================= +1.2.6 (15/10/2019) +------------------ + +### Corrections + +- L'envoi de mail concernant les résultats de thèses modifiés échouait à cause d'une erreur dans le chemin de la vue. + + 1.2.5 (04/10/2019) ------------------ diff --git a/config/autoload/version.global.php b/config/autoload/version.global.php index 83a6758a4e1fd77b75c2e7934752b1d2379e70a8..0b3d9484bcd384c45c3b43a759d3299160083945 100644 --- a/config/autoload/version.global.php +++ b/config/autoload/version.global.php @@ -2,9 +2,9 @@ return [ 'unicaen-app' => [ 'app_infos' => [ - 'version' => '1.2.5', - 'date' => '04/10/2019', + 'version' => '1.2.6', + 'date' => '15/10/2019', ], ], - 'comment' => 'Fichier généré le 04/10/2019 à 16:27:10 avec /home/gauthierb/workspace/sygal/bump-version', + 'comment' => 'Fichier généré le 15/10/2019 à 15:28:22 avec /home/gauthierb/workspace/sygal/bump-version', ]; diff --git a/doc/release-notes/v1.2.6.md b/doc/release-notes/v1.2.6.md new file mode 100644 index 0000000000000000000000000000000000000000..6b8460796a133416f30c809532a713f21de03733 --- /dev/null +++ b/doc/release-notes/v1.2.6.md @@ -0,0 +1,19 @@ +# Version 1.2.6 + +## 1. Sur le serveur d'application + +- Placez-vous dans le répertoire de l'application puis lancez la commande suivante +pour installer la nouvelle version : + +```bash +git fetch --tags && git checkout --force 1.2.6 && \ +bash ./install.sh +``` + +- Selon le moteur PHP que vous avez installé, rechargez le service, exemple : + - php7.0-fpm : `service php7.0-fpm reload` + - apache2-mod-php7.0 : `service apache2 reload` + +## 2. Dans la base de données + +Néant. diff --git a/module/Application/src/Application/Notification/CorrectionAttendueUpdatedNotification.php b/module/Application/src/Application/Notification/CorrectionAttendueUpdatedNotification.php index d4af37a8b44e5821d20b5001239be38529e55698..2b9c88c974b1fa2e8120a38bec89ef5479b25b0e 100644 --- a/module/Application/src/Application/Notification/CorrectionAttendueUpdatedNotification.php +++ b/module/Application/src/Application/Notification/CorrectionAttendueUpdatedNotification.php @@ -10,7 +10,7 @@ class CorrectionAttendueUpdatedNotification extends Notification { use TheseAwareTrait; - protected $templatePath = 'notif-depot-version-corrigee-attendu'; + protected $templatePath = 'application/these/mail/notif-depot-version-corrigee-attendu'; /** * Initialisation, préparation, etc. nécessaires avant de pouvoir envoyer la notification.