This is an automated email from the ASF dual-hosted git repository.
gnodet pushed a change to branch CAMEL-22987-strict-yaml-schema
in repository https://gitbox.apache.org/repos/asf/camel.git
discard 2ea6aa0c8026 CAMEL-22987: Add strict YAML DSL JSON Schema variant
add a98acd304531 [build] Don't cancel in-progress main branch builds
(#22051)
add 5b181ba08132 Revert "Upgrade jooq that is jdk21 only"
add da44839e16e3 chore(deps): Bump org.apache.fory:fory-core from 0.15.0
to 0.16.0
add 052c4754adad chore(deps): Bump com.ibm.cloud:secrets-manager from
2.0.22 to 2.0.27
add ac891c0cc5b8 chore(deps): Bump com.sun.xml.bind:jaxb-jxc from 4.0.6 to
4.0.7
add a5f53c6dd414 chore(deps): Bump aws-java-sdk2-version from 2.42.13 to
2.42.14
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 4c1e28e576ff chore(deps): Bump
io.smallrye:smallrye-fault-tolerance-standalone
add 81903c5d0582 CAMEL-22987: Add strict YAML DSL JSON Schema variant
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 (2ea6aa0c8026)
\
N -- N -- N refs/heads/CAMEL-22987-strict-yaml-schema
(81903c5d0582)
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:
.github/workflows/main-build.yml | 4 +-
.../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 | 17 +-
15 files changed, 884 insertions(+), 28 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