This is an automated email from the ASF dual-hosted git repository.
coheigea pushed a change to branch coheigea/fiql-sql
in repository https://gitbox.apache.org/repos/asf/cxf.git
discard 44075e935ad Validate SQL expressions after FIQL conversion
add a7cd1b1c043 Bump cxf.hibernate.em.version from 7.3.2.Final to
7.3.3.Final (#3087)
add 7cfbea28655 Bump org.apache.maven.plugins:maven-invoker-plugin from
3.10.0 to 3.10.1 (#3088)
add 353cc3cb1dd Bump com.puppycrawl.tools:checkstyle from 13.4.1 to 13.4.2
(#3089)
add 062ebd17a74 Restrict valid URL protocols in TLSParameterJaxBUtils and
URIResolver (#3091)
add a04c05c22f8 [CXF-9147]To accommodate the behaviour that several schema
namespaces… (#3093)
add 70c8f75dc5b Update cxf-build-utils 4.1.4
add dc6fc8f73a0 Update OpenTelemetry to 1.62.0
add 4cea9f63f7f Removing SQLPrinterVisitor due to security concerns
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 (44075e935ad)
\
N -- N -- N refs/heads/coheigea/fiql-sql (4cea9f63f7f)
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:
.../configuration/jsse/TLSParameterJaxBUtils.java | 23 +-
.../java/org/apache/cxf/resource/URIResolver.java | 40 ++++
.../jsse/TLSParameterJaxBUtilsTest.java | 93 ++++++++
.../org/apache/cxf/resource/URIResolverTest.java | 45 ++++
parent/pom.xml | 8 +-
pom.xml | 2 +-
.../jaxrs/ext/search/AbstractComplexCondition.java | 4 -
.../jaxrs/ext/search/PrimitiveSearchCondition.java | 6 +-
.../apache/cxf/jaxrs/ext/search/SearchUtils.java | 7 -
.../jaxrs/ext/search/SimpleSearchCondition.java | 4 -
.../jaxrs/ext/search/jpa/JPALanguageVisitor.java | 56 -----
.../jaxrs/ext/search/sql/SQLPrinterVisitor.java | 190 -----------------
.../cxf/jaxrs/ext/search/fiql/FiqlParserTest.java | 43 ----
.../ext/search/jpa/JPALanguageVisitorTest.java | 39 ----
.../ext/search/sql/SQLHierarchicalQueryTest.java | 83 --------
.../ext/search/sql/SQLPrinterVisitorTest.java | 234 ---------------------
.../cxf/wsdl11/AbstractWrapperWSDLLocator.java | 13 +-
.../org/apache/cxf/systest/jaxrs/BookServer.java | 3 -
.../systest/jaxrs/JAXRSClientServerBookTest.java | 22 --
.../wsdlto/databinding/jaxb/JAXBDataBinding.java | 85 ++++++++
.../wsdlto/jaxb/JAXBCodeGenNamespaceTest.java | 57 +++++
.../cxf9147/cxf9147-shared-package.wsdl | 123 +++++++++++
22 files changed, 473 insertions(+), 707 deletions(-)
create mode 100644
core/src/test/java/org/apache/cxf/configuration/jsse/TLSParameterJaxBUtilsTest.java
delete mode 100644
rt/rs/extensions/search/src/main/java/org/apache/cxf/jaxrs/ext/search/jpa/JPALanguageVisitor.java
delete mode 100644
rt/rs/extensions/search/src/main/java/org/apache/cxf/jaxrs/ext/search/sql/SQLPrinterVisitor.java
delete mode 100644
rt/rs/extensions/search/src/test/java/org/apache/cxf/jaxrs/ext/search/jpa/JPALanguageVisitorTest.java
delete mode 100644
rt/rs/extensions/search/src/test/java/org/apache/cxf/jaxrs/ext/search/sql/SQLHierarchicalQueryTest.java
delete mode 100644
rt/rs/extensions/search/src/test/java/org/apache/cxf/jaxrs/ext/search/sql/SQLPrinterVisitorTest.java
create mode 100644
tools/wsdlto/test/src/test/java/org/apache/cxf/tools/wsdlto/jaxb/JAXBCodeGenNamespaceTest.java
create mode 100644
tools/wsdlto/test/src/test/resources/wsdl2java_wsdl/cxf9147/cxf9147-shared-package.wsdl