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 775e64e Upgrade Quarkus to 2.1.0.CR1
add 60f9c9a Updated CHANGELOG.md
add a6a8a92 Fixed typos
add 5967ae2 Class loader issues in AvroRpcTest with Quarkus 2.0.0.Alpha3
#2651
add 3f13ced Upgrade to Quarkus Hazelcast Client 2.0.0
add e5356e9 Upgrade to Cassandra Quarkus 1.1.0
add ef85390 Upgrade to Debezium 1.6.0.Final
add e6febd8 Upgrade to OptaPlanner 8.0.0.Final
add 9be7fed Updated CHANGELOG.md
add f6c9389 Fix usage of incorrect @Produces annotation
add dcc8eb6 Updated CHANGELOG.md
add 604143c Fix #2763 to ensure jvmSince and nativeSince not newer that
current version (#2866)
add 7d56d88 Fix check-format profile for groovy validate-jvm-native-since
execution
add 8259c7d Updated CHANGELOG.md
add 7936431 Fix #2869 to combine build sanity checks into a single scirpt
add 1c5821c Clean up unnecessary use of @Unremovable
add 8e41b4f Use autowiring for QueueServiceClient
new fe4701c Upgrade Quarkus to 2.1.0.CR1
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 (775e64e)
\
N -- N -- N refs/heads/quarkus-main (fe4701c)
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 1 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 | 12 +-
.../pages/contributor-guide/extension-testing.adoc | 4 +-
docs/modules/ROOT/pages/migration-guide/2.0.0.adoc | 2 +-
.../quarkus/component/ignite/it/Components.java | 8 -
extensions/avro-rpc/deployment/pom.xml | 4 +
.../avro/rpc/deployment/AvroRpcProcessor.java | 10 +
extensions/avro-rpc/runtime/pom.xml | 14 +-
.../avro/rpc/spi/HttpServletRequestFromBytes.java | 440 +++++++++++++++++++++
.../avro/rpc/spi/HttpServletResponseWithBytes.java | 252 ++++++++++++
.../component/avro/rpc/spi/VertxHttpServer.java | 82 ++++
.../avro/rpc/spi/VertxHttpServerFactory.java} | 15 +-
.../org/apache/camel/avro-rpc-http-server-factory | 1 +
.../queue/it/AzureStorageQueueResource.java | 8 +-
.../component/bean/method/RegisteredBean.java | 2 -
.../core/languages/it/CustomDataFormatRoutes.java | 2 -
.../core/languages/it/RefLanguageRoutes.java | 2 -
.../quarkus/component/ref/it/RefResource.java | 10 -
integration-tests/avro-rpc/pom.xml | 5 +
.../src/main/resources/application.properties | 17 -
.../digitalocean/it/DigitaloceanRoute.java | 5 -
.../component/geocoder/it/GeocoderProducers.java | 2 -
.../google/storage/it/GoogleStorageResource.java | 4 -
.../component/hazelcast/it/HazelcastRoutes.java | 35 --
.../quarkus/component/kafka/CamelKafkaRoutes.java | 2 -
.../component/lumberjack/it/LumberjackRoutes.java | 7 -
.../SpringRabbitmqConnectionFactoryProducer.java | 4 -
.../component/twilio/it/TwilioResource.java | 5 -
pom.xml | 24 +-
poms/bom/pom.xml | 5 +
poms/build-parent/pom.xml | 2 +-
...te-dependencies.groovy => sanity-checks.groovy} | 38 +-
31 files changed, 884 insertions(+), 139 deletions(-)
create mode 100644
extensions/avro-rpc/runtime/src/main/java/org/apache/camel/quarkus/component/avro/rpc/spi/HttpServletRequestFromBytes.java
create mode 100644
extensions/avro-rpc/runtime/src/main/java/org/apache/camel/quarkus/component/avro/rpc/spi/HttpServletResponseWithBytes.java
create mode 100644
extensions/avro-rpc/runtime/src/main/java/org/apache/camel/quarkus/component/avro/rpc/spi/VertxHttpServer.java
copy
extensions/{jta/runtime/src/main/java/org/apache/camel/quarkus/component/jta/RequiredJtaTransactionPolicy.java
=>
avro-rpc/runtime/src/main/java/org/apache/camel/quarkus/component/avro/rpc/spi/VertxHttpServerFactory.java}
(66%)
create mode 100644
extensions/avro-rpc/runtime/src/main/resources/META-INF/services/org/apache/camel/avro-rpc-http-server-factory
delete mode 100644
integration-tests/avro-rpc/src/main/resources/application.properties
rename tooling/scripts/{validate-dependencies.groovy => sanity-checks.groovy}
(64%)