This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a change to branch feature/CAMEL-23712-traceCustomIdOnly
in repository https://gitbox.apache.org/repos/asf/camel.git
discard 197c89f31233 CAMEL-23712: Fix camel-telemetry-dev tests for reduced
endpoint-sending spans
discard a97b00b0687d CAMEL-23712: Add traceCustomIdOnly option to only trace
processors with custom IDs
add 47844a5828be CAMEL-23709: Remove span collapsing hack from TUI now
that core tracer skips redundant PROCESS spans (#23861)
add 150d8725f45d CAMEL-23706: camel cmd span - Add trace-grouped view and
ASCII waterfall
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 1facf2c5e562 CAMEL-23712: Add traceCustomIdOnly option to only trace
processors with custom IDs
add 23b7fd634781 CAMEL-23712: Fix camel-telemetry-dev tests for reduced
endpoint-sending spans
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 (197c89f31233)
\
N -- N -- N refs/heads/feature/CAMEL-23712-traceCustomIdOnly
(23b7fd634781)
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 +++++++++++
.../management/ManagedNonManagedServiceTest.java | 2 +-
...edProducerRouteAddRemoveRegisterAlwaysTest.java | 2 +-
.../management/ManagedRouteAddRemoveTest.java | 2 +-
.../pages/jbang-commands/camel-jbang-cmd-span.adoc | 8 +-
.../Langchain4jAgentComponentBuilderFactory.java | 20 +
.../dsl/KeycloakEndpointBuilderFactory.java | 24 +
.../LangChain4jAgentEndpointBuilderFactory.java | 18 +
.../META-INF/camel-jbang-commands-metadata.json | 2 +-
.../core/commands/action/CamelSpanAction.java | 537 ++++++++++++++++++++-
.../dsl/jbang/core/commands/tui/SpansTab.java | 45 +-
29 files changed, 1545 insertions(+), 193 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