This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a change to branch use-writer in repository https://gitbox.apache.org/repos/asf/camel.git
omit 20bc738cb35 CAMEL-21199: camel-jackson - Add useWriter option to allow 2/4-bytes chars (such as japanese) to work with Jackson add 87e81c71136 CAMEL-21196: modernized assertions in camel-core.converter add a0d7f257f4d (chores) regen (#15541) add 5e97e78d7c5 CAMEL-21211: Azure Service Bus - filter unknown header types (#15539) add 1c92cb2219b Improvement camel-rest-openapi consumer: request and response types (#15521) add 5113c1c2e26 CAMEL-21196: modernized assertions in camel-core.impl (#15535) add 9961934915b CAMEL-21196: modernized assertions in camel-core.issues (#15536) add 6844526de32 CAMEL-21209: allow tooling to generate valid YAML (#15534) new 3f36d99301d CAMEL-21199: camel-jackson - Add useWriter option to allow 2/4-bytes chars (such as japanese) to work with Jackson 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 (20bc738cb35) \ N -- N -- N refs/heads/use-writer (3f36d99301d) 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 1 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: .../catalog/components/langchain4j-tools.json | 2 +- .../langchain4j/tools/langchain4j-tools.json | 2 +- .../tools/LangChain4jToolsEndpoint.java | 2 +- .../servicebus/ServiceBusHeaderFilterStrategy.java | 28 ++- .../ServiceBusHeaderFilterStrategyTest.java | 63 ++++++ .../integration/ServiceBusProducerIT.java | 54 ++--- .../camel/component/rest/openapi/OpenApiUtils.java | 222 +++++++++++++++++++++ .../rest/openapi/RestOpenApiProcessor.java | 155 +------------- .../apache/camel/converter/EnumConverterTest.java | 22 +- .../converter/StaticFallbackConverterTest.java | 9 +- .../converter/stream/CachedOutputStreamTest.java | 10 +- .../camel/impl/DefaultConsumerTemplateTest.java | 15 +- .../apache/camel/impl/ExpressionAdapterTest.java | 14 +- .../apache/camel/impl/ExpressionSupportTest.java | 13 +- .../org/apache/camel/impl/MessageSupportTest.java | 8 +- .../camel/impl/TypeConverterRegistryTest.java | 10 +- .../impl/engine/CamelPostProcessorHelperTest.java | 60 +++--- .../camel/impl/engine/DefaultCamelContextTest.java | 15 +- .../impl/engine/DefaultFactoryFinderTest.java | 22 +- .../camel/impl/event/EventNotifierEventsTest.java | 12 +- .../event/MultipleEventNotifierEventsTest.java | 14 +- .../org/apache/camel/issues/DavidSiefertTest.java | 15 +- .../MockExpectedHeaderNoMessageSentTest.java | 14 +- ...xceptionNotHandledErrorHandlerRefIssueTest.java | 15 +- ...otHandledErrorHandlerRefIssueTwoRoutesTest.java | 15 +- ...HandledRouteScopedErrorHandlerRefIssueTest.java | 15 +- ...uteScopedErrorHandlerRefIssueTwoRoutesTest.java | 15 +- ...UnitOfWorkOnExceptionHandledFalseIssueTest.java | 15 +- .../apache/camel/issues/RomeksExceptionTest.java | 15 +- .../RouteScopedErrorHandlerAndOnExceptionTest.java | 15 +- ...eptionWithInterceptSendToEndpointIssueTest.java | 15 +- .../RouteStartupFailShouldStopAlsoIssueTest.java | 6 +- ...UnitOfWorkOnExceptionHandledFalseIssueTest.java | 14 +- ...arallelRuntimeExceptionInHasNextOrNextTest.java | 13 +- ...rParallelWithIteratorThrowingExceptionTest.java | 41 ++-- ...terUsingBeanReturningCloseableIteratorTest.java | 14 +- .../TwoDoTryAndThrowInInnerCatchIssueTest.java | 9 +- .../component/ComponentsBuilderFactory.java | 2 +- .../component/dsl/JmsComponentBuilderFactory.java | 4 +- 39 files changed, 558 insertions(+), 446 deletions(-) create mode 100644 components/camel-azure/camel-azure-servicebus/src/test/java/org/apache/camel/component/azure/servicebus/ServiceBusHeaderFilterStrategyTest.java create mode 100644 components/camel-rest-openapi/src/main/java/org/apache/camel/component/rest/openapi/OpenApiUtils.java