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

jamesnetherton pushed a change to branch camel-master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.


 discard 1fcf085  Test Geocoder with Google maps mock API if 
GOOGLE_GEOCODER_API_KEY is not provided fixes #1860
 discard f38edfc  Shiro native support #1844
 discard 6c6e141  Upgrade to Camel 3.6.0
 discard 6dc1496  Remove createEndpoint method override in 
QuarkusVertxWebsocketComponent
 discard 8efdc55  Remove QuarkusVertxHttpBinding
     add 4517ace  Workaround AdviceWithRouteBuilder and MicroprofileMetrics 
conflict
     add 21339ca  pgevent: correct service name
     add 25a72bc  Upgrade Quarkus to 1.9.0.Final
     add dd6c3e7  Added nsq native support fixes #1722
     add 45c1d36  Updated CHANGELOG.md
     new 83d9c81  Remove QuarkusVertxHttpBinding
     new c52b178  Remove createEndpoint method override in 
QuarkusVertxWebsocketComponent
     new da775e6  Upgrade to Camel 3.6.0
     new 35110cf  Shiro native support #1844
     new ed1eb3f  Test Geocoder with Google maps mock API if 
GOOGLE_GEOCODER_API_KEY is not provided fixes #1860

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   (1fcf085)
            \
             N -- N -- N   refs/heads/camel-master (ed1eb3f)

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 5 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                                       |  11 +-
 .../ROOT/pages/reference/extensions/nsq.adoc       |   8 +-
 .../ROOT/partials/reference/components/nsq.adoc    |   6 +-
 .../component/nsq/deployment/NsqProcessor.java     |  46 --------
 extensions-jvm/nsq/integration-test/pom.xml        | 100 ----------------
 extensions-jvm/pom.xml                             |   1 -
 .../runtime/CamelMicroProfileMetricsRecorder.java  |   6 +-
 .../nsq/deployment/pom.xml                         |   0
 .../component/nsq/deployment/NsqProcessor.java}    |  18 ++-
 {extensions-jvm => extensions}/nsq/pom.xml         |   1 -
 {extensions-jvm => extensions}/nsq/runtime/pom.xml |  11 ++
 .../main/resources/META-INF/quarkus-extension.yaml |   3 +-
 .../pgevent/deployment/PgeventProcessor.java       |   8 +-
 extensions/pom.xml                                 |   1 +
 extensions/tika/deployment/pom.xml                 |   8 +-
 .../it/metrics/MicroProfileMetricsResource.java    |  14 +++
 .../metrics/MicroProfileMetricsRouteBuilder.java   |   3 +
 .../it/metrics/MicroProfileMetricsTest.java        |  13 ++-
 .../{univocity-parsers => nsq}/pom.xml             |  26 +++--
 .../camel/quarkus/component/nsq/it/NsqLogger.java  |  27 +++--
 .../quarkus/component/nsq/it/NsqResource.java      |  41 +++++--
 .../camel/quarkus/component/nsq/it/NsqRoute.java   |  80 +++++++++++++
 .../camel/quarkus/component/nsq/it/NsqIT.java}     |   4 +-
 .../camel/quarkus/component/nsq/it/NsqTest.java    | 129 +++++++++++++++++++++
 .../quarkus/component/nsq/it/NsqTestResource.java  | 110 ++++++++++++++++++
 integration-tests/pom.xml                          |   1 +
 integration-tests/tika/pom.xml                     |   8 +-
 pom.xml                                            |   2 +-
 tooling/scripts/test-categories.yaml               |   1 +
 29 files changed, 470 insertions(+), 217 deletions(-)
 delete mode 100644 
extensions-jvm/nsq/deployment/src/main/java/org/apache/camel/quarkus/component/nsq/deployment/NsqProcessor.java
 delete mode 100644 extensions-jvm/nsq/integration-test/pom.xml
 rename {extensions-jvm => extensions}/nsq/deployment/pom.xml (100%)
 copy 
extensions/{nats/deployment/src/main/java/org/apache/camel/quarkus/component/nats/deployment/NatsProcessor.java
 => 
nsq/deployment/src/main/java/org/apache/camel/quarkus/component/nsq/deployment/NsqProcessor.java}
 (73%)
 rename {extensions-jvm => extensions}/nsq/pom.xml (97%)
 rename {extensions-jvm => extensions}/nsq/runtime/pom.xml (89%)
 rename {extensions-jvm => 
extensions}/nsq/runtime/src/main/resources/META-INF/quarkus-extension.yaml (97%)
 copy integration-tests/{univocity-parsers => nsq}/pom.xml (88%)
 rename 
extensions-jvm/nsq/integration-test/src/test/java/org/apache/camel/quarkus/component/nsq/it/NsqTest.java
 => 
integration-tests/nsq/src/main/java/org/apache/camel/quarkus/component/nsq/it/NsqLogger.java
 (59%)
 rename {extensions-jvm/nsq/integration-test => 
integration-tests/nsq}/src/main/java/org/apache/camel/quarkus/component/nsq/it/NsqResource.java
 (55%)
 create mode 100644 
integration-tests/nsq/src/main/java/org/apache/camel/quarkus/component/nsq/it/NsqRoute.java
 copy 
integration-tests/{fop/src/test/java/org/apache/camel/quarkus/component/fop/it/FopIT.java
 => nsq/src/test/java/org/apache/camel/quarkus/component/nsq/it/NsqIT.java} 
(91%)
 create mode 100644 
integration-tests/nsq/src/test/java/org/apache/camel/quarkus/component/nsq/it/NsqTest.java
 create mode 100644 
integration-tests/nsq/src/test/java/org/apache/camel/quarkus/component/nsq/it/NsqTestResource.java

Reply via email to