You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2023/11/09 13:06:03 UTC

(camel) branch main updated (0ab409543b7 -> 9f36c6cdcbc)

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


    from 0ab409543b7 Update known releases in catalog
     new 7fc55a71c97 CAMEL-20080: Improve 4.0.x migration guide
     new 9f36c6cdcbc Regen

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../others/examples/json/azure-schema-registry.json     |  1 +
 docs/components/modules/others/nav.adoc                 |  1 +
 .../modules/others/pages/azure-schema-registry.adoc     |  1 +
 .../modules/ROOT/pages/camel-4-migration-guide.adoc     | 17 ++++++++++++++++-
 4 files changed, 19 insertions(+), 1 deletion(-)
 create mode 120000 docs/components/modules/others/examples/json/azure-schema-registry.json
 create mode 120000 docs/components/modules/others/pages/azure-schema-registry.adoc


(camel) 02/02: Regen

Posted by da...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 9f36c6cdcbce763ce7f21f1fd570de585a8a5c33
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Nov 9 14:05:41 2023 +0100

    Regen
---
 docs/components/modules/others/examples/json/azure-schema-registry.json | 1 +
 docs/components/modules/others/nav.adoc                                 | 1 +
 docs/components/modules/others/pages/azure-schema-registry.adoc         | 1 +
 3 files changed, 3 insertions(+)

diff --git a/docs/components/modules/others/examples/json/azure-schema-registry.json b/docs/components/modules/others/examples/json/azure-schema-registry.json
new file mode 120000
index 00000000000..c51c3a160d4
--- /dev/null
+++ b/docs/components/modules/others/examples/json/azure-schema-registry.json
@@ -0,0 +1 @@
+../../../../../../components/camel-azure/camel-azure-schema-registry/src/generated/resources/azure-schema-registry.json
\ No newline at end of file
diff --git a/docs/components/modules/others/nav.adoc b/docs/components/modules/others/nav.adoc
index fd975c765b7..7c0864796dd 100644
--- a/docs/components/modules/others/nav.adoc
+++ b/docs/components/modules/others/nav.adoc
@@ -4,6 +4,7 @@
 * xref:others:index.adoc[Miscellaneous Components]
 ** xref:attachments.adoc[Attachments]
 ** xref:aws-xray.adoc[AWS XRay]
+** xref:azure-schema-registry.adoc[Azure Schema Registry]
 ** xref:cli-connector.adoc[CLI Connector]
 ** xref:cloudevents.adoc[Cloudevents]
 ** xref:csimple-joor.adoc[CSimple jOOR]
diff --git a/docs/components/modules/others/pages/azure-schema-registry.adoc b/docs/components/modules/others/pages/azure-schema-registry.adoc
new file mode 120000
index 00000000000..7ae097aef0a
--- /dev/null
+++ b/docs/components/modules/others/pages/azure-schema-registry.adoc
@@ -0,0 +1 @@
+../../../../../components/camel-azure/camel-azure-schema-registry/src/main/docs/azure-schema-registry.adoc
\ No newline at end of file


(camel) 01/02: CAMEL-20080: Improve 4.0.x migration guide

Posted by da...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 7fc55a71c97c292b758760ba057830fc4d561997
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Nov 9 14:05:29 2023 +0100

    CAMEL-20080: Improve 4.0.x migration guide
---
 .../modules/ROOT/pages/camel-4-migration-guide.adoc     | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/docs/user-manual/modules/ROOT/pages/camel-4-migration-guide.adoc b/docs/user-manual/modules/ROOT/pages/camel-4-migration-guide.adoc
index 479c8a8d300..8ef7de53067 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-4-migration-guide.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-4-migration-guide.adoc
@@ -98,8 +98,23 @@ All the `camel-test` modules that were JUnit 4.x based has been removed. All tes
 |===
 
 TIP: The `org.apache.camel.support.PluginHelper` gives easy access to various extensions and context plugins, that
-was available previously in Camel v3 directly from `CamelContext`. For example 
+was available previously in Camel v3 directly from `CamelContext`.
 
+NOTE: You can get access to the advanced APIs in `CamelContext` known as `ExtendedCamelContext` via `context.getCamelContextExtension()`.
+
+To get hold of `ManagedCamelContext` then you should use the following way:
+
+[source,java]
+----
+ManagedCamelContext managed = camelContext.getCamelContextExtension().getContextPlugin(ManagedCamelContext.class);
+----
+
+This can be done by many other advanced Camel features such as `RoutesLoader` or `ModelToXMLDumper`:
+
+[source,java]
+----
+RoutesLoader loader = camelContext.getCamelContextExtension().getContextPlugin(RoutesLoader.class);
+----
 
 == EIP Changes