This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch quarkus-master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.
discard d511b84 Azure extension native build fails with Quarkus 1.13 #2299
discard ff7556c Fix #1918 to add a integration test with camel-jdbc and
camel-jms
discard 14cd997 Remove support for Webocket JSR 356
discard 9c29ded Upgrade to Quarkus 1.13.0.Final
add 325a781 Updated CHANGELOG.md
add 64758e9 openstack: added cinder volume tests #1943
add d2a0bc6 Updated CHANGELOG.md
add 9b0eeaa Update quarkus-master branch CI workflows for Quarkus branch
renaming master -> main
add 043b388 Updated CHANGELOG.md
new 9cf5613 Upgrade to Quarkus 1.13.0.Final
new 23fa33f Remove support for Webocket JSR 356
new a226180 Fix #1918 to add a integration test with camel-jdbc and
camel-jms
new 4699d07 Azure extension native build fails with Quarkus 1.13 #2299
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 (d511b84)
\
N -- N -- N refs/heads/quarkus-master (4699d07)
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 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:
.github/workflows/ci-build.yaml | 2 +-
.github/workflows/quarkus-master-cron.yaml | 2 +-
CHANGELOG.md | 6 +-
extensions-jvm/openstack/integration-test/pom.xml | 9 ++
.../it/OpenstackCinderVolumeResource.java | 159 +++++++++++++++++++++
.../component/openstack/it/OpenstackResource.java | 13 --
.../openstack/it/OpenStackTestResource.java | 27 ++--
.../openstack/it/OpenstackCinderVolumeTest.java | 58 ++++++++
.../component/openstack/it/OpenstackTest.java | 8 --
.../test/resources/mappings/authv3_project.json | 21 +++
.../mappings/createVolume_multiattach.json | 18 +++
.../src/test/resources/mappings/volume.json | 18 +++
.../src/test/resources/mappings/volume_delete.json | 14 ++
.../src/test/resources/mappings/volume_types.json | 18 +++
.../src/test/resources/mappings/volume_update.json | 14 ++
.../src/test/resources/mappings/volumes.json | 18 +++
.../WireMockTestResourceLifecycleManager.java | 9 ++
17 files changed, 377 insertions(+), 37 deletions(-)
create mode 100644
extensions-jvm/openstack/integration-test/src/main/java/org/apache/camel/quarkus/component/openstack/it/OpenstackCinderVolumeResource.java
copy
integration-tests/telegram/src/test/java/org/apache/camel/quarkus/component/telegram/it/TelegramTestResource.java
=>
extensions-jvm/openstack/integration-test/src/test/java/org/apache/camel/quarkus/component/openstack/it/OpenStackTestResource.java
(60%)
create mode 100644
extensions-jvm/openstack/integration-test/src/test/java/org/apache/camel/quarkus/component/openstack/it/OpenstackCinderVolumeTest.java
create mode 100644
extensions-jvm/openstack/integration-test/src/test/resources/mappings/authv3_project.json
create mode 100644
extensions-jvm/openstack/integration-test/src/test/resources/mappings/createVolume_multiattach.json
create mode 100644
extensions-jvm/openstack/integration-test/src/test/resources/mappings/volume.json
create mode 100644
extensions-jvm/openstack/integration-test/src/test/resources/mappings/volume_delete.json
create mode 100644
extensions-jvm/openstack/integration-test/src/test/resources/mappings/volume_types.json
create mode 100644
extensions-jvm/openstack/integration-test/src/test/resources/mappings/volume_update.json
create mode 100644
extensions-jvm/openstack/integration-test/src/test/resources/mappings/volumes.json