From 67271c7b34f7cd8e768f5c0550779f1d3f88ac78 Mon Sep 17 00:00:00 2001 From: senke Date: Sun, 15 Feb 2026 14:47:31 +0100 Subject: [PATCH] =?UTF-8?q?chore:=20audit=202.8=20et=202.9=20=E2=80=94=20g?= =?UTF-8?q?itignore=20et=20Tokio?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 2.8: Mise à jour .gitignore - .turbo/ (cache Turborepo) - *.out (Go coverage, artefacts) - test-results/ et playwright-report/ (patterns globaux) 2.9: Alignement Tokio 1.0 → 1.35 - veza-common: dependencies + dev-dependencies - veza-stream-server/tools --- .gitignore | 4 ++++ AUDIT_TECHNIQUE_INTEGRAL_2026_02_15.md | 4 ++-- veza-common/Cargo.toml | 4 ++-- veza-stream-server/tools/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 8c2c69c13..5468d710c 100644 --- a/.gitignore +++ b/.gitignore @@ -51,12 +51,16 @@ Thumbs.db tmp/ temp/ .cache/ +.turbo/ coverage/ coverage-final.json ### Test artifacts *.test *.coverage +*.out +test-results/ +playwright-report/ ### Build / Bundles *.wasm diff --git a/AUDIT_TECHNIQUE_INTEGRAL_2026_02_15.md b/AUDIT_TECHNIQUE_INTEGRAL_2026_02_15.md index 9ca782dc7..af55637e4 100644 --- a/AUDIT_TECHNIQUE_INTEGRAL_2026_02_15.md +++ b/AUDIT_TECHNIQUE_INTEGRAL_2026_02_15.md @@ -669,8 +669,8 @@ veza/ | 2.5 | ~~Supprimer `cmd/modern-server/`~~ | **S** | **✅ Fait** — bascule vers cmd/api/main.go | | 2.6 | ~~Supprimer `pages/` directory legacy~~ | **M** | **✅ Fait** — migré vers `features/*/pages/` | | 2.7 | ~~Découper `config.go` (1 461 LOC)~~ | **M** | **✅ Fait** — séparé par domaine (env_helpers, db_init, redis_init, rabbitmq, rate_limit, cors, services_init, middlewares_init) | -| 2.8 | Gitignorer les fichiers `.out`, test results, `.turbo/` | **S** | Mettre à jour `.gitignore` | -| 2.9 | Aligner versions Tokio dans `veza-common` | **S** | 1.0 → 1.35 | +| 2.8 | ~~Gitignorer les fichiers `.out`, test results, `.turbo/`~~ | **S** | **✅ Fait** — .gitignore mis à jour | +| 2.9 | ~~Aligner versions Tokio dans `veza-common`~~ | **S** | **✅ Fait** — 1.0 → 1.35 (veza-common, stream-server/tools) | | 2.10 | Ajouter des tests d'intégration E2E pour les flows critiques | **L** | Auth, Upload, Purchase, Chat | ### Phase 3 — AMÉLIORATION & PRÉPARATION SCALE (6-12 semaines) diff --git a/veza-common/Cargo.toml b/veza-common/Cargo.toml index b9a47b817..8d9a353b7 100644 --- a/veza-common/Cargo.toml +++ b/veza-common/Cargo.toml @@ -29,7 +29,7 @@ regex = "1.0" lazy_static = "1.4" # Async runtime -tokio = { version = "1.0", features = ["full"] } +tokio = { version = "1.35", features = ["full"] } async-trait = "0.1" # Database @@ -65,7 +65,7 @@ lru = "0.12" [dev-dependencies] # Testing -tokio = { version = "1.0", features = ["full"] } +tokio = { version = "1.35", features = ["full"] } mockall = "0.12" tokio-test = "0.4" diff --git a/veza-stream-server/tools/Cargo.toml b/veza-stream-server/tools/Cargo.toml index f86204aa8..200f86444 100644 --- a/veza-stream-server/tools/Cargo.toml +++ b/veza-stream-server/tools/Cargo.toml @@ -29,7 +29,7 @@ rustfft = "6.2" apodize = "1.0" # Async utilities -tokio = { version = "1.0", features = ["full"] } +tokio = { version = "1.35", features = ["full"] } futures = "0.3" # Serialization