This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch regen_bot in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
from 7edcef93 Regen SBOM from commit c31b25a830413b8d22d52f229636b790842fdf6f (#2020) add b06399e8 Improve Protobuf serialization/deserialization Kamelets No new revisions were added by this update. Summary of changes: kamelets/protobuf-deserialize-action.kamelet.yaml | 2 +- kamelets/protobuf-serialize-action.kamelet.yaml | 2 +- .../camel/kamelets/utils/format/MimeType.java | 2 + .../camel/kamelets/utils/format/SchemaType.java | 49 ------- .../format/schema/DelegatingSchemaResolver.java | 4 +- .../utils/format/schema/protobuf/Protobuf.java | 29 ---- .../schema/protobuf/ProtobufSchemaResolver.java | 159 --------------------- .../protobuf-deserialize-action.kamelet.yaml | 2 +- .../protobuf-serialize-action.kamelet.yaml | 2 +- .../src/test/java/KameletsYaksIT.java | 1 + .../src/test/resources/avro/README.md | 10 +- .../test/resources/aws/s3/aws-s3-http-pipe.feature | 2 + .../resources/earthquake/earthquake-source.feature | 2 + .../src/test/resources/kafka/kafka-source.feature | 1 + .../src/test/resources/mail/mail-sink.feature | 1 + .../resources/openapi/rest-openapi-sink.feature | 2 + .../src/test/resources/protobuf/README.md | 42 ++++++ .../src/test/resources/protobuf/User.proto | 10 ++ .../protobuf-binary-source-pipe.yaml} | 17 ++- .../resources/protobuf/protobuf-data-type.feature | 22 +++ .../protobuf-deserialize-pipe.yaml} | 13 +- .../protobuf/protobuf-serdes-action.feature | 22 +++ .../protobuf-serialize-pipe.yaml} | 13 +- .../protobuf-x-struct-sink-pipe.yaml} | 17 ++- .../{openapi => protobuf}/yaks-config.yaml | 8 +- .../src/test/resources/timer/timer-source.feature | 2 + .../src/test/resources/timer/timer-to-http.feature | 2 + .../transformation/data-type-action.feature | 2 + .../transformation/extract-field-action.feature | 2 + .../transformation/insert-field-action.feature | 2 + 30 files changed, 178 insertions(+), 266 deletions(-) delete mode 100644 library/camel-kamelets-utils/src/main/java/org/apache/camel/kamelets/utils/format/SchemaType.java delete mode 100644 library/camel-kamelets-utils/src/main/java/org/apache/camel/kamelets/utils/format/schema/protobuf/Protobuf.java delete mode 100644 library/camel-kamelets-utils/src/main/java/org/apache/camel/kamelets/utils/format/schema/protobuf/ProtobufSchemaResolver.java create mode 100644 tests/camel-kamelets-itest/src/test/resources/protobuf/README.md create mode 100644 tests/camel-kamelets-itest/src/test/resources/protobuf/User.proto copy tests/camel-kamelets-itest/src/test/resources/{avro/avro-binary-source-pipe.yaml => protobuf/protobuf-binary-source-pipe.yaml} (81%) create mode 100644 tests/camel-kamelets-itest/src/test/resources/protobuf/protobuf-data-type.feature copy tests/camel-kamelets-itest/src/test/resources/{avro/avro-deserialize-pipe.yaml => protobuf/protobuf-deserialize-pipe.yaml} (80%) create mode 100644 tests/camel-kamelets-itest/src/test/resources/protobuf/protobuf-serdes-action.feature copy tests/camel-kamelets-itest/src/test/resources/{avro/avro-serialize-pipe.yaml => protobuf/protobuf-serialize-pipe.yaml} (83%) copy tests/camel-kamelets-itest/src/test/resources/{avro/avro-x-struct-sink-pipe.yaml => protobuf/protobuf-x-struct-sink-pipe.yaml} (81%) copy tests/camel-kamelets-itest/src/test/resources/{openapi => protobuf}/yaks-config.yaml (89%)