This is an automated email from the ASF dual-hosted git repository. lburgazzoli pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.
from c26af89 Upgarde to camel 3.0.0-RC3 add e5096a1 Add Attachments extension add 7aa4106 Fix #308 Support multipart/form-data in platform-http extension No new revisions were added by this update. Summary of changes: .../pages/list-of-camel-quarkus-extensions.adoc | 4 +- .../deployment/pom.xml | 13 ++-- .../deployment/AttachmentsProcessor.java} | 6 +- extensions/{platform-http => attachments}/pom.xml | 5 +- extensions/{csv => attachments}/runtime/pom.xml | 16 ++--- .../main/resources/META-INF/quarkus-extension.json | 7 +- .../platform/http/CamelFileDataSource.java | 59 ++++++++++++++++ .../platform/http/PlatformHttpEndpoint.java | 20 ++++-- extensions/platform-http/deployment/pom.xml | 4 ++ extensions/platform-http/runtime/pom.xml | 4 ++ .../http/runtime/QuarkusPlatformHttpConsumer.java | 78 +++++++++++++++++----- extensions/pom.xml | 1 + extensions/readme.adoc | 4 +- integration-tests/platform-http/pom.xml | 4 ++ .../platform/http/it/PlatformHttpRouteBuilder.java | 16 ++++- .../src/main/resources/application.properties | 2 + .../component/http/server/it/PlatformHttpTest.java | 17 +++++ poms/bom-deployment/pom.xml | 5 ++ poms/bom/pom.xml | 10 +++ 19 files changed, 224 insertions(+), 51 deletions(-) copy extensions/{platform-http => attachments}/deployment/pom.xml (86%) copy extensions/{bean/deployment/src/main/java/org/apache/camel/quarkus/component/bean/deployment/BeanProcessor.java => attachments/deployment/src/main/java/org/apache/camel/quarkus/component/attachments/deployment/AttachmentsProcessor.java} (86%) copy extensions/{platform-http => attachments}/pom.xml (91%) copy extensions/{csv => attachments}/runtime/pom.xml (84%) copy extensions/{mail => attachments}/runtime/src/main/resources/META-INF/quarkus-extension.json (63%) create mode 100644 extensions/platform-http/component/src/main/java/org/apache/camel/component/platform/http/CamelFileDataSource.java