This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch quarkus-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
discard 1815d4b894 Disable DatasonnetIT due to #4284 discard 2ac41dfc10 Disable microprofile-fault-tolerance testing due to #4225 discard 5f1cc6a33b Upgrade Quarkus to 2.15.0.CR1 add 859e9b02f9 Updated CHANGELOG.md add 675cb8cb6f Revert "Springless JPA extension (#4049)" (#4286) add a52fa80a42 Fix #3980 to disable JMX in commons-pool2 during native building (#4287) add 0ede9d8219 Add a separate version property for FHIR core dependencies new 0c4a6981b9 Upgrade Quarkus to 2.15.0.CR1 new 77d1fed967 Disable microprofile-fault-tolerance testing due to #4225 new dc0fc06721 Disable DatasonnetIT due to #4284 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 (1815d4b894) \ N -- N -- N refs/heads/quarkus-main (dc0fc06721) 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 3 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: CHANGELOG.md | 2 +- .../ROOT/pages/reference/extensions/jpa.adoc | 28 +---------- .../activemq/graal/CommonsPoolSubstitutions.java} | 20 ++++---- extensions/jpa/deployment/pom.xml | 4 ++ .../component/jpa/deployment/JpaProcessor.java | 4 -- extensions/jpa/runtime/pom.xml | 9 ++-- .../jpa/runtime/src/main/doc/configuration.adoc | 27 +---------- .../quarkus/component/jpa/CamelJpaProducer.java | 32 ------------- .../quarkus/component/jpa/CamelJpaRecorder.java | 10 +++- .../component/jpa/QuarkusTransactionStrategy.java | 31 ------------ .../DefaultTransactionStrategySubstitution.java | 27 ----------- .../jpa/graal/JpaEndpointSubstitution.java | 55 ---------------------- .../orm/jpa/SharedEntityManagerCreator.java | 27 ----------- .../transaction/PlatformTransactionManager.java | 20 -------- .../transaction/support/TransactionTemplate.java | 25 ---------- .../camel/quarkus/component/jpa/it/JpaRoute.java | 9 ++-- pom.xml | 1 + poms/bom/pom.xml | 22 ++++++--- poms/bom/src/main/generated/flattened-full-pom.xml | 10 +++- .../src/main/generated/flattened-reduced-pom.xml | 15 +++++- .../generated/flattened-reduced-verbose-pom.xml | 15 +++++- 21 files changed, 89 insertions(+), 304 deletions(-) copy extensions/{paho/runtime/src/main/java/org/apache/camel/quarkus/component/paho/graal/SubstituteBase64.java => activemq/runtime/src/main/java/org/apache/camel/quarkus/component/activemq/graal/CommonsPoolSubstitutions.java} (65%) delete mode 100644 extensions/jpa/runtime/src/main/java/org/apache/camel/quarkus/component/jpa/CamelJpaProducer.java delete mode 100644 extensions/jpa/runtime/src/main/java/org/apache/camel/quarkus/component/jpa/QuarkusTransactionStrategy.java delete mode 100644 extensions/jpa/runtime/src/main/java/org/apache/camel/quarkus/component/jpa/graal/DefaultTransactionStrategySubstitution.java delete mode 100644 extensions/jpa/runtime/src/main/java/org/apache/camel/quarkus/component/jpa/graal/JpaEndpointSubstitution.java delete mode 100644 extensions/jpa/runtime/src/main/java/org/springframework/orm/jpa/SharedEntityManagerCreator.java delete mode 100644 extensions/jpa/runtime/src/main/java/org/springframework/transaction/PlatformTransactionManager.java delete mode 100644 extensions/jpa/runtime/src/main/java/org/springframework/transaction/support/TransactionTemplate.java