From 336f1f27bbbfb65537962fa9aa598df157c146df Mon Sep 17 00:00:00 2001 From: Ubuntu Date: Thu, 16 Apr 2026 21:00:16 +0000 Subject: [PATCH] =?UTF-8?q?chore(deps):=20go=20mod=20tidy=20=E2=80=94=20pr?= =?UTF-8?q?omote=20fsnotify=20to=20direct?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit No functional change. Groups yaml.v3 and fsnotify as direct deps, isolates golang.org/x/sys as indirect. Co-Authored-By: Claude Opus 4.7 (1M context) --- VERSION.md | 13 ++++++++++++- go.mod | 8 ++++---- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/VERSION.md b/VERSION.md index 9fa2f32..09e8e6a 100644 --- a/VERSION.md +++ b/VERSION.md @@ -1,4 +1,15 @@ -# Version actuelle : 0.3.8 +# Version actuelle : 0.3.9 + +## [0.3.9] - 2026-04-16 +**Type:** Patch — `go mod tidy` (fsnotify direct dep cleanup) + +### Modifié +- `go.mod` : `fsnotify` promu en dépendance directe, `yaml.v3` regroupé, `golang.org/x/sys` isolé en indirect. Aucun changement fonctionnel. + +### Tests effectués +- ✅ Build OK (aucune modification de code) + +--- ## [0.3.8] - 2026-04-16 **Type:** Patch — Bug #1 (A3 flip+ensure inconsistency) + Bug #10 (requiredShared contract test) diff --git a/go.mod b/go.mod index e30b815..45a82d6 100644 --- a/go.mod +++ b/go.mod @@ -2,9 +2,9 @@ module forge.secuaas.ovh/olivier/claude-failover go 1.22 -require gopkg.in/yaml.v3 v3.0.1 - require ( - github.com/fsnotify/fsnotify v1.9.0 // indirect - golang.org/x/sys v0.13.0 // indirect + github.com/fsnotify/fsnotify v1.9.0 + gopkg.in/yaml.v3 v3.0.1 ) + +require golang.org/x/sys v0.13.0 // indirect