From 675a1c5812cd8ba0421071c4d8ecabc3269e5755 Mon Sep 17 00:00:00 2001
From: Benoit Ducarouge <benoit.ducarouge@oslandia.com>
Date: Thu, 6 Feb 2025 16:52:05 +0100
Subject: [PATCH 1/2] update(statement): update authorized statement to fix
 IGNGPF-4536

---
 gpf_derivation_bdd/constants.py | 2 +-
 requirements/base-gpf.txt       | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gpf_derivation_bdd/constants.py b/gpf_derivation_bdd/constants.py
index 722c155..a41c026 100644
--- a/gpf_derivation_bdd/constants.py
+++ b/gpf_derivation_bdd/constants.py
@@ -17,11 +17,11 @@ ALLOWED_STATEMENTS = (
     ast.DropStmt,
     ast.DeleteStmt,
     ast.CreateSeqStmt,
-    ast.VacuumStmt,
     ast.CreateTableAsStmt,
     ast.ViewStmt,
     ast.TransactionStmt,
     ast.AlterSeqStmt,
+    ast.CreateTrigStmt,
 )
 
 OBJECT_TYPES = [
diff --git a/requirements/base-gpf.txt b/requirements/base-gpf.txt
index e58b135..f93c7ff 100644
--- a/requirements/base-gpf.txt
+++ b/requirements/base-gpf.txt
@@ -1,4 +1,4 @@
 # change index-url for next lines
 --extra-index-url https://gitlab.gpf-tech.ign.fr/api/v4/groups/55/-/packages/pypi/simple
 
-gpf-vector-checker==2.11.0
+gpf-vector-checker==2.11.1
-- 
GitLab


From 08e44da26624f7e297ed28df6c01ff6a9212503a Mon Sep 17 00:00:00 2001
From: Benoit Ducarouge <benoit.ducarouge@oslandia.com>
Date: Thu, 6 Feb 2025 17:08:49 +0100
Subject: [PATCH 2/2] add changelog

---
 CHANGELOG.md | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index eeb1ae5..5d4de63 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,9 @@
 The format is based on [Keep a Changelog](https://keepachangelog.com/), and this project adheres to [Semantic Versioning](https://semver.org/).
 
 ## [Unreleased]
+### Changed
+- IGNGPF-4536 : update authorized statement
+- IGNGPF-4536 up to gpf-vector-checker 2.11.1 : fix logs for wrong statement
 
 ## [1.3.0] - 2024-10-30
 ### Changed
-- 
GitLab