This is an automated email from the ASF dual-hosted git repository.
coheigea pushed a change to branch coheigea/userinfo
in repository https://gitbox.apache.org/repos/asf/cxf.git
discard 1d41d8b91bf Filter claims by granted scopes for the IdToken case
add 7a12ad6adb9 Bump cxf.hibernate.em.version from 7.4.3.Final to
7.4.4.Final (#3302)
add 16ac0e403ca [CXF-9229] Add PQC TLS 1.3 support via X25519MLKEM768
hybrid KEM (#3299)
add da5edccdb85 Add maxSize to BinaryDataProvider so the payload size
could be constrained (to 1Gb by default) (#3301)
add 3682dd9bbdc Bump org.hibernate.validator:hibernate-validator (#3306)
add 29759b77fe7 Bump actions/setup-java from 5.4.0 to 5.5.0 (#3309)
add 9ade17cb603 Bump github/codeql-action/upload-sarif from 4.36.2 to
4.37.0 (#3305)
add 7564c7005e3 Bump github/codeql-action/analyze from 4.36.2 to 4.37.0
(#3308)
add dad42493b27 Bump io.opentelemetry.semconv:opentelemetry-semconv (#3312)
add 45685c09712 Bump ch.qos.logback:logback-classic from 1.5.37 to 1.5.38
(#3313)
add 1d6be7fe572 Bump cxf.opentelemetry.version from 1.63.0 to 1.64.0
(#3314)
add 317a86a6336 Filter claims by granted scopes for the IdToken case
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 (1d41d8b91bf)
\
N -- N -- N refs/heads/coheigea/userinfo (317a86a6336)
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/codeql-analysis.yml | 6 +-
.github/workflows/pull-request-build.yml | 2 +-
.github/workflows/scorecards.yml | 2 +-
.../jsse/TLSClientParametersConfig.java | 3 +
.../cxf/configuration/jsse/TLSParameterBase.java | 21 +++
.../jsse/TLSServerParametersConfig.java | 3 +
.../java/org/apache/cxf/helpers/CastUtils.java | 10 +-
.../main/java/org/apache/cxf/helpers/IOUtils.java | 30 +++-
.../java/org/apache/cxf/io/CachedOutputStream.java | 8 +-
.../resources/schemas/configuration/security.xsd | 32 ++++
parent/pom.xml | 12 +-
.../cxf/jaxrs/provider/BinaryDataProvider.java | 7 +-
.../cxf/jaxrs/provider/BinaryDataProviderTest.java | 19 +++
.../cache/CacheControlClientReaderInterceptor.java | 9 +-
.../jaxrs/client/cache/CacheControlFeature.java | 8 +-
.../cxf/rs/security/oidc/idp/UserInfoService.java | 30 ++--
.../http_jetty/BCJsseServerALPNProcessor.java | 79 ++++++++++
.../http_jetty/JettyHTTPServerEngine.java | 31 +++-
.../org.eclipse.jetty.io.ssl.ALPNProcessor$Server | 1 +
.../cxf/transport/http/HttpClientHTTPConduit.java | 4 +
.../org/apache/cxf/transport/https/SSLUtils.java | 40 +++++
systests/transports/pom.xml | 29 ++++
.../cxf/systest/https/pqc/BCJssePQCTest.java | 166 +++++++++++++++++++++
.../apache/cxf/systest/https/pqc/PQCTLSTest.java | 148 ++++++++++++++++++
.../src/test/resources/logging.properties | 4 +-
.../cxf/systest/https/pqc/bcjsse-client.xml} | 30 ++--
.../cxf/systest/https/pqc/bcjsse-server.xml} | 58 ++++---
.../apache/cxf/systest/https/pqc/pqc-client.xml} | 25 ++--
.../apache/cxf/systest/https/pqc/pqc-server.xml} | 51 ++++---
29 files changed, 769 insertions(+), 99 deletions(-)
create mode 100644
rt/transports/http-jetty/src/main/java/org/apache/cxf/transport/http_jetty/BCJsseServerALPNProcessor.java
create mode 100644
rt/transports/http-jetty/src/main/resources/META-INF/services/org.eclipse.jetty.io.ssl.ALPNProcessor$Server
create mode 100644
systests/transports/src/test/java/org/apache/cxf/systest/https/pqc/BCJssePQCTest.java
create mode 100644
systests/transports/src/test/java/org/apache/cxf/systest/https/pqc/PQCTLSTest.java
copy
systests/{rs-security/src/test/resources/org/apache/cxf/systest/jaxrs/security/oidc/client.xml
=>
transports/src/test/resources/org/apache/cxf/systest/https/pqc/bcjsse-client.xml}
(67%)
copy
systests/{transport-hc5/src/test/resources/org/apache/cxf/systest/hc5/https/sni/client-sni-server.xml
=>
transports/src/test/resources/org/apache/cxf/systest/https/pqc/bcjsse-server.xml}
(50%)
copy
systests/{rs-security/src/test/resources/org/apache/cxf/systest/jaxrs/security/oidc/client.xml
=>
transports/src/test/resources/org/apache/cxf/systest/https/pqc/pqc-client.xml}
(73%)
copy
systests/{transport-hc5/src/test/resources/org/apache/cxf/systest/hc5/https/sni/client-sni-server.xml
=>
transports/src/test/resources/org/apache/cxf/systest/https/pqc/pqc-server.xml}
(55%)