Commit 85587c2c authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

Merge branch 'release-1.4.8' into zf3

parents 19c1c639 2d322d39
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
Journal des modifications
=========================

1.4.8 (01/09/2020)
------------------

- Correction du nom de colonne ID_PERMANENT erroné dans le mapping de l'entité Fichier.
- Correction du path manquant pour l'upload.

1.4.7 (04/06/2020)
------------------

+10 −0
Original line number Diff line number Diff line
<?php
return [
    'unicaen-app' => [
        'app_infos' => [
            'version' => '1.4.8',
            'date' => '01/09/2020',
        ],
    ],
    'comment' => 'Fichier généré le 01/09/2020 à 10:06:39 avec /app/bump-version',
];
+19 −0
Original line number Diff line number Diff line
# Version 1.4.8

## 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.4.8 && \
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.
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
    </id>

    <field name="uuid" length="40" column="UUID" />
    <field name="idPermanent" column="ID_PERMANENT" nullable="true"/>
    <field name="idPermanent" column="PERMANENT_ID" nullable="true"/>
    <field name="nom" column="NOM"/>
    <field name="nomOriginal" column="NOM_ORIGINAL"/>
    <field name="taille" type="integer" column="TAILLE"/>
+3 −1
Original line number Diff line number Diff line
@@ -158,7 +158,9 @@ class FichierTheseService extends BaseService
                ->setVersion($version)
                ->setTypeMime($typeFichier)
                ->setNomOriginal($nomFichier)
                ->setTaille($tailleFichier);
                ->setTaille($tailleFichier)
                ->setPath($path)
            ;

            $fichierThese = new FichierThese();
            $fichierThese