Commit 4b4311eb authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

Merge branch 'release-1.4.8'

parents 5c15b5f5 2d322d39
Loading
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)
------------------

+3 −3
Original line number Diff line number Diff line
@@ -2,9 +2,9 @@
return [
    'unicaen-app' => [
        'app_infos' => [
            'version' => '1.4.7',
            'date' => '04/06/2020',
            'version' => '1.4.8',
            'date' => '01/09/2020',
        ],
    ],
    'comment' => 'Fichier généré le 04/06/2020 à 14:52:11 avec /app/bump-version',
    '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"/>