[resteasy/Resteasy] 5c7757: [RESTEASY-2781] Clients running in a resource meth...
by Ron Sigal
Branch: refs/heads/master
Home: https://github.com/resteasy/Resteasy
Commit: 5c7757b6dc8972e51b6f7e97e7d2faed3378f280
https://github.com/resteasy/Resteasy/commit/5c7757b6dc8972e51b6f7e97e7d2f...
Author: Ron Sigal <rsigal(a)redhat.com>
Date: 2020-12-23 (Wed, 23 Dec 2020)
Changed paths:
M docbook/reference/en/en-US/modules/ExceptionMappers.xml
M docbook/reference/en/en-US/modules/Installation_Configuration.xml
M resteasy-client-api/pom.xml
A resteasy-client-api/src/main/java/org/jboss/resteasy/client/exception/ResteasyBadRequestException.java
A resteasy-client-api/src/main/java/org/jboss/resteasy/client/exception/ResteasyClientErrorException.java
A resteasy-client-api/src/main/java/org/jboss/resteasy/client/exception/ResteasyForbiddenException.java
A resteasy-client-api/src/main/java/org/jboss/resteasy/client/exception/ResteasyInternalServerErrorException.java
A resteasy-client-api/src/main/java/org/jboss/resteasy/client/exception/ResteasyNotAcceptableException.java
A resteasy-client-api/src/main/java/org/jboss/resteasy/client/exception/ResteasyNotAllowedException.java
A resteasy-client-api/src/main/java/org/jboss/resteasy/client/exception/ResteasyNotAuthorizedException.java
A resteasy-client-api/src/main/java/org/jboss/resteasy/client/exception/ResteasyNotFoundException.java
A resteasy-client-api/src/main/java/org/jboss/resteasy/client/exception/ResteasyNotSupportedException.java
A resteasy-client-api/src/main/java/org/jboss/resteasy/client/exception/ResteasyRedirectionException.java
A resteasy-client-api/src/main/java/org/jboss/resteasy/client/exception/ResteasyServerErrorException.java
A resteasy-client-api/src/main/java/org/jboss/resteasy/client/exception/ResteasyServiceUnavailableException.java
A resteasy-client-api/src/main/java/org/jboss/resteasy/client/exception/ResteasyWebApplicationException.java
A resteasy-client-api/src/main/java/org/jboss/resteasy/client/exception/WebApplicationExceptionWrapper.java
M resteasy-client-microprofile-base/src/main/java/org/jboss/resteasy/microprofile/client/DefaultResponseExceptionMapper.java
M resteasy-client/src/main/java/org/jboss/resteasy/client/jaxrs/internal/ClientInvocation.java
M resteasy-core-spi/src/main/java/org/jboss/resteasy/spi/ResteasyDeployment.java
M resteasy-core-spi/src/main/java/org/jboss/resteasy/spi/ResteasyProviderFactory.java
M resteasy-core/src/main/java/org/jboss/resteasy/core/ResteasyContext.java
M resteasy-core/src/main/java/org/jboss/resteasy/core/providerfactory/ResteasyProviderFactoryDelegate.java
M resteasy-core/src/main/java/org/jboss/resteasy/core/providerfactory/ResteasyProviderFactoryImpl.java
M resteasy-core/src/main/java/org/jboss/resteasy/plugins/server/servlet/ResteasyContextParameters.java
M resteasy-core/src/main/java/org/jboss/resteasy/util/ThreadLocalStack.java
A testsuite/integration-tests/src/test/java/org/jboss/resteasy/test/client/exception/ClientWebApplicationExceptionMicroProfileProxyTest.java
A testsuite/integration-tests/src/test/java/org/jboss/resteasy/test/client/exception/ClientWebApplicationExceptionResteasyProxyTest.java
A testsuite/integration-tests/src/test/java/org/jboss/resteasy/test/client/exception/ClientWebApplicationExceptionTest.java
A testsuite/integration-tests/src/test/java/org/jboss/resteasy/test/client/exception/resource/ClientWebApplicationExceptionApplication.java
A testsuite/integration-tests/src/test/java/org/jboss/resteasy/test/client/exception/resource/ClientWebApplicationExceptionMicroProfileProxyApplication.java
A testsuite/integration-tests/src/test/java/org/jboss/resteasy/test/client/exception/resource/ClientWebApplicationExceptionMicroProfileProxyResource.java
A testsuite/integration-tests/src/test/java/org/jboss/resteasy/test/client/exception/resource/ClientWebApplicationExceptionProxyResourceInterface.java
A testsuite/integration-tests/src/test/java/org/jboss/resteasy/test/client/exception/resource/ClientWebApplicationExceptionResource.java
A testsuite/integration-tests/src/test/java/org/jboss/resteasy/test/client/exception/resource/ClientWebApplicationExceptionResteasyProxyApplication.java
A testsuite/integration-tests/src/test/java/org/jboss/resteasy/test/client/exception/resource/ClientWebApplicationExceptionResteasyProxyResource.java
M testsuite/integration-tests/src/test/java/org/jboss/resteasy/test/exception/ClosedResponseHandlingTest.java
M testsuite/integration-tests/src/test/java/org/jboss/resteasy/test/exception/resource/ClosedResponseHandlingResource.java
Log Message:
-----------
[RESTEASY-2781] Clients running in a resource method throw safer WebApplicationException (#2632)
[RESTEASY-2781] Removed smallrye reference from resteasy-client-api POM.
3 years, 11 months
[resteasy/Resteasy] 7f9829: [RESTEASY-2624] Built in MicroProfile ConfigSource...
by NicoNes
Branch: refs/heads/master
Home: https://github.com/resteasy/Resteasy
Commit: 7f9829bd2c9d8c9ed1d7e83021cee4196dd66008
https://github.com/resteasy/Resteasy/commit/7f9829bd2c9d8c9ed1d7e83021cee...
Author: NicoNes <nicolas.nesmon(a)gmail.com>
Date: 2020-12-22 (Tue, 22 Dec 2020)
Changed paths:
M docbook/reference/en/en-US/modules/Installation_Configuration.xml
M resteasy-core/src/main/java/org/jboss/resteasy/microprofile/config/BaseServletConfigSource.java
M resteasy-core/src/main/java/org/jboss/resteasy/microprofile/config/FilterConfigSource.java
M resteasy-core/src/main/java/org/jboss/resteasy/microprofile/config/FilterConfigSourceImpl.java
A resteasy-core/src/main/java/org/jboss/resteasy/microprofile/config/ResteasyConfigSource.java
M resteasy-core/src/main/java/org/jboss/resteasy/microprofile/config/ServletConfigSource.java
M resteasy-core/src/main/java/org/jboss/resteasy/microprofile/config/ServletConfigSourceImpl.java
M resteasy-core/src/main/java/org/jboss/resteasy/microprofile/config/ServletContextConfigSource.java
M resteasy-core/src/main/java/org/jboss/resteasy/microprofile/config/ServletContextConfigSourceImpl.java
A testsuite/integration-tests/src/test/java/org/jboss/resteasy/test/microprofile/config/ConfigSourceDefaultOrdinalFilterTest.java
A testsuite/integration-tests/src/test/java/org/jboss/resteasy/test/microprofile/config/ConfigSourceDefaultOrdinalServletContextListenerTest.java
A testsuite/integration-tests/src/test/java/org/jboss/resteasy/test/microprofile/config/ConfigSourceDefaultOrdinalServletTest.java
A testsuite/integration-tests/src/test/java/org/jboss/resteasy/test/microprofile/config/ConfigSourceOverrideOrdinalFilterTest.java
A testsuite/integration-tests/src/test/java/org/jboss/resteasy/test/microprofile/config/ConfigSourceOverrideOrdinalServletContextListenerTest.java
A testsuite/integration-tests/src/test/java/org/jboss/resteasy/test/microprofile/config/ConfigSourceOverrideOrdinalServletTest.java
M testsuite/integration-tests/src/test/java/org/jboss/resteasy/test/microprofile/config/resource/MicroProfileConfigResource.java
A testsuite/integration-tests/src/test/resources/org/jboss/resteasy/test/microprofile/config/web_default_ordinal_filter.xml
A testsuite/integration-tests/src/test/resources/org/jboss/resteasy/test/microprofile/config/web_default_ordinal_servlet.xml
A testsuite/integration-tests/src/test/resources/org/jboss/resteasy/test/microprofile/config/web_default_ordinal_servlet_context_listener.xml
A testsuite/integration-tests/src/test/resources/org/jboss/resteasy/test/microprofile/config/web_override_ordinal_filter.xml
A testsuite/integration-tests/src/test/resources/org/jboss/resteasy/test/microprofile/config/web_override_ordinal_servlet.xml
A testsuite/integration-tests/src/test/resources/org/jboss/resteasy/test/microprofile/config/web_override_ordinal_servlet_context_listener.xml
Log Message:
-----------
[RESTEASY-2624] Built in MicroProfile ConfigSource should let user override default ordinal (#2449)
* Let built in ConfigSources honor special property config_ordinal
Signed-off-by: NicoNes <nicolas.nesmon(a)gmail.com>
* Add ResteasyConfigSource
Signed-off-by: NicoNes <nicolas.nesmon(a)gmail.com>
* Add a note about config_ordinal in user guide
Signed-off-by: NicoNes <nicolas.nesmon(a)gmail.com>
* Little refacto
Signed-off-by: NicoNes <nicolas.nesmon(a)gmail.com>
* Let BaseServletConfigSource implemnts ConfigSource
Signed-off-by: NicoNes <nicolas.nesmon(a)gmail.com>
3 years, 11 months
[resteasy/Resteasy] 303dfc: Preparing for tagging 3.15.0.Alpha1
by Alessio Soldano
Branch: refs/heads/3.15
Home: https://github.com/resteasy/Resteasy
Commit: 303dfcfd1801f218379cd7c981cb21e883d66870
https://github.com/resteasy/Resteasy/commit/303dfcfd1801f218379cd7c981cb2...
Author: Alessio Soldano <asoldano(a)redhat.com>
Date: 2020-12-21 (Mon, 21 Dec 2020)
Changed paths:
M arquillian/RESTEASY-1056-jetty-bv11/pom.xml
M arquillian/RESTEASY-736-jetty/pom.xml
M arquillian/pom.xml
M distribution/pom.xml
M distribution/src-distribution/pom.xml
M docbook/pom.xml
M docbook/reference/en/en-US/master.xml
M docbook/reference/en/en-US/modules/Cache_NoCache_CacheControl.xml
M docbook/reference/en/en-US/modules/Installation_Configuration.xml
M docbook/reference/en/en-US/modules/Json-p.xml
M docbook/reference/en/en-US/modules/Links.xml
M docbook/reference/en/en-US/modules/Maven_and_RESTEasy.xml
M docbook/reference/en/en-US/modules/RESTEasy_Embedded_Container.xml
M docbook/reference/en/en-US/modules/RESTEasy_Spring_Integration.xml
M docbook/reference/en/en-US/modules/signature.xml
M docbook/reference/en/en-US/modules/smime.xml
M eagledns/pom.xml
M jboss-modules/pom.xml
M pom.xml
M profiling-tests/pom.xml
M providers/abdera-atom/pom.xml
M providers/fastinfoset/pom.xml
M providers/jackson/pom.xml
M providers/jackson2/pom.xml
M providers/jaxb/pom.xml
M providers/jettison/pom.xml
M providers/json-binding/pom.xml
M providers/json-p-ee7/pom.xml
M providers/multipart/pom.xml
M providers/pom.xml
M providers/resteasy-atom/pom.xml
M providers/resteasy-html/pom.xml
M providers/resteasy-validator-provider/pom.xml
M providers/yaml/pom.xml
M resteasy-bom/pom.xml
M resteasy-cache/pom.xml
M resteasy-cache/resteasy-cache-core/pom.xml
M resteasy-cdi/pom.xml
M resteasy-client-jetty/pom.xml
M resteasy-client-microprofile/pom.xml
M resteasy-client/pom.xml
M resteasy-dependencies-bom/pom.xml
M resteasy-guice/pom.xml
M resteasy-jaxrs-testsuite/pom.xml
M resteasy-jaxrs/pom.xml
M resteasy-jsapi/pom.xml
M resteasy-links/pom.xml
M resteasy-rxjava/pom.xml
M resteasy-rxjava2/pom.xml
M resteasy-servlet-initializer/pom.xml
M resteasy-spring/pom.xml
M resteasy-upgrade-guide/pom.xml
M resteasy-wadl-undertow-connector/pom.xml
M resteasy-wadl/pom.xml
M security-legacy/keystone/example/keystone-server/pom.xml
M security-legacy/keystone/example/some-app/pom.xml
M security-legacy/keystone/keystone-as7-modules/pom.xml
M security-legacy/keystone/keystone-as7/pom.xml
M security-legacy/keystone/keystone-core/pom.xml
M security-legacy/login-module-authenticator/pom.xml
M security-legacy/pom.xml
M security-legacy/resteasy-oauth/pom.xml
M security-legacy/skeleton-key-idm/pom.xml
M security-legacy/skeleton-key-idm/skeleton-key-as7/pom.xml
M security-legacy/skeleton-key-idm/skeleton-key-core/pom.xml
M security-legacy/skeleton-key-idm/skeleton-key-idp/pom.xml
M security/jose-jwt/pom.xml
M security/pom.xml
M security/resteasy-crypto/pom.xml
M server-adapters/pom.xml
M server-adapters/resteasy-jdk-http/pom.xml
M server-adapters/resteasy-netty/pom.xml
M server-adapters/resteasy-netty4-cdi/pom.xml
M server-adapters/resteasy-netty4/pom.xml
M server-adapters/resteasy-undertow/pom.xml
M server-adapters/resteasy-vertx/pom.xml
M testsuite/arquillian-utils/pom.xml
M testsuite/integration-tests-spring/deployment/pom.xml
M testsuite/integration-tests-spring/inmodule/pom.xml
M testsuite/integration-tests-spring/pom.xml
M testsuite/integration-tests-spring/unit/pom.xml
M testsuite/integration-tests/pom.xml
M testsuite/microprofile-tck/pom.xml
M testsuite/pom.xml
M testsuite/unit-tests/pom.xml
M tjws/pom.xml
Log Message:
-----------
Preparing for tagging 3.15.0.Alpha1
Commit: bbaffbdb9d602eee3539e35def831728b8e71cd9
https://github.com/resteasy/Resteasy/commit/bbaffbdb9d602eee3539e35def831...
Author: Alessio Soldano <asoldano(a)redhat.com>
Date: 2020-12-21 (Mon, 21 Dec 2020)
Changed paths:
M arquillian/RESTEASY-1056-jetty-bv11/pom.xml
M arquillian/RESTEASY-736-jetty/pom.xml
M arquillian/pom.xml
M distribution/pom.xml
M distribution/src-distribution/pom.xml
M docbook/pom.xml
M docbook/reference/en/en-US/master.xml
M docbook/reference/en/en-US/modules/Cache_NoCache_CacheControl.xml
M docbook/reference/en/en-US/modules/Installation_Configuration.xml
M docbook/reference/en/en-US/modules/Json-p.xml
M docbook/reference/en/en-US/modules/Links.xml
M docbook/reference/en/en-US/modules/Maven_and_RESTEasy.xml
M docbook/reference/en/en-US/modules/RESTEasy_Embedded_Container.xml
M docbook/reference/en/en-US/modules/RESTEasy_Spring_Integration.xml
M docbook/reference/en/en-US/modules/signature.xml
M docbook/reference/en/en-US/modules/smime.xml
M eagledns/pom.xml
M jboss-modules/pom.xml
M pom.xml
M profiling-tests/pom.xml
M providers/abdera-atom/pom.xml
M providers/fastinfoset/pom.xml
M providers/jackson/pom.xml
M providers/jackson2/pom.xml
M providers/jaxb/pom.xml
M providers/jettison/pom.xml
M providers/json-binding/pom.xml
M providers/json-p-ee7/pom.xml
M providers/multipart/pom.xml
M providers/pom.xml
M providers/resteasy-atom/pom.xml
M providers/resteasy-html/pom.xml
M providers/resteasy-validator-provider/pom.xml
M providers/yaml/pom.xml
M resteasy-bom/pom.xml
M resteasy-cache/pom.xml
M resteasy-cache/resteasy-cache-core/pom.xml
M resteasy-cdi/pom.xml
M resteasy-client-jetty/pom.xml
M resteasy-client-microprofile/pom.xml
M resteasy-client/pom.xml
M resteasy-dependencies-bom/pom.xml
M resteasy-guice/pom.xml
M resteasy-jaxrs-testsuite/pom.xml
M resteasy-jaxrs/pom.xml
M resteasy-jsapi/pom.xml
M resteasy-links/pom.xml
M resteasy-rxjava/pom.xml
M resteasy-rxjava2/pom.xml
M resteasy-servlet-initializer/pom.xml
M resteasy-spring/pom.xml
M resteasy-upgrade-guide/pom.xml
M resteasy-wadl-undertow-connector/pom.xml
M resteasy-wadl/pom.xml
M security-legacy/keystone/example/keystone-server/pom.xml
M security-legacy/keystone/example/some-app/pom.xml
M security-legacy/keystone/keystone-as7-modules/pom.xml
M security-legacy/keystone/keystone-as7/pom.xml
M security-legacy/keystone/keystone-core/pom.xml
M security-legacy/login-module-authenticator/pom.xml
M security-legacy/pom.xml
M security-legacy/resteasy-oauth/pom.xml
M security-legacy/skeleton-key-idm/pom.xml
M security-legacy/skeleton-key-idm/skeleton-key-as7/pom.xml
M security-legacy/skeleton-key-idm/skeleton-key-core/pom.xml
M security-legacy/skeleton-key-idm/skeleton-key-idp/pom.xml
M security/jose-jwt/pom.xml
M security/pom.xml
M security/resteasy-crypto/pom.xml
M server-adapters/pom.xml
M server-adapters/resteasy-jdk-http/pom.xml
M server-adapters/resteasy-netty/pom.xml
M server-adapters/resteasy-netty4-cdi/pom.xml
M server-adapters/resteasy-netty4/pom.xml
M server-adapters/resteasy-undertow/pom.xml
M server-adapters/resteasy-vertx/pom.xml
M testsuite/arquillian-utils/pom.xml
M testsuite/integration-tests-spring/deployment/pom.xml
M testsuite/integration-tests-spring/inmodule/pom.xml
M testsuite/integration-tests-spring/pom.xml
M testsuite/integration-tests-spring/unit/pom.xml
M testsuite/integration-tests/pom.xml
M testsuite/microprofile-tck/pom.xml
M testsuite/pom.xml
M testsuite/unit-tests/pom.xml
M tjws/pom.xml
Log Message:
-----------
Preparing for next dev cycle
Compare: https://github.com/resteasy/Resteasy/compare/3327e48793b5...bbaffbdb9d60
3 years, 11 months
[resteasy/Resteasy] 3327e4: [RESTEASY-2742] Add MP Config 2.0
by Kabir Khan
Branch: refs/heads/3.15
Home: https://github.com/resteasy/Resteasy
Commit: 3327e48793b50371119239586aa407f37efb84a3
https://github.com/resteasy/Resteasy/commit/3327e48793b50371119239586aa40...
Author: Kabir Khan <kkhan(a)redhat.com>
Date: 2020-12-21 (Mon, 21 Dec 2020)
Changed paths:
M resteasy-dependencies-bom/pom.xml
M resteasy-jaxrs/src/main/java/org/jboss/resteasy/microprofile/config/BaseServletConfigSource.java
M resteasy-jaxrs/src/main/java/org/jboss/resteasy/microprofile/config/FilterConfigSourceImpl.java
M resteasy-jaxrs/src/main/java/org/jboss/resteasy/microprofile/config/ServletConfigSourceImpl.java
M resteasy-jaxrs/src/main/java/org/jboss/resteasy/microprofile/config/ServletContextConfigSource.java
M resteasy-jaxrs/src/main/java/org/jboss/resteasy/microprofile/config/ServletContextConfigSourceImpl.java
Log Message:
-----------
[RESTEASY-2742] Add MP Config 2.0
3 years, 11 months
[resteasy/Resteasy] b73990: Porting fix for ResteasyServletInitializer (#2636)
by Ron Sigal
Branch: refs/heads/3.15
Home: https://github.com/resteasy/Resteasy
Commit: b739903454fe4428bf4d2e23772ac34f99de36b1
https://github.com/resteasy/Resteasy/commit/b739903454fe4428bf4d2e23772ac...
Author: Ron Sigal <rsigal(a)redhat.com>
Date: 2020-12-19 (Sat, 19 Dec 2020)
Changed paths:
M resteasy-servlet-initializer/pom.xml
M resteasy-servlet-initializer/src/main/java/org/jboss/resteasy/plugins/servlet/ResteasyServletInitializer.java
A resteasy-servlet-initializer/src/test/java/org/jboss/resteasy/test/plugins/servlet/AppAndResource.java
A resteasy-servlet-initializer/src/test/java/org/jboss/resteasy/test/plugins/servlet/AppWithAppPath.java
A resteasy-servlet-initializer/src/test/java/org/jboss/resteasy/test/plugins/servlet/AppWithNoAppPath.java
A resteasy-servlet-initializer/src/test/java/org/jboss/resteasy/test/plugins/servlet/Resource1.java
A resteasy-servlet-initializer/src/test/java/org/jboss/resteasy/test/plugins/servlet/ResteasyServletInitializerTest.java
Log Message:
-----------
Porting fix for ResteasyServletInitializer (#2636)
* 3.14.0.Final->3.15.0-SNAPSHOT
* [RESTEASY-2650] Porting ResteasyServletInitializer fix to branch 3.15
3 years, 11 months
[resteasy/Resteasy] f0a8d9: Next is 3.11.4.Final (#2631)
by James R. Perkins
Branch: refs/heads/3.11
Home: https://github.com/resteasy/Resteasy
Commit: f0a8d9a1e6bb9d6794ece71002cbfec68373b76f
https://github.com/resteasy/Resteasy/commit/f0a8d9a1e6bb9d6794ece71002cbf...
Author: James R. Perkins <jperkins(a)redhat.com>
Date: 2020-12-19 (Sat, 19 Dec 2020)
Changed paths:
M arquillian/RESTEASY-1056-jetty-bv11/pom.xml
M arquillian/RESTEASY-736-jetty/pom.xml
M arquillian/pom.xml
M distribution/pom.xml
M distribution/src-distribution/pom.xml
M docbook/pom.xml
M eagledns/pom.xml
M jboss-modules/pom.xml
M pom.xml
M profiling-tests/pom.xml
M providers/abdera-atom/pom.xml
M providers/fastinfoset/pom.xml
M providers/jackson/pom.xml
M providers/jackson2/pom.xml
M providers/jaxb/pom.xml
M providers/jettison/pom.xml
M providers/json-binding/pom.xml
M providers/json-p-ee7/pom.xml
M providers/multipart/pom.xml
M providers/pom.xml
M providers/resteasy-atom/pom.xml
M providers/resteasy-html/pom.xml
M providers/resteasy-validator-provider/pom.xml
M providers/yaml/pom.xml
M resteasy-bom/pom.xml
M resteasy-cache/pom.xml
M resteasy-cache/resteasy-cache-core/pom.xml
M resteasy-cdi/pom.xml
M resteasy-client-jetty/pom.xml
M resteasy-client-microprofile/pom.xml
M resteasy-client/pom.xml
M resteasy-dependencies-bom/pom.xml
M resteasy-guice/pom.xml
M resteasy-jaxrs-testsuite/pom.xml
M resteasy-jaxrs/pom.xml
M resteasy-jsapi/pom.xml
M resteasy-links/pom.xml
M resteasy-rxjava/pom.xml
M resteasy-rxjava2/pom.xml
M resteasy-servlet-initializer/pom.xml
M resteasy-spring/pom.xml
M resteasy-upgrade-guide/pom.xml
M resteasy-wadl-undertow-connector/pom.xml
M resteasy-wadl/pom.xml
M security-legacy/keystone/example/keystone-server/pom.xml
M security-legacy/keystone/example/some-app/pom.xml
M security-legacy/keystone/keystone-as7-modules/pom.xml
M security-legacy/keystone/keystone-as7/pom.xml
M security-legacy/keystone/keystone-core/pom.xml
M security-legacy/login-module-authenticator/pom.xml
M security-legacy/pom.xml
M security-legacy/resteasy-oauth/pom.xml
M security-legacy/skeleton-key-idm/pom.xml
M security-legacy/skeleton-key-idm/skeleton-key-as7/pom.xml
M security-legacy/skeleton-key-idm/skeleton-key-core/pom.xml
M security-legacy/skeleton-key-idm/skeleton-key-idp/pom.xml
M security/jose-jwt/pom.xml
M security/pom.xml
M security/resteasy-crypto/pom.xml
M server-adapters/pom.xml
M server-adapters/resteasy-jdk-http/pom.xml
M server-adapters/resteasy-netty/pom.xml
M server-adapters/resteasy-netty4-cdi/pom.xml
M server-adapters/resteasy-netty4/pom.xml
M server-adapters/resteasy-undertow/pom.xml
M server-adapters/resteasy-vertx/pom.xml
M testsuite/arquillian-utils/pom.xml
M testsuite/integration-tests-spring/deployment/pom.xml
M testsuite/integration-tests-spring/inmodule/pom.xml
M testsuite/integration-tests-spring/pom.xml
M testsuite/integration-tests-spring/unit/pom.xml
M testsuite/integration-tests/pom.xml
M testsuite/microprofile-tck/pom.xml
M testsuite/pom.xml
M testsuite/unit-tests/pom.xml
M tjws/pom.xml
Log Message:
-----------
Next is 3.11.4.Final (#2631)
3 years, 11 months
[resteasy/Resteasy] 2c4df5: 3.14.0.Final->3.15.0-SNAPSHOT (#2635)
by Ron Sigal
Branch: refs/heads/3.15
Home: https://github.com/resteasy/Resteasy
Commit: 2c4df56b8ae015bfdd270469abaaadff41c296de
https://github.com/resteasy/Resteasy/commit/2c4df56b8ae015bfdd270469abaaa...
Author: Ron Sigal <rsigal(a)redhat.com>
Date: 2020-12-19 (Sat, 19 Dec 2020)
Changed paths:
M arquillian/RESTEASY-1056-jetty-bv11/pom.xml
M arquillian/RESTEASY-736-jetty/pom.xml
M arquillian/pom.xml
M distribution/pom.xml
M distribution/src-distribution/pom.xml
M docbook/pom.xml
M docbook/reference/en/en-US/master.xml
M docbook/reference/en/en-US/modules/Cache_NoCache_CacheControl.xml
M docbook/reference/en/en-US/modules/Installation_Configuration.xml
M docbook/reference/en/en-US/modules/Json-p.xml
M docbook/reference/en/en-US/modules/Links.xml
M docbook/reference/en/en-US/modules/Maven_and_RESTEasy.xml
M docbook/reference/en/en-US/modules/RESTEasy_Embedded_Container.xml
M docbook/reference/en/en-US/modules/RESTEasy_Spring_Integration.xml
M docbook/reference/en/en-US/modules/signature.xml
M docbook/reference/en/en-US/modules/smime.xml
M eagledns/pom.xml
M jboss-modules/pom.xml
M pom.xml
M profiling-tests/pom.xml
M providers/abdera-atom/pom.xml
M providers/fastinfoset/pom.xml
M providers/jackson/pom.xml
M providers/jackson2/pom.xml
M providers/jaxb/pom.xml
M providers/jettison/pom.xml
M providers/json-binding/pom.xml
M providers/json-p-ee7/pom.xml
M providers/multipart/pom.xml
M providers/pom.xml
M providers/resteasy-atom/pom.xml
M providers/resteasy-html/pom.xml
M providers/resteasy-validator-provider/pom.xml
M providers/yaml/pom.xml
M resteasy-bom/pom.xml
M resteasy-cache/pom.xml
M resteasy-cache/resteasy-cache-core/pom.xml
M resteasy-cdi/pom.xml
M resteasy-client-jetty/pom.xml
M resteasy-client-microprofile/pom.xml
M resteasy-client/pom.xml
M resteasy-dependencies-bom/pom.xml
M resteasy-guice/pom.xml
M resteasy-jaxrs-testsuite/pom.xml
M resteasy-jaxrs/pom.xml
M resteasy-jsapi/pom.xml
M resteasy-links/pom.xml
M resteasy-rxjava/pom.xml
M resteasy-rxjava2/pom.xml
M resteasy-servlet-initializer/pom.xml
M resteasy-spring/pom.xml
M resteasy-upgrade-guide/pom.xml
M resteasy-wadl-undertow-connector/pom.xml
M resteasy-wadl/pom.xml
M security-legacy/keystone/example/keystone-server/pom.xml
M security-legacy/keystone/example/some-app/pom.xml
M security-legacy/keystone/keystone-as7-modules/pom.xml
M security-legacy/keystone/keystone-as7/pom.xml
M security-legacy/keystone/keystone-core/pom.xml
M security-legacy/login-module-authenticator/pom.xml
M security-legacy/pom.xml
M security-legacy/resteasy-oauth/pom.xml
M security-legacy/skeleton-key-idm/pom.xml
M security-legacy/skeleton-key-idm/skeleton-key-as7/pom.xml
M security-legacy/skeleton-key-idm/skeleton-key-core/pom.xml
M security-legacy/skeleton-key-idm/skeleton-key-idp/pom.xml
M security/jose-jwt/pom.xml
M security/pom.xml
M security/resteasy-crypto/pom.xml
M server-adapters/pom.xml
M server-adapters/resteasy-jdk-http/pom.xml
M server-adapters/resteasy-netty/pom.xml
M server-adapters/resteasy-netty4-cdi/pom.xml
M server-adapters/resteasy-netty4/pom.xml
M server-adapters/resteasy-undertow/pom.xml
M server-adapters/resteasy-vertx/pom.xml
M testsuite/arquillian-utils/pom.xml
M testsuite/integration-tests-spring/deployment/pom.xml
M testsuite/integration-tests-spring/inmodule/pom.xml
M testsuite/integration-tests-spring/pom.xml
M testsuite/integration-tests-spring/unit/pom.xml
M testsuite/integration-tests/pom.xml
M testsuite/microprofile-tck/pom.xml
M testsuite/pom.xml
M testsuite/unit-tests/pom.xml
M tjws/pom.xml
Log Message:
-----------
3.14.0.Final->3.15.0-SNAPSHOT (#2635)
3 years, 11 months