This is an automated email from the ASF dual-hosted git repository. squakez pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit a0e5c5897b1e3188ee094678083452a5a78e93cb Author: Suhail Hany <[email protected]> AuthorDate: Sat Sep 19 14:38:34 2026 +0300 Fix #6829: drop the dev mode docs aside and the fsnotify direct dependency The dependencies.adoc sentence only made sense in terms of the dev loop, so remove it rather than reword it. pkg/util/sync was the only first-party user of fsnotify, so go mod tidy moves it to the indirect block, where viper still needs it. --- docs/modules/ROOT/pages/configuration/dependencies.adoc | 2 -- go.mod | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/modules/ROOT/pages/configuration/dependencies.adoc b/docs/modules/ROOT/pages/configuration/dependencies.adoc index c46699682..b1ea2f901 100644 --- a/docs/modules/ROOT/pages/configuration/dependencies.adoc +++ b/docs/modules/ROOT/pages/configuration/dependencies.adoc @@ -11,8 +11,6 @@ from("imap://[email protected]") Since the integration has a endpoint starting with the **"imap:" prefix**, Camel K is able to **automatically add the "camel-mail" component** to the list of required dependencies. The `seda:` endpoint belongs to `camel-core` that is automatically added to all integrations, so Camel K will not add additional dependencies for it. This dependency resolution mechanism is transparent to the user, that will just see the integration running. -Automatic resolution is also a nice feature while you iterate on an integration, because you are allowed to add all components you need *without editing the list of dependencies by hand*. - NOTE: Camel K won't be able to resolve automatically the dependencies when your routes specify dynamic URIs. [[dependencies-from-import]] diff --git a/go.mod b/go.mod index 3bc32c63f..d2dab6a8e 100644 --- a/go.mod +++ b/go.mod @@ -6,7 +6,6 @@ require ( dario.cat/mergo v1.0.2 github.com/Masterminds/semver v1.5.0 github.com/evanphx/json-patch v5.9.11+incompatible - github.com/fsnotify/fsnotify v1.10.1 github.com/gertd/go-pluralize v0.2.1 github.com/go-git/go-git/v5 v5.19.2 github.com/go-logr/logr v1.4.4 @@ -73,6 +72,7 @@ require ( github.com/emirpasic/gods v1.18.1 // indirect github.com/evanphx/json-patch/v5 v5.9.11 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect + github.com/fsnotify/fsnotify v1.10.1 // indirect github.com/fxamacker/cbor/v2 v2.9.3 // indirect github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect github.com/go-git/go-billy/v5 v5.9.0 // indirect
