This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a change to branch fix/CAMEL-23715
in repository https://gitbox.apache.org/repos/asf/camel.git
discard 72bf2d840651 CAMEL-23715: Enrich Simple language catalog with
AI-friendly metadata
discard d599df1a020c CAMEL-23715: Improve simple docs - add examples for
exception, routeId, exchangeId, properties, and more
discard 1babdf1171b0 CAMEL-23715: Improve simple language docs with more
inline examples
add f58d63b9f4da CAMEL-23642: camel-langchain4j-agent - support jsonSchema
endpoint pr… (#23793)
add 85110f566255 CAMEL-23454: camel-keycloak: Add token revocation and
session logout operations
add 667c3fbb1dec CAMEL-23680: Update JMX service count after
GroupVariableRepository addition
add ed9eb9674b5a CAMEL-23709: Update micrometer-observability tests for
EndpointSending span reduction
add 0c3a6a941b87 chore: skip vanish animation for explicitly stopped
processes in TUI
add 632587d779ab chore: fix swapped key hints in example browser popup
add 009cc191f8ec CAMEL-23715: Improve simple language docs with more
inline examples
add a9dba19a5b0f CAMEL-23715: Improve simple docs - add examples for
exception, routeId, exchangeId, properties, and more
add f9639253917f CAMEL-23715: Enrich Simple language catalog with
AI-friendly metadata
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (72bf2d840651)
\
N -- N -- N refs/heads/fix/CAMEL-23715 (f9639253917f)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.../apache/camel/catalog/components/keycloak.json | 32 +--
.../catalog/components/langchain4j-agent.json | 20 +-
.../langchain4j/agent/api/AbstractAgent.java | 36 +++
.../agent/LangChain4jAgentComponentConfigurer.java | 6 +
.../LangChain4jAgentConfigurationConfigurer.java | 6 +
.../agent/LangChain4jAgentEndpointConfigurer.java | 6 +
.../agent/LangChain4jAgentEndpointUriFactory.java | 3 +-
.../langchain4j/agent/langchain4j-agent.json | 20 +-
.../src/main/docs/langchain4j-agent-component.adoc | 90 +++----
.../agent/LangChain4jAgentConfiguration.java | 19 ++
.../agent/LangChain4jAgentProducer.java | 75 ++++++
.../LangChain4jAgentStructuredOutputIT.java | 94 +++++--
.../LangChain4jAgentStructuredOutputTest.java | 104 ++++++++
.../apache/camel/component/keycloak/keycloak.json | 32 +--
.../src/main/docs/keycloak-component.adoc | 103 +++++++-
.../component/keycloak/KeycloakConstants.java | 6 +
.../component/keycloak/KeycloakOperations.java | 6 +
.../camel/component/keycloak/KeycloakProducer.java | 141 +++++++++++
.../keycloak/KeycloakProducerRevocationIT.java | 279 +++++++++++++++++++++
.../observability/BaggageInjectionTest.java | 7 +-
.../observability/BaggageSettingTest.java | 5 +-
.../observability/EnableProcessorsTest.java | 7 +-
.../micrometer/observability/SpanBeanTest.java | 7 +-
.../observability/SpanCustomizationTest.java | 7 +-
.../observability/SpanInjectionTest.java | 7 +-
.../management/ManagedNonManagedServiceTest.java | 2 +-
...edProducerRouteAddRemoveRegisterAlwaysTest.java | 2 +-
.../management/ManagedRouteAddRemoveTest.java | 2 +-
.../Langchain4jAgentComponentBuilderFactory.java | 20 ++
.../dsl/KeycloakEndpointBuilderFactory.java | 24 ++
.../LangChain4jAgentEndpointBuilderFactory.java | 18 ++
.../dsl/jbang/core/commands/tui/ActionsPopup.java | 4 +-
.../dsl/jbang/core/commands/tui/CamelMonitor.java | 8 +-
33 files changed, 1033 insertions(+), 165 deletions(-)
create mode 100644
components/camel-ai/camel-langchain4j-agent/src/test/java/org/apache/camel/component/langchain4j/agent/integration/LangChain4jAgentStructuredOutputTest.java
create mode 100644
components/camel-keycloak/src/test/java/org/apache/camel/component/keycloak/KeycloakProducerRevocationIT.java