You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gi...@apache.org on 2023/10/11 13:04:12 UTC

[camel] branch regen_bot_40x updated (3974e969c29 -> 399e565b4c4)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot_40x
in repository https://gitbox.apache.org/repos/asf/camel.git


    from 3974e969c29 CAMEL-19970 - Avoid IllegalArgumentException for file without (#11678)
     add 5e3e62ad8ec Upgrade Spring Rabbit to version 3.0.9 (#11687)
     add d2ade752768 CAMEL-19945: camel-core - Add bean as property placeholder function (#11674)
     add 304bcc84d5f CAMEL-19945: camel-core - Add bean as property placeholder function
     add 2fe4f0d51a7 CAMEL-19945: camel-core - Add bean as property placeholder function
     add 040f18578e7 CAMEL-19963: camel-tooling-maven - Upgrade maven-resolver-impl 1.9.16
     add e7982a4bb5d CAMEL-19973 - Camel-AWS components: Revisit description - Timestream Component (#11688)
     add 643f82ecb9f Upgrade Netty to version 4.1.100.Final (#11690)
     add 7fad74707bb Added PR Build for 4.1.x
     add b19c630637c Added Push build Action for 4.1.x
     add d8fdf4e3b0a Update Camel JBang from 4.0.1 to 4.1.0 (#11691)
     add 4d841abf43d Upgrade Vertx to version 4.4.6 (#11692)
     add 20cd78608d7 Revert "Added PR Build for 4.1.x"
     add 3a6495f8ada Revert "Added Push build Action for 4.1.x"
     add 4605a0ebcc1 CAMEL-19977: camel-core - Java DSL - Add support for using Java 17 te… (#11689)
     add 399e565b4c4 CAMEL-19977: camel-core - Java DSL - Add support for using Java 17 text blocks for long URIs which contains line breaks that need to change URI back into a single line for noramlization in Camel.

No new revisions were added by this update.

Summary of changes:
 .../camel/catalog/components/aws2-timestream.json  |  2 +-
 .../camel/parser/helper/CamelJavaParserHelper.java |  6 ++
 .../helper/CamelJavaRestDslParserHelper.java       |  3 +
 .../parser/helper/CamelJavaTreeParserHelper.java   |  3 +
 .../parser/java/MyJava17TextBlockRouteBuilder.java | 33 ++++------
 ...erJava17TextBlockRouteBuilderConfigureTest.java | 57 ++++++++++++++++
 components/camel-aws/camel-aws2-timestream/pom.xml |  2 +-
 .../services/org/apache/camel/component.properties |  2 +-
 .../component/aws2/timestream/aws2-timestream.json |  2 +-
 .../src/main/docs/aws2-timestream-component.adoc   |  2 +-
 .../org/apache/camel/properties-function/bean      |  2 +
 .../component/bean/BeanPropertiesFunction.java     | 66 +++++++++++++++++++
 .../camel/impl/engine/AbstractCamelContext.java    |  4 +-
 .../component/bean/BeanPropertiesFunctionTest.java | 63 ++++++++++++++++++
 .../camel/processor/UriAsJava17TextBlockTest.java  | 61 +++++++++++++++++
 .../java/org/apache/camel/util/URISupport.java     | 18 +++++
 docs/user-manual/modules/ROOT/pages/java-dsl.adoc  | 18 +++++
 .../ROOT/pages/using-propertyplaceholder.adoc      | 17 +++++
 .../faq/pages/how-do-i-configure-endpoints.adoc    | 77 ++--------------------
 .../camel-jbang-main/dist/CamelJBang.java          |  4 +-
 .../src/main/jbang/main/CamelJBang.java            |  4 +-
 parent/pom.xml                                     |  8 +--
 22 files changed, 349 insertions(+), 105 deletions(-)
 copy dsl/camel-jbang/camel-jbang-main/dist/CamelJBang.java => catalog/camel-route-parser/src/test/java/org/apache/camel/parser/java/MyJava17TextBlockRouteBuilder.java (53%)
 mode change 100755 => 100644
 create mode 100644 catalog/camel-route-parser/src/test/java/org/apache/camel/parser/java/RoasterJava17TextBlockRouteBuilderConfigureTest.java
 create mode 100644 components/camel-bean/src/generated/resources/META-INF/services/org/apache/camel/properties-function/bean
 create mode 100644 components/camel-bean/src/main/java/org/apache/camel/component/bean/BeanPropertiesFunction.java
 create mode 100644 core/camel-core/src/test/java/org/apache/camel/component/bean/BeanPropertiesFunctionTest.java
 create mode 100644 core/camel-core/src/test/java/org/apache/camel/processor/UriAsJava17TextBlockTest.java