This is an automated email from the ASF dual-hosted git repository.
JiriOndrusek pushed a change to branch camel-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
discard 3e28d5f262 chore(extensions): observability default to prometheus
native format
discard b5929e7fe5 feat(extensions): micrometer support log on shutdown format
omit a7d615c5fe Upgrade Camel to 4.23.0-SNAPSHOT
add 29b1955609 Fix #4472: Support XSLT includes in native mode
add 1bd64ee87f Fixes #8858. Add test coverage for openai tool calls,
agentic loop, and audio transcription
add 680cb5fe44 Align container image versions with camel-test-infra 4.22.0
add aab1023f55 Set ai-tool & mcp-server extensions to preview status as
per camel component metadata
add 08e529d84d Align dev.langchain4j dependencies with Quarkus LangChain4j
1.13.0
add 6fca91f8ee Ensure camel-quarkus-examples aggregator pom.xml version is
set correctly for the next dev iteration
new 4fc69dd645 Upgrade Camel to 4.23.0-SNAPSHOT
new 41f32e1673 Fixed salesforce test module
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 (3e28d5f262)
\
N -- N -- N refs/heads/camel-main (41f32e1673)
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.
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:
docs/antora.yml | 2 +-
.../pages/contributor-guide/release-guide.adoc | 5 +-
.../ROOT/pages/reference/extensions/ai-tool.adoc | 4 +-
.../reference/extensions/langchain4j-agent.adoc | 6 +
.../pages/reference/extensions/mcp-server.adoc | 4 +-
.../pages/reference/extensions/micrometer.adoc | 6 -
.../ROOT/pages/reference/extensions/xslt.adoc | 4 +-
extensions-support/langchain4j/runtime/pom.xml | 5 +
...angChain4jMcpServerDefinitionSubstitutions.java | 123 +++++++++++
extensions/ai-tool/runtime/pom.xml | 1 +
.../main/resources/META-INF/quarkus-extension.yaml | 2 +-
.../runtime/src/main/doc/limitations.adoc | 1 +
extensions/mcp-server/runtime/pom.xml | 1 +
.../main/resources/META-INF/quarkus-extension.yaml | 2 +-
.../micrometer/CamelMicrometerConfig.java | 8 -
.../micrometer/CamelMicrometerRecorder.java | 4 +-
.../src/main/resources/application.properties | 3 +-
extensions/xslt/deployment/pom.xml | 6 +
.../xslt/deployment/BuildTimeUriResolver.java | 47 ++++-
.../component/xslt/deployment/XsltProcessor.java | 1 +
.../xslt/deployment/BuildTimeUriResolverTest.java | 59 ++++++
.../deployment/src/test/resources/xslt/leaf.xsl | 13 +-
.../src/test/resources/xslt/nested-include.xsl | 6 +-
.../src/test/resources/xslt/nested/mid.xsl | 6 +-
.../src/test/resources/xslt/nested/parent.xsl | 6 +-
.../xslt/runtime/src/main/doc/configuration.adoc | 4 +-
.../src/main/resources/application.properties | 2 +-
.../camel/quarkus/component/xml/it/XsltTest.java | 1 -
.../quarkus/component/milvus/it/MilvusTest.java | 2 +-
.../component/milvus/it/MilvusTestResource.java | 3 +
integration-tests/openai/pom.xml | 17 ++
.../component/openai/it/OpenaiResource.java | 24 +++
.../quarkus/component/openai/it/OpenaiRoutes.java | 15 ++
.../quarkus/component/openai/it/OpenaiTools.java} | 7 +-
.../it/{OpenaiChatIT.java => OpenaiAudioIT.java} | 2 +-
.../component/openai/it/OpenaiAudioTest.java | 79 +++++++
.../component/openai/it/OpenaiChatTest.java | 26 +++
.../openai/src/test/resources/audio/test-audio.wav | Bin 0 -> 44 bytes
...tions-b2c3d4e5-0000-0000-0000-000000000001.json | 18 ++
...step1-c3d4e5f6-0000-0000-0000-000000000001.json | 26 +++
...step2-c3d4e5f6-0000-0000-0000-000000000002.json | 28 +++
...calls-a1b2c3d4-0000-0000-0000-000000000001.json | 23 ++
pom.xml | 46 ++--
poms/bom/src/main/generated/flattened-full-pom.xml | 235 +++++++++++----------
.../src/main/generated/flattened-reduced-pom.xml | 20 +-
.../generated/flattened-reduced-verbose-pom.xml | 20 +-
poms/build-parent-it/pom.xml | 8 +
47 files changed, 716 insertions(+), 215 deletions(-)
create mode 100644
extensions-support/langchain4j/runtime/src/main/java/org/apache/camel/quarkus/component/support/langchain4j/graal/LangChain4jMcpServerDefinitionSubstitutions.java
create mode 100644
extensions/langchain4j-agent/runtime/src/main/doc/limitations.adoc
create mode 100644
extensions/xslt/deployment/src/test/java/org/apache/camel/quarkus/component/xslt/deployment/BuildTimeUriResolverTest.java
copy integration-tests/saxon/src/test/resources/myinput.xml =>
extensions/xslt/deployment/src/test/resources/xslt/leaf.xsl (84%)
copy integration-tests/datasonnet/src/main/resources/payload.xml =>
extensions/xslt/deployment/src/test/resources/xslt/nested-include.xsl (85%)
copy integration-tests/datasonnet/src/main/resources/payload.xml =>
extensions/xslt/deployment/src/test/resources/xslt/nested/mid.xsl (86%)
copy integration-tests/datasonnet/src/main/resources/payload.xml =>
extensions/xslt/deployment/src/test/resources/xslt/nested/parent.xsl (86%)
copy
integration-tests/{mcp-server/src/main/java/org/apache/camel/quarkus/component/mcp/server/it/QuarkusDefinedTools.java
=>
openai/src/main/java/org/apache/camel/quarkus/component/openai/it/OpenaiTools.java}
(84%)
copy
integration-tests/openai/src/test/java/org/apache/camel/quarkus/component/openai/it/{OpenaiChatIT.java
=> OpenaiAudioIT.java} (95%)
create mode 100644
integration-tests/openai/src/test/java/org/apache/camel/quarkus/component/openai/it/OpenaiAudioTest.java
create mode 100644
integration-tests/openai/src/test/resources/audio/test-audio.wav
create mode 100644
integration-tests/openai/src/test/resources/mappings/audio_transcriptions-b2c3d4e5-0000-0000-0000-000000000001.json
create mode 100644
integration-tests/openai/src/test/resources/mappings/chat_completions-agentic-step1-c3d4e5f6-0000-0000-0000-000000000001.json
create mode 100644
integration-tests/openai/src/test/resources/mappings/chat_completions-agentic-step2-c3d4e5f6-0000-0000-0000-000000000002.json
create mode 100644
integration-tests/openai/src/test/resources/mappings/chat_completions-tool-calls-a1b2c3d4-0000-0000-0000-000000000001.json