From f1e24794e614727bbbb375c44bca52a25a4577b2 Mon Sep 17 00:00:00 2001 From: Colin Maudry Date: Thu, 22 Jan 2026 18:04:29 +0100 Subject: [PATCH 1/4] =?UTF-8?q?M=C3=A0j=20changelog=202.4.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3235bf..f2611ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ - Amélioration du référencement Web (sitemap, titres, descriptions) ([#50](https://github.com/ColinMaudry/decp.info/issues/50)) - Possibilité dans les champs non-numériques de filtrer le texte selon son début ou sa fin (`text*` et `*text`) - Ajout d'une table des matières dans la page [À propos](https://decp.infi/a-propos) ([#36](https://github.com/ColinMaudry/decp.info/issues/36)) +- Désactivation du bloquage des robot d'agents de LLM (robots.txt) ##### 2.3.1 (16 janvier 2026) From 1ba78fe8df1edc8dc8cd6aba1799d0ee02c86ac2 Mon Sep 17 00:00:00 2001 From: Colin Maudry Date: Thu, 22 Jan 2026 18:17:26 +0100 Subject: [PATCH 2/4] =?UTF-8?q?M=C3=A0j=20changelog=202.4.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f2611ef..3416422 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ #### 2.4.0 - Site à peu près utilisable sur petit écran (smartphone) ([#63](https://github.com/ColinMaudry/decp.info/issues/63)) +- Ajout de nouvelles statistiques dans [/statistiques](https://decp.info/statistiques) (stats par année, doublons par source) - Amélioration du référencement Web (sitemap, titres, descriptions) ([#50](https://github.com/ColinMaudry/decp.info/issues/50)) - Possibilité dans les champs non-numériques de filtrer le texte selon son début ou sa fin (`text*` et `*text`) - Ajout d'une table des matières dans la page [À propos](https://decp.infi/a-propos) ([#36](https://github.com/ColinMaudry/decp.info/issues/36)) From 8002bd711a249099fdb7627c35646a1948d7611e Mon Sep 17 00:00:00 2001 From: Colin Maudry Date: Thu, 22 Jan 2026 18:32:27 +0100 Subject: [PATCH 3/4] =?UTF-8?q?Gestion=20des=20colonnes=20absentes=20du=20?= =?UTF-8?q?sch=C3=A9ma?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils.py b/src/utils.py index a5eff2d..65c8c9c 100644 --- a/src/utils.py +++ b/src/utils.py @@ -364,6 +364,7 @@ def setup_table_columns( print(dff[column_id].head()) continue column_name = column_id + column_object = {"title": column_name, "description": ""} column = { "name": column_name, From c9fc2a01fc28b2cbf410a6664d07f43eb0fdd797 Mon Sep 17 00:00:00 2001 From: Colin Maudry Date: Thu, 22 Jan 2026 18:36:25 +0100 Subject: [PATCH 4/4] Changelog 2.4.1 --- CHANGELOG.md | 6 +++++- README.md | 2 +- pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3416422..ef3aa24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ -#### 2.4.0 +##### 2.4.1 (22 janvier 2026) + +- Meilleure gestion des colonnes absentes du schéma + +#### 2.4.0 (22 janvier 2026) - Site à peu près utilisable sur petit écran (smartphone) ([#63](https://github.com/ColinMaudry/decp.info/issues/63)) - Ajout de nouvelles statistiques dans [/statistiques](https://decp.info/statistiques) (stats par année, doublons par source) diff --git a/README.md b/README.md index 12eb33b..323ce94 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # decp.info -> v2.4.0 +> v2.4.1 > Outil d'exploration et de téléchargement des données essentielles de la commande publique. => [decp.info](https://decp.info) diff --git a/pyproject.toml b/pyproject.toml index c0b847a..331fd6a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "decp.info" description = "Interface d'exploration et d'analyse des marchés publics français." -version = "2.4.0" +version = "2.4.1" requires-python = ">= 3.10" authors = [ { name = "Colin Maudry", email = "colin@colmo.tech" }