This is an automated email from the ASF dual-hosted git repository.
deki pushed a change to branch spring-5-boot-2
in repository https://gitbox.apache.org/repos/asf/cxf.git.
discard c55f4df Spring 5/ Spring Boot 2
add b4329d2 [CXF-7639] Update dependency to servlet 4.0
add 403af86 Merge pull request #380 from andymc12/servlet4
add 1101d8e [CXF-7638] Only register provider if it implements specified
contracts
add e11638d [CXF-7638] Code Review comments - filter contracts based on
RuntimeType
add 86faaed [CXF-7638] Proper behavior of isEnabled method.
add f89074d [CXF-7638] ClientConfigurableImpl changes
add 8cd6a3e [CXF-7638] Check ConstrainedTo annotation
add 2fd0b2e Merge pull request #379 from andymc12/registerContracts
add ac91233 Switching wsdl_maven project to pick up XJC from the CXF
version
add 1b0714b Removed Sun xmlns:jaxws namespace where it's not needed
add 5df707a Use latest releases
add 25126bf Replace with javadocs only if no info was already provided by
Swagger annotations
add 3d17bea [CXF-7642] Introduce separate modules for RxJava & RxJava2
(#381)
add 3b57c64 Avoid NPE in ClientCodeRequestFilter if the state is not
configured
add 2b1b6fa update swagger-ui to latest version
add 208b6c4 [CXF-7652] UriBuilderImpl: null-empty differentiation for
query/matrix (#383)
add c942c4d CXF-7654 - Swagger 2 document doesn't contain Info/BasePath
on Karaf
add 5188523 Trivial change to use a base type
add 54dc0e4 [CXF-7655]java2swagger maven plugin not java9 compat
add 5d62442 Using the wrong ports
add c8dcde0 Adding OAuth 2.0 ClientCodeRequestFilter test
add 30a6e5b Merge branch 'master' of github.com:apache/cxf
add 65f119d CXF-7653 - Adding an @Ignore'd test that reproduces the NPE
add 1396f04 [CXF-7653] Throw a more informative exception if the result
could not be obtained from the response soap message
add 99cf1dd [CXF-7649] - Upgrading to MicroProfile Rest Client 1.0.1
add bfd27cf [CXF-7471] Use createResendCandidate() instead of constructor
directly
add 5405473 [CXF-7508] CloseSequenceResponse does not have acknowledgments
add 7d8fe7b [CXF-7522] Only do the exponential backoff if that is the
algorithm selected (the default)
add 9fd0678 For wsrm 1.2, make sure the TerminateSequenceResponseType is
returned
add 134b173 [CXF-7508] TerminateSequenceResponse does not have
acknowledgments
add f1ce68d Some code cleanup
new 2f1ff2f Spring 5/ Spring Boot 2
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 (c55f4df)
\
N -- N -- N refs/heads/spring-5-boot-2 (2f1ff2f)
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.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../java/org/apache/cxf/endpoint/ClientImpl.java | 13 +
.../samples/jax_rs/description_openapi_v3/pom.xml | 2 +-
.../samples/jax_rs/description_swagger2/pom.xml | 2 +-
.../release/samples/jax_rs/spring_boot/pom.xml | 2 +-
.../jax_rs/spring_boot_scan/application/pom.xml | 2 +-
.../release/samples/jax_rs/spring_security/pom.xml | 2 +-
.../server/src/main/webapp/WEB-INF/oauth-beans.xml | 2 +-
distribution/src/main/release/samples/pom.xml | 4 +-
.../cxf/cdi/CdiServerConfigurableFactory.java | 2 +-
maven-plugins/java2swagger-plugin/pom.xml | 18 ++
parent/pom.xml | 12 +-
pom.xml | 4 +-
.../cxf/binding/soap/SoapBindingFactory.java | 5 +-
.../cxf/binding/soap/SoapTransportFactory.java | 4 +-
.../apache/cxf/binding/xml/XMLBindingFactory.java | 5 +-
.../ext/AbstractStreamingResponseExtension.java | 39 +++
.../apache/cxf/jaxrs/impl/ConfigurableImpl.java | 89 +++++-
.../apache/cxf/jaxrs/impl/ConfigurationImpl.java | 34 ++-
.../org/apache/cxf/jaxrs/impl/UriBuilderImpl.java | 32 ++-
.../jaxrs/provider/ServerConfigurableFactory.java | 12 +-
.../cxf/jaxrs/provider/ServerProviderFactory.java | 2 +-
.../org/apache/cxf/jaxrs/utils/JAXRSUtils.java | 20 +-
.../test/java/org/apache/cxf/jaxrs/Customer.java | 5 +-
.../cxf/jaxrs/impl/ConfigurationImplTest.java | 304 ++++++++++++++++++++-
.../org/apache/cxf/jaxrs/utils/JAXRSUtilsTest.java | 20 +-
.../apache/cxf/jaxrs/client/AbstractClient.java | 16 +-
.../jaxrs/client/spec/ClientConfigurableImpl.java | 12 +-
.../spring/JaxRsProxyClientConfiguration.java | 9 +-
.../cxf/jaxrs/client/spec/ClientImplTest.java | 4 +-
.../cxf/jaxrs/openapi/OpenApiCustomizer.java | 33 ++-
.../cxf/jaxrs/swagger/Swagger2Customizer.java | 9 +-
.../apache/cxf/jaxrs/swagger/Swagger2Feature.java | 88 +++---
.../apache/cxf/jaxrs/model/wadl/WadlGenerator.java | 4 +-
.../cxf/jaxrs/provider/json/JSONProvider.java | 6 +-
.../jaxrs/reactor/server/ReactorCustomizer.java | 36 +++
...rs.ext.JAXRSServerFactoryCustomizationExtension | 1 +
rt/rs/extensions/rx/pom.xml | 19 --
.../cxf/jaxrs/rx/server/ObservableCustomizer.java | 30 ++
...rs.ext.JAXRSServerFactoryCustomizationExtension | 1 +
rt/rs/extensions/{rx => rx2}/pom.xml | 20 +-
.../cxf/jaxrs/rx2/client/FlowableRxInvoker.java | 0
.../jaxrs/rx2/client/FlowableRxInvokerImpl.java | 0
.../rx2/client/FlowableRxInvokerProvider.java | 0
.../cxf/jaxrs/rx2/client/ObservableRxInvoker.java | 0
.../jaxrs/rx2/client/ObservableRxInvokerImpl.java | 0
.../rx2/client/ObservableRxInvokerProvider.java | 0
.../cxf/jaxrs/rx2/server/ReactiveIOCustomizer.java | 36 +++
.../cxf/jaxrs/rx2/server/ReactiveIOInvoker.java | 4 +-
...rs.ext.JAXRSServerFactoryCustomizationExtension | 1 +
.../ext/search/DefaultParamConverterProvider.java | 7 +-
.../sci/JaxrsServletContainerInitializer.java | 9 +-
.../client/MicroProfileClientConfigurableImpl.java | 5 +-
rt/rs/pom.xml | 1 +
.../cors/CrossOriginResourceSharingFilter.java | 4 +-
.../security/jose/jwe/AbstractJweEncryption.java | 3 +-
.../oauth2/client/ClientCodeRequestFilter.java | 6 +-
.../client/MemoryClientCodeStateManager.java | 6 +-
.../security/oauth2/client/OAuthClientUtils.java | 6 +-
.../oauth2/tokens/hawk/NonceVerifierImpl.java | 2 +-
.../utils/crypto/ModelEncryptionSupport.java | 12 +-
.../cxf/rs/security/oidc/utils/OidcUtils.java | 46 ++--
.../cxf/transport/sse/SseHttpTransportFactory.java | 7 +-
.../apache/cxf/rt/security/crypto/CryptoUtils.java | 16 +-
.../asyncclient/AsyncHttpTransportFactory.java | 5 +-
.../http_jetty/JettyHTTPServerEngine.java | 16 +-
.../cxf/transport/http_jetty/invalid-engines.xml | 2 +-
.../server-engine-factory-jetty9-connector.xml | 2 +-
.../transport/http_jetty/server-engine-factory.xml | 2 +-
.../netty/client/NettyHttpTransportFactory.java | 7 +-
.../netty/server/NettyHttpTransportFactory.java | 5 +-
.../transport/http_undertow/invalid-engines.xml | 2 +-
.../http_undertow/server-engine-factory.xml | 2 +-
.../cxf/transport/http/HTTPTransportFactory.java | 5 +-
.../cxf/transport/jms/JMSMessageHeadersType.java | 35 +--
.../apache/cxf/transport/jms/JMSMessageUtils.java | 10 +-
.../cxf/transport/jms/JMSTransportFactory.java | 5 +-
.../apache/cxf/transport/jms/uri/JMSEndpoint.java | 10 +-
.../cxf/transport/local/LocalTransportFactory.java | 3 +-
.../cxf/transport/udp/UDPTransportFactory.java | 3 +-
.../websocket/WebSocketTransportFactory.java | 5 +-
.../org/apache/cxf/ws/rm/RMOutInterceptor.java | 9 +-
.../main/java/org/apache/cxf/ws/rm/Servant.java | 7 +-
.../apache/cxf/ws/rm/soap/RedeliveryQueueImpl.java | 6 +-
.../cxf/ws/rm/soap/RetransmissionQueueImpl.java | 4 +-
.../cxf/sts/rest/RESTSecurityTokenServiceImpl.java | 35 +--
systests/jaxrs/pom.xml | 5 +
.../apache/cxf/systest/http/resources/Abost.cxf | 1 -
.../apache/cxf/systest/http/resources/Bethal.cxf | 1 -
.../systest/http/resources/BethalClientConfig.cxf | 1 -
.../apache/cxf/systest/http/resources/Gordy.cxf | 1 -
.../http/resources/Http2HttpLoopRedirectFail.cxf | 1 -
.../systest/http/resources/Http2HttpRedirect.cxf | 1 -
.../apache/cxf/systest/http/resources/Hurlon.cxf | 1 -
.../apache/cxf/systest/http/resources/Morpit.cxf | 1 -
.../apache/cxf/systest/http/resources/Mortimer.cxf | 1 -
.../apache/cxf/systest/http/resources/Poltim.cxf | 1 -
.../apache/cxf/systest/http/resources/Rethwel.cxf | 1 -
.../cxf/systest/http/resources/SessionServer.xml | 2 +-
.../http/resources/SessionServer_Windows.xml | 2 +-
.../apache/cxf/systest/http/resources/Tarpin.cxf | 1 -
.../systest/jaxrs/JAXRS20ClientServerBookTest.java | 2 +-
.../jaxrs/reactive/RxJava2FlowableServer.java | 13 +-
.../jaxrs/reactive/RxJavaObservableServer.java | 10 +-
.../cxf/systest/jaxrs/reactor/MonoReactorTest.java | 1 +
.../cxf/systest/jaxrs/reactor/ReactorServer.java | 18 +-
.../apache/cxf/systest/http/resources/Abost.cxf | 1 -
.../apache/cxf/systest/http/resources/Bethal.cxf | 1 -
.../systest/http/resources/BethalClientConfig.cxf | 1 -
.../apache/cxf/systest/http/resources/Gordy.cxf | 1 -
.../http/resources/Http2HttpLoopRedirectFail.cxf | 1 -
.../systest/http/resources/Http2HttpRedirect.cxf | 1 -
.../apache/cxf/systest/http/resources/Hurlon.cxf | 1 -
.../apache/cxf/systest/http/resources/Morpit.cxf | 1 -
.../apache/cxf/systest/http/resources/Mortimer.cxf | 1 -
.../apache/cxf/systest/http/resources/Poltim.cxf | 1 -
.../apache/cxf/systest/http/resources/Rethwel.cxf | 1 -
.../cxf/systest/http/resources/SessionServer.xml | 2 +-
.../http/resources/SessionServer_Windows.xml | 2 +-
.../apache/cxf/systest/http/resources/Tarpin.cxf | 1 -
.../security/oauth2/common/OAuth2TestUtils.java | 1 +
.../oauth2/common/OAuthDataProviderImpl.java | 18 +-
.../oauth2/common/WSS4JBasicAuthFilter.java | 5 +
.../security/oauth2/filters/OAuth2FiltersTest.java | 90 ++++++
.../security/oauth2/filters/PartnerServer.java | 49 ++++
.../security/oauth2/filters/PartnerService.java | 73 +++++
.../security/oauth2/filters/oauth20-server.xml | 1 +
.../{oauth20-server.xml => partner-service.xml} | 116 ++++----
.../cxf/systest/http_undertow/undertow-engine.xml | 2 +-
.../cxf/systest/servlet/resolver/ResolverTest.java | 3 +-
.../org/apache/cxf/systest/http/Abost.cxf | 1 -
.../cxf/systest/http/Http2HttpLoopRedirectFail.cxf | 1 -
.../apache/cxf/systest/http/Http2HttpRedirect.cxf | 1 -
.../org/apache/cxf/systest/http/Hurlon.cxf | 1 -
.../org/apache/cxf/systest/http/Mortimer.cxf | 1 -
.../org/apache/cxf/systest/http/Rethwel.cxf | 1 -
.../apache/cxf/systest/http_jetty/jetty-engine.xml | 2 +-
.../apache/cxf/systest/https/conduit/Bethal.cxf | 1 -
.../systest/https/conduit/BethalClientConfig.cxf | 1 -
.../org/apache/cxf/systest/https/conduit/Gordy.cxf | 1 -
.../apache/cxf/systest/https/conduit/Morpit.cxf | 1 -
.../apache/cxf/systest/https/conduit/Mortimer.cxf | 1 -
.../apache/cxf/systest/https/conduit/Poltim.cxf | 1 -
.../apache/cxf/systest/https/conduit/Tarpin.cxf | 1 -
systests/uncategorized/pom.xml | 3 +
.../org/apache/cxf/systest/soap/DummyService.java | 44 +++
.../cxf/systest/soap/EmptySOAPBodyServer.java | 47 ++++
.../apache/cxf/systest/soap/EmptySOAPBodyTest.java | 90 ++++++
.../src/test/resources/DoubleItLogical.wsdl | 0
.../org/apache/cxf/systest/soap/DoubleIt.wsdl | 42 +++
.../org/apache/cxf/systest/soap/client.xml | 33 +++
.../org/apache/cxf/systest/soap/server.xml | 51 ++++
.../cxf/systest/ws/action/signature-server.xml | 12 +-
.../systest/ws/action/signature-stax-server.xml | 12 +-
.../wsdl_maven/codegen/src/it/it-parent/pom.xml | 2 +-
.../apache/cxf/mtom_xop/TestMtomProviderImpl.java | 19 +-
.../tools/corba/processors/idl/StringVisitor.java | 2 +-
156 files changed, 1551 insertions(+), 535 deletions(-)
create mode 100644
rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/ext/AbstractStreamingResponseExtension.java
create mode 100644
rt/rs/extensions/reactor/src/main/java/org/apache/cxf/jaxrs/reactor/server/ReactorCustomizer.java
create mode 100644
rt/rs/extensions/reactor/src/main/resources/META-INF/services/org.apache.cxf.jaxrs.ext.JAXRSServerFactoryCustomizationExtension
create mode 100644
rt/rs/extensions/rx/src/main/java/org/apache/cxf/jaxrs/rx/server/ObservableCustomizer.java
create mode 100644
rt/rs/extensions/rx/src/main/resources/META-INF/services/org.apache.cxf.jaxrs.ext.JAXRSServerFactoryCustomizationExtension
copy rt/rs/extensions/{rx => rx2}/pom.xml (77%)
rename rt/rs/extensions/{rx =>
rx2}/src/main/java/org/apache/cxf/jaxrs/rx2/client/FlowableRxInvoker.java (100%)
rename rt/rs/extensions/{rx =>
rx2}/src/main/java/org/apache/cxf/jaxrs/rx2/client/FlowableRxInvokerImpl.java
(100%)
rename rt/rs/extensions/{rx =>
rx2}/src/main/java/org/apache/cxf/jaxrs/rx2/client/FlowableRxInvokerProvider.java
(100%)
rename rt/rs/extensions/{rx =>
rx2}/src/main/java/org/apache/cxf/jaxrs/rx2/client/ObservableRxInvoker.java
(100%)
rename rt/rs/extensions/{rx =>
rx2}/src/main/java/org/apache/cxf/jaxrs/rx2/client/ObservableRxInvokerImpl.java
(100%)
rename rt/rs/extensions/{rx =>
rx2}/src/main/java/org/apache/cxf/jaxrs/rx2/client/ObservableRxInvokerProvider.java
(100%)
create mode 100644
rt/rs/extensions/rx2/src/main/java/org/apache/cxf/jaxrs/rx2/server/ReactiveIOCustomizer.java
rename rt/rs/extensions/{rx =>
rx2}/src/main/java/org/apache/cxf/jaxrs/rx2/server/ReactiveIOInvoker.java (92%)
create mode 100644
rt/rs/extensions/rx2/src/main/resources/META-INF/services/org.apache.cxf.jaxrs.ext.JAXRSServerFactoryCustomizationExtension
create mode 100644
systests/rs-security/src/test/java/org/apache/cxf/systest/jaxrs/security/oauth2/filters/PartnerServer.java
create mode 100644
systests/rs-security/src/test/java/org/apache/cxf/systest/jaxrs/security/oauth2/filters/PartnerService.java
copy
systests/rs-security/src/test/resources/org/apache/cxf/systest/jaxrs/security/oauth2/filters/{oauth20-server.xml
=> partner-service.xml} (58%)
create mode 100644
systests/uncategorized/src/test/java/org/apache/cxf/systest/soap/DummyService.java
create mode 100644
systests/uncategorized/src/test/java/org/apache/cxf/systest/soap/EmptySOAPBodyServer.java
create mode 100644
systests/uncategorized/src/test/java/org/apache/cxf/systest/soap/EmptySOAPBodyTest.java
copy systests/{ws-security =>
uncategorized}/src/test/resources/DoubleItLogical.wsdl (100%)
create mode 100644
systests/uncategorized/src/test/resources/org/apache/cxf/systest/soap/DoubleIt.wsdl
create mode 100644
systests/uncategorized/src/test/resources/org/apache/cxf/systest/soap/client.xml
create mode 100644
systests/uncategorized/src/test/resources/org/apache/cxf/systest/soap/server.xml
--
To stop receiving notification emails like this one, please contact
[email protected].