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 7a88b19 Upgrade to Quarkus 11.0.0 add e9e2d73 Completed the release guide with an attempt to resume on intermittent release:perform issue add 9e94ba4 Fix debezium itest pom dependencies to deployments add 1467092 Remove superfluous quarkus-maven-plugin:build invocation that we have defined in camel-quarkus-build-parent-it anyway add d8e024f Leverage Quarkus plugin's generate-code mojo instead of protobuf-maven-plugin to generate protobuf stubs add 181d86b Protobuf dataformat native support #789 new 9e55197 Upgrade to Quarkus 11.0.0 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 (7a88b19) \ N -- N -- N refs/heads/quarkus-master (9e55197) 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: .../pages/contributor-guide/release-guide.adoc | 9 ++ .../ROOT/pages/reference/extensions/grpc.adoc | 27 ++++++ .../ROOT/pages/reference/extensions/protobuf.adoc | 37 +++++++- .../partials/reference/dataformats/protobuf.adoc | 6 +- extensions-jvm/pom.xml | 1 - extensions-jvm/protobuf/integration-test/pom.xml | 105 --------------------- .../component/grpc/deployment/GrpcProcessor.java | 7 ++ .../grpc/runtime/src/main/doc/configuration.adoc | 27 ++++++ .../runtime/QuarkusBindableServiceFactory.java | 1 - extensions/pom.xml | 1 + .../protobuf/deployment/pom.xml | 6 ++ .../protobuf/deployment/ProtobufProcessor.java | 35 ++++--- {extensions-jvm => extensions}/protobuf/pom.xml | 1 - .../protobuf/runtime/pom.xml | 2 +- .../runtime/src/main/doc/configuration.adoc | 25 +++++ .../main/resources/META-INF/quarkus-extension.yaml | 0 integration-tests/debezium/pom.xml | 26 +++++ integration-tests/grpc/pom.xml | 63 +------------ integration-tests/nagios/pom.xml | 16 ---- integration-tests/pom.xml | 1 + integration-tests/{mustache => protobuf}/pom.xml | 45 +++++---- .../component/protobuf/it/ProtobufResource.java | 0 .../component/protobuf/it/ProtobufRoute.java | 0 .../protobuf}/src/main/proto/addressbook.proto | 0 .../quarkus/component/protobuf/it/ProtobufIT.java} | 4 +- .../component/protobuf/it/ProtobufTest.java | 0 integration-tests/saga/pom.xml | 16 ---- pom.xml | 2 - poms/build-parent-it/pom.xml | 2 + poms/build-parent/pom.xml | 10 -- tooling/scripts/test-categories.yaml | 1 + 31 files changed, 223 insertions(+), 253 deletions(-) delete mode 100644 extensions-jvm/protobuf/integration-test/pom.xml rename {extensions-jvm => extensions}/protobuf/deployment/pom.xml (94%) rename {extensions-jvm => extensions}/protobuf/deployment/src/main/java/org/apache/camel/quarkus/component/protobuf/deployment/ProtobufProcessor.java (53%) rename {extensions-jvm => extensions}/protobuf/pom.xml (97%) rename {extensions-jvm => extensions}/protobuf/runtime/pom.xml (98%) create mode 100644 extensions/protobuf/runtime/src/main/doc/configuration.adoc rename {extensions-jvm => extensions}/protobuf/runtime/src/main/resources/META-INF/quarkus-extension.yaml (100%) copy integration-tests/{mustache => protobuf}/pom.xml (77%) rename {extensions-jvm/protobuf/integration-test => integration-tests/protobuf}/src/main/java/org/apache/camel/quarkus/component/protobuf/it/ProtobufResource.java (100%) rename {extensions-jvm/protobuf/integration-test => integration-tests/protobuf}/src/main/java/org/apache/camel/quarkus/component/protobuf/it/ProtobufRoute.java (100%) rename {extensions-jvm/protobuf/integration-test => integration-tests/protobuf}/src/main/proto/addressbook.proto (100%) copy integration-tests/{amqp/src/test/java/org/apache/camel/quarkus/component/amqp/it/AmqpIT.java => protobuf/src/test/java/org/apache/camel/quarkus/component/protobuf/it/ProtobufIT.java} (90%) rename {extensions-jvm/protobuf/integration-test => integration-tests/protobuf}/src/test/java/org/apache/camel/quarkus/component/protobuf/it/ProtobufTest.java (100%)