This is an automated email from the ASF dual-hosted git repository.
apupier pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 98802f5446da Fix upgrade guide which broke the removal part of 4.23
98802f5446da is described below
commit 98802f5446da159166bb28c1a1a5b6439f0d1c2c
Author: Aurélien Pupier <[email protected]>
AuthorDate: Mon Sep 14 14:04:30 2026 +0200
Fix upgrade guide which broke the removal part of 4.23
there was a note for a specific component new feature and part of
deprecation which was inserted in the middle of the removal of component
section
Signed-off-by: Aurélien Pupier <[email protected]>
---
.../ROOT/pages/camel-4x-upgrade-guide-4_23.adoc | 32 +++++++++++-----------
1 file changed, 16 insertions(+), 16 deletions(-)
diff --git
a/docs/user-manual/modules/ROOT/pages/camel-4x-upgrade-guide-4_23.adoc
b/docs/user-manual/modules/ROOT/pages/camel-4x-upgrade-guide-4_23.adoc
index de9321756174..56639735179d 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-4x-upgrade-guide-4_23.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-4x-upgrade-guide-4_23.adoc
@@ -175,22 +175,6 @@ The Maven archetype `camel-archetype-spring` was
deprecated in 4.17. Use spring
The maven plugin was deprecated in 4.12. The catalog now has built-in
suggestions (see `camel-catalog` below).
-=== camel-catalog - did-you-mean suggestions by default, camel-catalog-suggest
deprecated
-
-`CamelCatalog` now suggests the closest option names (and enum values) by
default when validation finds an
-unknown one, using the new edit-distance based
`org.apache.camel.catalog.impl.EditDistanceSuggestionStrategy`
-from `camel-core-catalog`. Before, suggestions were only produced when a
`SuggestionStrategy` had been set
-explicitly, which meant the CLI and the TUI validators never gave any. Code
that never wants suggestions can call
-`setSuggestionStrategy(null)`.
-
-The `camel-catalog-suggest` module with its phonetic (Soundex, commons-codec
based) `CatalogSuggestionStrategy`
-is deprecated: the class now delegates to the edit-distance strategy and the
module no longer depends on
-commons-codec. Remove the dependency and the `setSuggestionStrategy` call; the
default gives the same or better
-suggestions. Edit distance also changes what is suggested: a partly typed name
lists the names starting with it,
-and a name with a typo lists the names a few edits away, whereas Soundex
matched by the sound of the consonants
-(for `showE` the `log` component now suggests `showException`,
`showExchangeId` and `showExchangePattern`, no
-longer `showAll`).
-
==== camel-digitalocean
The component camel-digitalocean was deprecated in 4.21. The java library used
has been unmaintained for several years and there is no replacement.
@@ -1369,6 +1353,22 @@ level that includes all details from the invoked health
checks. To get the trace
camel.health.exposure-level = full
----
+=== camel-catalog - did-you-mean suggestions by default, camel-catalog-suggest
deprecated
+
+`CamelCatalog` now suggests the closest option names (and enum values) by
default when validation finds an
+unknown one, using the new edit-distance based
`org.apache.camel.catalog.impl.EditDistanceSuggestionStrategy`
+from `camel-core-catalog`. Before, suggestions were only produced when a
`SuggestionStrategy` had been set
+explicitly, which meant the CLI and the TUI validators never gave any. Code
that never wants suggestions can call
+`setSuggestionStrategy(null)`.
+
+The `camel-catalog-suggest` module with its phonetic (Soundex, commons-codec
based) `CatalogSuggestionStrategy`
+is deprecated: the class now delegates to the edit-distance strategy and the
module no longer depends on
+commons-codec. Remove the dependency and the `setSuggestionStrategy` call; the
default gives the same or better
+suggestions. Edit distance also changes what is suggested: a partly typed name
lists the names starting with it,
+and a name with a typo lists the names a few edits away, whereas Soundex
matched by the sound of the consonants
+(for `showE` the `log` component now suggests `showException`,
`showExchangeId` and `showExchangePattern`, no
+longer `showAll`).
+
=== camel-spring-boot
A set of starter defaults changed in this release. Each is a deliberate change
to what an application gets