Commit 24084545 authored by Jean-Philippe Metivier's avatar Jean-Philippe Metivier
Browse files

Clean + Merge

parents c534a9c6 27372f2b
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
image: localhost:5000/unicaen-dev-php7.3-apache

stages:
  - tests
  - release
@@ -21,7 +19,9 @@ cache:

update-satis:
  stage: publish
  image: python:3.9
  script:
    - apt-get update && apt-get -y upgrade && apt-get -y install curl
    - curl https://gest.unicaen.fr/packagist/update

release_job:
+7 −0
Original line number Diff line number Diff line
Journal des modifications
=========================

6.3.0
-----
- Rattrapage des évolutions dans unicaen/auth : aides de vues User*
- Correction du .gitlab-ci.yml : l'utilisation d'une image python suffit pour la màj satis
- [FIX] HistoriqueListener : prise en compte nécessaire du paramètre de config 'user_entity_class'.
- [FIX] Popover affichant le formulaire de sélection du rôle : initialisation dédiée avec option 'sanitize' à true indispensable 

6.0.4 (21/03/2023)
-----
- Ajout du paramètre [display-user-info](config/unicaen-utilisateur.global.php.dist) qui permet d'afficher ou nonles affectations LDAP de l'utilisateur courant
+2 −2
Original line number Diff line number Diff line
@@ -8,8 +8,8 @@
        }
    ],
    "require": {
        "unicaen/app": ">=6.0",
        "unicaen/mail": ">=5.0"
        "unicaen/app": "^6.1",
        "unicaen/mail": "^6.1"
    },
    "require-dev": {
        "phpunit/phpunit": ">=3.7"
+17 −0
Original line number Diff line number Diff line
@@ -96,6 +96,13 @@ return [
                        UtilisateurPrivileges::UTILISATEUR_RECHERCHER,
                    ],
                ],
                [
                    'controller' => UtilisateurController::class,
                    'action' => [
                        'rechercher-interne',
                    ],
                    'roles' => [],
                ],
            ],
        ],
    ],
@@ -163,6 +170,16 @@ return [
                            ],
                        ],
                    ],
                    'rechercher-interne' => [
                        'type'          => Segment::class,
                        'options'       => [
                            'route'       => '/rechercher-interne',
                            'defaults'    => [
                                'controller' => UtilisateurController::class,
                                'action' => 'rechercher-interne',
                            ],
                        ],
                    ],
                    'rechercher-with-role' => [
                        'type'          => Segment::class,
                        'options'       => [
+1 −0
Original line number Diff line number Diff line
@@ -13,6 +13,7 @@ CREATE TABLE UNICAEN_UTILISATEUR_ROLE (
  PARENT_ID             NUMBER(*, 0),
  LDAP_FILTER           VARCHAR2(255),
  ACCESSIBLE_EXTERIEUR  NUMBER(1)       DEFAULT 1 NOT NULL,
  DISPLAYED             NUMBER(1)       DEFAULT 1 NOT NULL,
  CONSTRAINT PK_UNICAEN_UTILISATEUR_ROLE PRIMARY KEY (ID),
  CONSTRAINT UN_UNICAEN_UTILISATEUR_ROLE_ROLE UNIQUE (ROLE_ID),
  CONSTRAINT FK_UNICAEN_UTILISATEUR_ROLE_PARENT FOREIGN KEY (PARENT_ID) REFERENCES UNICAEN_UTILISATEUR_ROLE (ID) DEFERRABLE INITIALLY IMMEDIATE
Loading