This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch regen_bot in repository https://gitbox.apache.org/repos/asf/camel.git
from 268b1cf4519 CAMEL-20378: Languages should be thread-safe and be configured only via properties array, all in the same way. add 3bcad339dec CAMEL-20382: camel-kafka - RecordMetadata header naming convention (#13005) add 8d716d2a6ed Update to latest version of dhis2-java-sdk; support PAT authentication; add async param to resourceTables/analytics (#13007) No new revisions were added by this update. Summary of changes: .../org/apache/camel/catalog/components/dhis2.json | 22 +++--- .../org/apache/camel/catalog/components/kafka.json | 2 +- .../apache/camel/catalog/main/sensitive-keys.json | 1 + .../apache/camel/component/dhis2/api/Dhis2Get.java | 12 ++-- .../component/dhis2/api/Dhis2ResourceTables.java | 22 +++--- .../component/dhis2/api/Dhis2DeleteTestCase.java | 5 ++ .../component/dhis2/api/Dhis2GetTestCase.java | 78 +++++++++++++++++++++- .../component/dhis2/api/Dhis2PostTestCase.java | 5 ++ .../component/dhis2/api/Dhis2PutTestCase.java | 5 ++ ...tCase.java => Dhis2ResourceTablesTestCase.java} | 30 +++++---- .../camel-dhis2/camel-dhis2-component/pom.xml | 1 + .../component/dhis2/Dhis2ComponentConfigurer.java | 7 ++ .../dhis2/Dhis2ConfigurationConfigurer.java | 6 ++ ...Dhis2DeleteEndpointConfigurationConfigurer.java | 7 ++ .../component/dhis2/Dhis2EndpointConfigurer.java | 7 ++ .../component/dhis2/Dhis2EndpointUriFactory.java | 7 +- .../dhis2/Dhis2GetEndpointConfiguration.java | 8 +-- .../Dhis2GetEndpointConfigurationConfigurer.java | 15 ++++- .../Dhis2PostEndpointConfigurationConfigurer.java | 7 ++ .../Dhis2PutEndpointConfigurationConfigurer.java | 7 ++ .../Dhis2ResourceTablesEndpointConfiguration.java | 13 +++- ...ourceTablesEndpointConfigurationConfigurer.java | 14 ++++ .../dhis2/internal/Dhis2ApiCollection.java | 2 +- .../dhis2/internal/Dhis2GetApiMethod.java | 4 +- .../internal/Dhis2ResourceTablesApiMethod.java | 3 +- .../org/apache/camel/component/dhis2/dhis2.json | 22 +++--- .../src/main/docs/dhis2-component.adoc | 62 ++++++++--------- .../camel/component/dhis2/Dhis2Component.java | 23 ++++++- .../camel/component/dhis2/Dhis2Configuration.java | 19 +++++- .../component/dhis2/AbstractDhis2TestSupport.java | 9 ++- .../component/dhis2/Dhis2ComponentTestCase.java | 41 ++++++++++++ .../camel/component/dhis2/Dhis2DeleteIT.java | 8 +-- .../apache/camel/component/dhis2/Dhis2GetIT.java | 11 ++- .../apache/camel/component/dhis2/Dhis2PostIT.java | 2 +- .../apache/camel/component/dhis2/Dhis2PutIT.java | 2 +- .../apache/camel/component/dhis2/Environment.java | 38 +++++++++-- components/camel-dhis2/pom.xml | 4 +- .../org/apache/camel/component/kafka/kafka.json | 2 +- .../camel/component/kafka/KafkaConstants.java | 2 +- .../camel/component/kafka/KafkaProducer.java | 2 +- .../kafka/producer/support/ProducerUtil.java | 4 +- .../camel/component/kafka/KafkaProducerTest.java | 10 +-- .../kafka/integration/KafkaProducerFullIT.java | 10 +-- .../kafka/integration/KafkaTransactionIT.java | 2 +- .../java/org/apache/camel/util/SensitiveUtils.java | 2 + .../ROOT/pages/camel-4x-upgrade-guide-4_3.adoc | 6 ++ .../endpoint/dsl/KafkaEndpointBuilderFactory.java | 7 +- 47 files changed, 430 insertions(+), 148 deletions(-) copy components/camel-dhis2/camel-dhis2-api/src/test/java/org/apache/camel/component/dhis2/api/{Dhis2PostTestCase.java => Dhis2ResourceTablesTestCase.java} (72%) create mode 100644 components/camel-dhis2/camel-dhis2-component/src/test/java/org/apache/camel/component/dhis2/Dhis2ComponentTestCase.java