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

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


 discard b0f420b  Upgrade Quarkus to 2.3.0.CR1
     add c614dc6  Fix #2745 Expand AWS S3 test coverage (#3077)
     add 50b8f28  Remove superfluous xml-jaxb dependency from the REST test
     add 8e77630  Updated CHANGELOG.md
     add d6138e2  Fixup 9788fb65 Remove leftover extensions-jvm/digitalocean
     add 0be98ea  Use test grouping for MongoDB extensions
     add af91682  Add notes on how to configure the Platform HTTP server
     add 293c62b  Updated CHANGELOG.md
     add 6b77c9e  Salesforce : add Platform events test fixes #2938
     new 5fb7489  Upgrade Quarkus to 2.3.0.CR1
     new faffce6  Work around cassandraql depending on Quarkus Vert.x 
extensions that no longer exist

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   (b0f420b)
            \
             N -- N -- N   refs/heads/quarkus-main (faffce6)

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 2 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                                       |  17 +++
 docs/antora.yml                                    |   2 +-
 .../pages/reference/extensions/platform-http.adoc  |  16 ++-
 .../digitalocean/integration-test/pom.xml          |  83 -----------
 extensions/cassandraql/deployment/pom.xml          |  10 ++
 extensions/cassandraql/runtime/pom.xml             |  10 ++
 extensions/platform-http/deployment/pom.xml        |   2 +-
 extensions/platform-http/runtime/pom.xml           |   2 +-
 .../runtime/src/main/doc/configuration.adoc        |  14 +-
 .../platform-http/runtime/src/main/doc/usage.adoc  |   2 +-
 extensions/vertx-websocket/deployment/pom.xml      |   2 +-
 extensions/vertx-websocket/runtime/pom.xml         |   2 +-
 integration-test-groups/aws2/aws2-s3/pom.xml       |   4 +
 .../quarkus/component/aws2/Aws2S3Resource.java     | 149 +++++++++++++++++++-
 .../src/main/resources/application.properties      |   1 -
 .../camel/quarkus/component/aws2/Aws2S3Test.java   | 155 +++++++++++++++++++++
 .../mongodb-gridfs}/pom.xml                        |  24 ++--
 .../mongodb/gridfs}/it/MongodbGridfsResource.java  |   2 +-
 .../mongodb/gridfs}/it/MongodbGridfsIT.java        |   2 +-
 .../mongodb/gridfs}/it/MongodbGridfsTest.java      |   3 +-
 .../type-converter => mongodb/mongodb}/pom.xml     |  24 ++--
 .../component/mongodb/it/MongoDbResource.java      |   3 -
 .../quarkus/component/mongodb/it/MongoDbRoute.java |  34 ++---
 .../quarkus/component/mongodb/it/MongoDbIT.java    |   0
 .../quarkus/component/mongodb/it/MongoDbTest.java  |  52 +++----
 integration-test-groups/{azure => mongodb}/pom.xml |   9 +-
 .../{azure => mongodb}/pom.xml                     |   8 +-
 .../test/support/mongodb/MongoDbConstants.java     |  17 ++-
 .../test/support/mongodb}/MongoDbTestResource.java |  28 ++--
 .../src/main}/resources/application.properties     |   2 +-
 .../mongodb/src/main}/resources/initMongodb.txt    |   0
 integration-tests-support/pom.xml                  |   1 +
 integration-tests/aws2-grouped/pom.xml             |   4 +
 integration-tests/main-command-mode/pom.xml        |   2 +-
 integration-tests/main-unknown-args-fail/pom.xml   |   2 +-
 integration-tests/main-unknown-args-ignore/pom.xml |   2 +-
 .../{azure-grouped => mongodb-grouped}/pom.xml     |  58 ++------
 integration-tests/mongodb/pom.xml                  | 132 ------------------
 integration-tests/pom.xml                          |   2 +-
 integration-tests/rest/pom.xml                     |   4 -
 integration-tests/salesforce/README.adoc           |   2 +
 integration-tests/salesforce/pom.xml               |  38 ++++-
 .../component/salesforce/SalesforceResource.java   |   7 +
 .../component/salesforce/SalesforceRoutes.java     |   6 +
 .../salesforce/SalesforceIntegrationTest.java      |  12 ++
 poms/bom-test/pom.xml                              |   5 +
 tooling/scripts/test-categories.yaml               |   2 +-
 47 files changed, 568 insertions(+), 390 deletions(-)
 delete mode 100644 extensions-jvm/digitalocean/integration-test/pom.xml
 copy integration-test-groups/{foundation/type-converter => 
mongodb/mongodb-gridfs}/pom.xml (88%)
 rename 
{integration-tests/mongodb/src/main/java/org/apache/camel/quarkus/component/mongodb
 => 
integration-test-groups/mongodb/mongodb-gridfs/src/main/java/org/apache/camel/quarkus/component/mongodb/gridfs}/it/MongodbGridfsResource.java
 (98%)
 rename 
{integration-tests/mongodb/src/test/java/org/apache/camel/quarkus/component/mongodb
 => 
integration-test-groups/mongodb/mongodb-gridfs/src/test/java/org/apache/camel/quarkus/component/mongodb/gridfs}/it/MongodbGridfsIT.java
 (93%)
 rename 
{integration-tests/mongodb/src/test/java/org/apache/camel/quarkus/component/mongodb
 => 
integration-test-groups/mongodb/mongodb-gridfs/src/test/java/org/apache/camel/quarkus/component/mongodb/gridfs}/it/MongodbGridfsTest.java
 (95%)
 copy integration-test-groups/{foundation/type-converter => 
mongodb/mongodb}/pom.xml (88%)
 rename {integration-tests => 
integration-test-groups/mongodb}/mongodb/src/main/java/org/apache/camel/quarkus/component/mongodb/it/MongoDbResource.java
 (98%)
 rename {integration-tests => 
integration-test-groups/mongodb}/mongodb/src/main/java/org/apache/camel/quarkus/component/mongodb/it/MongoDbRoute.java
 (68%)
 rename {integration-tests => 
integration-test-groups/mongodb}/mongodb/src/test/java/org/apache/camel/quarkus/component/mongodb/it/MongoDbIT.java
 (100%)
 rename {integration-tests => 
integration-test-groups/mongodb}/mongodb/src/test/java/org/apache/camel/quarkus/component/mongodb/it/MongoDbTest.java
 (81%)
 copy integration-test-groups/{azure => mongodb}/pom.xml (86%)
 copy integration-tests-support/{azure => mongodb}/pom.xml (87%)
 copy 
extensions/qute/component/src/main/java/org/apache/camel/component/qute/QuteConstants.java
 => 
integration-tests-support/mongodb/src/main/java/org/apache/camel/quarkus/test/support/mongodb/MongoDbConstants.java
 (59%)
 rename 
{integration-tests/mongodb/src/test/java/org/apache/camel/quarkus/component/mongodb/it
 => 
integration-tests-support/mongodb/src/main/java/org/apache/camel/quarkus/test/support/mongodb}/MongoDbTestResource.java
 (81%)
 copy {extensions/kafka/deployment/src/test => 
integration-tests-support/mongodb/src/main}/resources/application.properties 
(95%)
 rename {integration-tests/mongodb/src/test => 
integration-tests-support/mongodb/src/main}/resources/initMongodb.txt (100%)
 copy integration-tests/{azure-grouped => mongodb-grouped}/pom.xml (79%)
 delete mode 100644 integration-tests/mongodb/pom.xml

Reply via email to