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 8dbac99 Temporarily disable JavaScriptDslTest #2968
discard 1dce801 Upgrade Quarkus to 2.2.0.CR1
add cb05578 Use quarkus-grpc-common instead of quarkus-grpc in the gRPC
extension
add 94af70e Updated CHANGELOG.md
new 1a08765 Upgrade Quarkus to 2.2.0.CR1
new 208f018 Temporarily work around Infinispan SASL issues #2975
new 92559de Temporarily work around Kudu SASL issues related to #2975
new 28bf22f Temporarily disable XmlsecurityIT #2977
new 245ae74 Temporarily disable quarkiverse-google-cloud extensions
native builds #2979
new 7ce3117 Temporarily disable spring-rabbitmq native build #2980
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 (8dbac99)
\
N -- N -- N refs/heads/quarkus-main (7ce3117)
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 6 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 +
docs/modules/ROOT/pages/migration-guide/2.2.0.adoc | 10 +
docs/modules/ROOT/pages/migration-guide/index.adoc | 1 +
.../ROOT/pages/reference/extensions/grpc.adoc | 37 ---
extensions/grpc/deployment/pom.xml | 2 +-
.../component/grpc/deployment/GrpcProcessor.java | 38 +--
extensions/grpc/runtime/pom.xml | 8 +-
.../grpc/runtime/src/main/doc/configuration.adoc | 33 ---
.../quarkus/grpc/runtime/CamelGrpcRecorder.java | 174 ++++++++++++--
.../runtime/QuarkusBindableServiceFactory.java | 5 +-
...stitutions.java => CamelGrpcSubstitutions.java} | 27 ++-
.../infinispan/deployment/InfinispanProcessor.java | 7 +
.../component/kudu/deployment/KuduProcessor.java | 6 +
integration-tests/google-bigquery/pom.xml | 2 +
integration-tests/google-pubsub/pom.xml | 2 +
integration-tests/google-storage/pom.xml | 3 +-
integration-tests/grpc/README.adoc | 38 +++
integration-tests/grpc/pom.xml | 110 ++++++++-
.../quarkus/component/grpc/it/GrpcResource.java | 112 ++++++++-
.../camel/quarkus/component/grpc/it/GrpcRoute.java | 97 ++++++--
.../src/main/resources/application.properties | 2 +-
.../grpc/src/main/resources/certs/ca-openssl.conf | 18 ++
.../grpc/src/main/resources/certs/ca.key | 27 +++
.../grpc/src/main/resources/certs/ca.pem | 20 ++
.../grpc/src/main/resources/certs/client.key | 28 +++
.../grpc/src/main/resources/certs/client.pem | 20 ++
.../grpc/src/main/resources/certs/server.key | 28 +++
.../grpc/src/main/resources/certs/server.pem | 20 ++
.../component/grpc/it/GrpcServerTestResource.java | 22 +-
.../camel/quarkus/component/grpc/it/GrpcTest.java | 266 ++++++++++++++++++++-
.../apache/camel/quarkus/js/JavaScriptDslIT.java | 2 -
.../apache/camel/quarkus/js/JavaScriptDslTest.java | 2 -
integration-tests/spring-rabbitmq/pom.xml | 2 +
.../component/xmlsecurity/it/XmlsecurityIT.java | 2 +
pom.xml | 20 +-
poms/build-parent/pom.xml | 10 +
36 files changed, 1030 insertions(+), 173 deletions(-)
create mode 100644 docs/modules/ROOT/pages/migration-guide/2.2.0.adoc
delete mode 100644 extensions/grpc/runtime/src/main/doc/configuration.adoc
rename
extensions/grpc/runtime/src/main/java/org/apache/camel/quarkus/grpc/runtime/graal/{GrpcSubstitutions.java
=> CamelGrpcSubstitutions.java} (59%)
create mode 100644 integration-tests/grpc/README.adoc
copy integration-tests/{json-validator =>
grpc}/src/main/resources/application.properties (94%)
create mode 100644
integration-tests/grpc/src/main/resources/certs/ca-openssl.conf
create mode 100644 integration-tests/grpc/src/main/resources/certs/ca.key
create mode 100644 integration-tests/grpc/src/main/resources/certs/ca.pem
create mode 100644 integration-tests/grpc/src/main/resources/certs/client.key
create mode 100644 integration-tests/grpc/src/main/resources/certs/client.pem
create mode 100644 integration-tests/grpc/src/main/resources/certs/server.key
create mode 100644 integration-tests/grpc/src/main/resources/certs/server.pem