This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch dependabot/maven/mcp-java-sdk-version-1.1.0
in repository https://gitbox.apache.org/repos/asf/camel.git
omit ae55f57b6d1e chore(deps): Bump mcp-java-sdk-version from 1.0.0 to 1.1.0
add 73914b118c9c CAMEL-23203 - Camel-PQC: Add algorithm metadata to hybrid
wire formats (#22053)
add cef8d588fa71 CAMEL-23204 - CAMEL-PQC: Enforce key status checks before
cryptographic operations in PQCProducer (#22052)
add 1b6e0137a00a chore(deps): Bump spring-security-version from 7.0.3 to
7.0.4
add 877900440ce4 chore(deps): Bump com.openai:openai-java from 4.26.0 to
4.28.0
add f142739a38e8 chore(deps): Bump mcp-java-sdk-version from 1.0.0 to 1.1.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 (ae55f57b6d1e)
\
N -- N -- N
refs/heads/dependabot/maven/mcp-java-sdk-version-1.1.0 (f142739a38e8)
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:
.../org/apache/camel/catalog/components/pqc.json | 14 +-
components/camel-pqc/pom.xml | 5 +
.../component/pqc/PQCComponentConfigurer.java | 6 +
.../camel/component/pqc/PQCEndpointConfigurer.java | 6 +
.../camel/component/pqc/PQCEndpointUriFactory.java | 3 +-
.../org/apache/camel/component/pqc/pqc.json | 14 +-
.../camel-pqc/src/main/docs/pqc-component.adoc | 129 ++++++-
.../apache/camel/component/pqc/PQCAlgorithmId.java | 150 ++++++++
.../camel/component/pqc/PQCConfiguration.java | 23 ++
.../apache/camel/component/pqc/PQCProducer.java | 100 +++++-
.../component/pqc/PQCKeyStatusEnforcementTest.java | 378 +++++++++++++++++++++
.../component/dsl/PqcComponentBuilderFactory.java | 23 ++
.../endpoint/dsl/PQCEndpointBuilderFactory.java | 40 +++
parent/pom.xml | 4 +-
14 files changed, 875 insertions(+), 20 deletions(-)
create mode 100644
components/camel-pqc/src/main/java/org/apache/camel/component/pqc/PQCAlgorithmId.java
create mode 100644
components/camel-pqc/src/test/java/org/apache/camel/component/pqc/PQCKeyStatusEnforcementTest.java