This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a change to branch 3.15.x in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
from be4da90669 Fix Camel header documentation new 073e1dce83 Mysql testResource instead of devservices new adb55c584e Document FHIR native mode requirements for FhirContext new cb8917a50c Improve some test assertions in FHIR tests new aba112ecfa Fix check for ServiceRemoveEvent observers The 4 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: .../ROOT/pages/reference/extensions/fhir.adoc | 81 ++++++++++++++++++- .../quarkus/core/CamelLifecycleEventBridge.java | 2 +- .../fhir/runtime/src/main/doc/configuration.adoc | 3 +- extensions/fhir/runtime/src/main/doc/usage.adoc | 73 +++++++++++++++++ integration-test-groups/jdbc/mysql/README.adoc | 26 ------ integration-test-groups/jdbc/mysql/pom.xml | 26 +++--- .../jdbc/mysql/Sha256FIPSPasswordPlugin.java | 38 --------- .../src/main/resources/application.properties | 2 +- .../component/jdbc/mysql/CamelMysqlJdbcTest.java | 3 +- .../component/jdbc/mysql/MysqlTestResource.java | 92 ++++++++++++++++++++++ .../fhir/it/AbstractFhirRouteBuilder.java | 7 ++ .../component/fhir/it/FhirDstu2Hl7OrgResource.java | 43 ++++------ .../component/fhir/it/FhirDstu2Resource.java | 40 ++++------ .../component/fhir/it/FhirDstu2_1Resource.java | 40 ++++------ .../component/fhir/it/FhirDstu3Resource.java | 27 +++---- .../quarkus/component/fhir/it/FhirR4Resource.java | 40 ++++------ .../quarkus/component/fhir/it/FhirR5Resource.java | 40 ++++------ .../component/fhir/it/AbstractFhirTest.java | 22 +++++- integration-tests/jdbc-grouped/pom.xml | 26 +++--- 19 files changed, 388 insertions(+), 243 deletions(-) create mode 100644 extensions/fhir/runtime/src/main/doc/usage.adoc delete mode 100644 integration-test-groups/jdbc/mysql/README.adoc delete mode 100644 integration-test-groups/jdbc/mysql/src/main/java/org/apache/camel/quarkus/component/jdbc/mysql/Sha256FIPSPasswordPlugin.java create mode 100644 integration-test-groups/jdbc/mysql/src/test/java/org/apache/camel/quarkus/component/jdbc/mysql/MysqlTestResource.java