This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot_sbom
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git


    omit 4120abcb Regen SBOM from commit 
e9719a7cf7cfe8c791104095a8a61ee9a3304c4f
     add de0a074f Regen SBOM from commit 
e9719a7cf7cfe8c791104095a8a61ee9a3304c4f (#2007)
     add 197e6df3 Replace IBM bean by the IBM jakarta version (#2006)
     add 51178428 Fix AWS DDB Streams Source Kamelet
     add b468cd6e chore: Add AWS Kinesis Kamelet tests
     add 016479ae Bump org.apache.maven.plugins:maven-deploy-plugin from 3.1.1 
to 3.1.2 (#2015)
     add a4986b60 Bump org.apache.maven.resolver:maven-resolver-api from 1.9.19 
to 1.9.20 (#2014)
     add 137f4ca4 Kamelet Options: Remove the Camel K specific part and try to 
make the documentation agnostic
     add af2daae5 Kamelet Options: Remove the Camel K specific part and try to 
make the documentation agnostic
     add 8aaa8573 Update Camel Version for documentation
     add b6cdc8f1 Updated CHANGELOG.md
     add c8b1297e First attempt at improving Kamelet documentation
     add ddb9da57 First attempt at improving Kamelet documentation
     add 18e5a5a2 First attempt at improving Kamelet documentation
     add c31b25a8 First attempt at improving Kamelet documentation
     add 8f139ba5 Regen SBOM from commit 
c31b25a830413b8d22d52f229636b790842fdf6f

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   (4120abcb)
            \
             N -- N -- N   refs/heads/regen_bot_sbom (8f139ba5)

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.

No new revisions were added by this update.

Summary of changes:
 CHANGELOG.md                                       |   5 +-
 camel-kamelets-sbom/camel-kamelets-sbom.json       | 193 ++++++++++++++++++---
 camel-kamelets-sbom/camel-kamelets-sbom.xml        |  97 ++++++++---
 docs/antora.yml                                    |   2 +-
 .../ROOT/examples/template/kamelet-options.adoc    | 125 ++++---------
 .../ROOT/partials/aws-s3-source-description.adoc   |  65 +++++++
 kamelets/aws-ddb-streams-source.kamelet.yaml       |  10 +-
 kamelets/jms-ibm-mq-sink.kamelet.yaml              |   4 +-
 kamelets/jms-ibm-mq-source.kamelet.yaml            |   4 +-
 library/camel-kamelets-utils/pom.xml               |   7 +
 .../gson/JavaTimeInstantTypeAdapter.java           |  44 +++++
 .../ddb/Ddb2JsonStructDataTypeTransformer.java     |  46 +++++
 .../transformer/aws2-ddb-application-x-struct      |   1 +
 .../transformer/aws2-ddb-application-x-struct.json |  13 ++
 .../kamelets/aws-ddb-streams-source.kamelet.yaml   |  10 +-
 .../kamelets/jms-ibm-mq-sink.kamelet.yaml          |   4 +-
 .../kamelets/jms-ibm-mq-source.kamelet.yaml        |   4 +-
 library/kamelets-maven-plugin/pom.xml              |   2 +-
 pom.xml                                            |   2 +-
 tests/camel-kamelets-itest/pom.xml                 |   6 +
 .../test/resources/aws/ddb/amazonDDBClient.groovy  |  12 +-
 .../aws/ddb/aws-ddb-sink-deleteItem.feature        |   1 +
 .../test/resources/aws/ddb/aws-ddb-sink-pipe.yaml  |   4 +-
 .../resources/aws/ddb/aws-ddb-sink-putItem.feature |   1 +
 .../aws/ddb/aws-ddb-sink-updateItem.feature        |   1 +
 ...Item.feature => aws-ddb-source-getItem.feature} |  33 ++--
 .../aws-ddb-source-pipe.yaml}                      |  10 +-
 .../src/test/resources/aws/ddb/yaks-config.yaml    |   1 +
 .../amazonKinesisClient.groovy}                    |  14 +-
 .../aws-kinesis-sink-pipe.yaml}                    |  34 ++--
 .../resources/aws/kinesis/aws-kinesis-sink.feature |  58 +++++++
 .../aws-kinesis-source-pipe.yaml}                  |  13 +-
 .../aws/kinesis/aws-kinesis-source.feature         |  48 +++++
 .../aws/{ddb => kinesis}/yaks-config.yaml          |  13 +-
 34 files changed, 667 insertions(+), 220 deletions(-)
 create mode 100644 docs/modules/ROOT/partials/aws-s3-source-description.adoc
 create mode 100644 
library/camel-kamelets-utils/src/main/java/org/apache/camel/kamelets/utils/serialization/gson/JavaTimeInstantTypeAdapter.java
 create mode 100644 
library/camel-kamelets-utils/src/main/java/org/apache/camel/kamelets/utils/transform/aws2/ddb/Ddb2JsonStructDataTypeTransformer.java
 create mode 100644 
library/camel-kamelets-utils/src/main/resources/META-INF/services/org/apache/camel/transformer/aws2-ddb-application-x-struct
 create mode 100644 
library/camel-kamelets-utils/src/main/resources/META-INF/services/org/apache/camel/transformer/aws2-ddb-application-x-struct.json
 copy 
tests/camel-kamelets-itest/src/test/resources/aws/ddb/{aws-ddb-sink-putItem.feature
 => aws-ddb-source-getItem.feature} (61%)
 copy 
tests/camel-kamelets-itest/src/test/resources/aws/{s3/aws-s3-uri-pipe.yaml => 
ddb/aws-ddb-source-pipe.yaml} (87%)
 copy 
tests/camel-kamelets-itest/src/test/resources/aws/{s3/amazonS3Client.groovy => 
kinesis/amazonKinesisClient.groovy} (84%)
 copy 
tests/camel-kamelets-itest/src/test/resources/aws/{s3/aws-s3-to-knative-broker.yaml
 => kinesis/aws-kinesis-sink-pipe.yaml} (75%)
 create mode 100644 
tests/camel-kamelets-itest/src/test/resources/aws/kinesis/aws-kinesis-sink.feature
 copy 
tests/camel-kamelets-itest/src/test/resources/aws/{s3/aws-s3-uri-pipe.yaml => 
kinesis/aws-kinesis-source-pipe.yaml} (85%)
 create mode 100644 
tests/camel-kamelets-itest/src/test/resources/aws/kinesis/aws-kinesis-source.feature
 copy tests/camel-kamelets-itest/src/test/resources/aws/{ddb => 
kinesis}/yaks-config.yaml (86%)

Reply via email to