Skip to content

Changes

Summary

  1. Make logger static (details)
  2. #4658 Apache HttpComponents upgrade (details)
  3. JdkConnectorProvider cannot parse Set-cookie header value when expires (details)
  4. 2.x apidocs bundle generation fixes (details)
  5. Add support RFC 5987 for attribute filename* in HTTP header Content-Disposition (#4647) (details)
  6. Public SseEventSourceBuilder implementation (details)
  7. Jetty synchronous max buffer size property (#4677) (details)
  8. Chapter for Expect:100-continue header (client) (details)
  9. Add a ParamConverterProvider for java.util.Optional parameters (details)
  10. Support arrays (#4684) (details)
  11. Groovy updated for JDK 16 support (details)
  12. Allow for having CDI on pure Jersey Client without Jersey Server (#4695) (details)
  13. Updated javadoc maven plugin API link (details)
  14. MicroProfile Rest Client 2.0 support (#4699) (details)
  15. update maven-antrun-plugin to 3.0.0 (details)
  16. Do not create a connector multiple times for each rx() call (details)
  17. Copyright check (details)
  18. Apply 2021 (details)
  19. Rest client 2.0 updates (#4724) (details)
  20. Updating ant to 1.10.9 for antrun plugin (#4720) (details)
  21. Adjusting Jersey archetypes (#4710) (details)
  22. Custom schedulers to execute @PreDestroy methods (#4716) (details)
  23. Configurable COLLISION_BUFFER_POWER (details)
  24. Add a wildcard @Produces and @Consumes for methods without message providers involved not to get 406/415. (details)
  25. switching to NIO tmp file creation approach (#4712) (details)
  26. Empty/NULL properties handling (details)
  27. adjusting examples to be run with optional JAXB (details)
  28. processing order for Jackson/Jaxb annotations (details)
  29. Proper handling of chunked input streams in LoggingInterceptor (#4753) (details)
  30. Logging delimiter parametrized (#4745) (details)
  31. Adopt ASM 9.1 to support JDK 17 (details)
  32. Lazy synchronized SSL Context initialization in the HttpUrlConnector (details)
  33. Replace null Configuration in ContainerRequest with an empty instance (details)
  34. Adopted Jackson 2.12.2. No change in repackaged Jackson. (details)
  35. Uptake Helidon 2.2.1 (details)
  36. ParameterConverter throwing IllegalArgumentException MUST result in 404 (details)
  37. Stop filling monitoring queues when processor fails (#4697) (details)
  38. Add a default Enum MB provider. (details)
  39. Allow to use @Inject instead of @Context with CDI (#4749) (details)
  40. Updated properties for netty connection pooling (details)
  41. Javadoc for non-public classes (cdi-rs-inject) (#4770) (details)
  42. 19 chapters of User Guide reviewed (#4711) (details)
Commit a1860e9004f0c089c58d8598651e17ed3061c056 by 24524084+senivam
Make logger static

Signed-off-by: tvallin <thibault.vallin@oracle.com>
The file was modified inject/hk2/src/main/java/org/glassfish/jersey/inject/hk2/Hk2RequestScope.java
Commit 05e6f5102279032da5d55637747fb9caf0f5fc69 by 24524084+senivam
#4658 Apache HttpComponents upgrade

Signed-off-by: Sébastien BOUCHEX BELLOMIÉ <sbouchex@gmail.com>
The file was modified pom.xml
Commit 758cea4963d95b43ccb326179afbb2aefbf4d86b by 24524084+senivam
JdkConnectorProvider cannot parse Set-cookie header value when expires
The file was modified connectors/jdk-connector/src/test/java/org/glassfish/jersey/jdk/connector/internal/CookieTest.java
The file was modified connectors/jdk-connector/src/main/java/org/glassfish/jersey/jdk/connector/internal/HttpParser.java
Commit bf950389f671162e10a6b9aa12e16e8756b85a4a by 24524084+senivam
2.x apidocs bundle generation fixes

Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
The file was modified bundles/apidocs/pom.xml
The file was modified pom.xml
Commit 830db2e818e7fb074657e71f2c82d43cccaa5226 by noreply
Add support RFC 5987 for attribute filename* in HTTP header Content-Disposition (#4647)

Add support RFC 5987 for attribute filename* in HTTP header Content-Disposition

Signed-off-by: Andrii Serkes <andrii.serkes@oracle.com>
The file was modified tests/e2e/src/test/java/org/glassfish/jersey/tests/api/ContentDispositionTest.java
The file was modified media/multipart/src/main/java/org/glassfish/jersey/media/multipart/ContentDisposition.java
Commit 35fea2f4e403a861b406155e4a698a9fdf328f4f by 15908245+jansupol
Public SseEventSourceBuilder implementation

Signed-off-by: jansupol <jan.supol@oracle.com>
The file was modified media/sse/src/main/resources/META-INF/services/javax.ws.rs.sse.SseEventSource$Builder
The file was addedmedia/sse/src/main/java/org/glassfish/jersey/media/sse/JerseySseEventSourceBuilder.java
Commit 500c0d74258248777ffa0d5b19cffff5e0edf1fc by noreply
Jetty synchronous max buffer size property (#4677)

* Adds a new jetty specific client property to set the max response buffer size. If property is not set, the old code path is used and exception is thrown for large responses (bigger than 2MiB).
This addresses the immediate paint point and is least invasive. Exception is still thrown if response size is too big even for the custom size. Since this behaviour differs from async path it might be a good idea to just
replace it completely in some major release.

Signed-off-by: Klemen Ferjancic <cen.is.imba@gmail.com>
The file was modified connectors/jetty-connector/src/main/java/org/glassfish/jersey/jetty/connector/JettyConnector.java
The file was addedconnectors/jetty-connector/src/test/java/org/glassfish/jersey/jetty/connector/SyncResponseSizeTest.java
The file was modified connectors/jetty-connector/src/main/java/org/glassfish/jersey/jetty/connector/JettyClientProperties.java
Commit 2df2133a4e828d74d99fbebb24ab84674c924dcc by 24524084+senivam
Chapter for Expect:100-continue header (client)

Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
The file was modified docs/src/main/docbook/client.xml
Commit 728e7538b9c348c45c6611e22e8b42eb4a294eda by 24524084+senivam
Add a ParamConverterProvider for java.util.Optional parameters

Signed-off-by: Jorge Bescos Gascon <jorge.bescos.gascon@oracle.com>
The file was addedtests/e2e-server/src/test/java/org/glassfish/jersey/tests/e2e/server/OptionalParamConverterTest.java
The file was modified core-common/src/main/java/org/glassfish/jersey/internal/inject/ParamConverters.java
Commit fc07c4a0001ad5b422f2e509e09d871099c9a7f9 by noreply
Support arrays (#4684)

Support arrays

Signed-off-by: Jorge Bescos Gascon <jorge.bescos.gascon@oracle.com>
The file was modified core-server/src/main/java/org/glassfish/jersey/server/internal/inject/MultivaluedParameterExtractorFactory.java
The file was addedcore-server/src/main/java/org/glassfish/jersey/server/internal/inject/ArrayExtractor.java
The file was addedtests/e2e-server/src/test/java/org/glassfish/jersey/tests/e2e/server/ArrayParamConverterTest.java
Commit 0056615d967888e863300302dbf438b62a3e25c8 by 24524084+senivam
Groovy updated for JDK 16 support

Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
The file was modified examples/groovy/pom.xml
Commit 7bf9e5da763490129975eb2237214b924983ca71 by noreply
Allow for having CDI on pure Jersey Client without Jersey Server (#4695)

* Allow for having CDI on pure Jersey Client without Jersey Server jars dependencies

Signed-off-by: jansupol <jan.supol@oracle.com>
The file was addedext/cdi/jersey-cdi1x/src/main/java/org/glassfish/jersey/ext/cdi1x/internal/CdiComponentProviderServerRuntimeSpecifics.java
The file was addedtests/integration/cdi-integration/cdi-client/src/test/java/org/glassfish/jersey/tests/cdi/client/BeanManagerInjectedOnClientTest.java
The file was addedext/cdi/jersey-cdi1x/src/main/java/org/glassfish/jersey/ext/cdi1x/internal/CdiServerComponentProvider.java
The file was addedtests/integration/cdi-integration/cdi-client/src/main/resources/META-INF/beans.xml
The file was addedext/cdi/jersey-cdi1x/src/main/java/org/glassfish/jersey/ext/cdi1x/internal/CdiComponentProviderRuntimeSpecifics.java
The file was addedtests/integration/cdi-integration/cdi-client-on-server/pom.xml
The file was addedcore-common/src/main/java/org/glassfish/jersey/spi/ComponentProvider.java
The file was modified core-client/src/main/java/org/glassfish/jersey/client/ClientConfig.java
The file was modified core-client/src/main/java/org/glassfish/jersey/client/ClientBootstrapBag.java
The file was modified ext/cdi/jersey-cdi1x/src/main/java/org/glassfish/jersey/ext/cdi1x/internal/CdiComponentProvider.java
The file was addedtests/integration/cdi-integration/cdi-client/pom.xml
The file was addedtests/integration/cdi-integration/cdi-client-on-server/src/test/java/org/glassfish/jersey/tests/cdi/client/BeanManagerInjectedOnClientTest.java
The file was modified ext/microprofile/mp-rest-client/pom.xml
The file was addedtests/integration/cdi-integration/cdi-client/src/main/java/org/glassfish/jersey/tests/cdi/client/CdiClientFilter.java
The file was addedext/cdi/jersey-cdi1x/src/main/resources/META-INF/services/org.glassfish.jersey.spi.ComponentProvider
The file was addedtests/integration/cdi-integration/cdi-client-on-server/src/main/resources/META-INF/beans.xml
The file was modified core-server/src/main/java/org/glassfish/jersey/server/ResourceModelConfigurator.java
The file was addedtests/integration/cdi-integration/cdi-client-on-server/src/main/java/org/glassfish/jersey/tests/cdi/client/CdiEnabledClientOnServerResource.java
The file was modified ext/cdi/jersey-cdi1x/src/main/java/org/glassfish/jersey/ext/cdi1x/internal/CdiUtil.java
The file was modified core-server/src/main/java/org/glassfish/jersey/server/spi/ComponentProvider.java
The file was addedtests/integration/cdi-integration/cdi-client-on-server/src/main/java/org/glassfish/jersey/tests/cdi/client/CdiClientFilter.java
The file was modified ext/cdi/jersey-cdi1x/src/main/resources/META-INF/services/org.glassfish.jersey.server.spi.ComponentProvider
The file was addedcore-client/src/main/java/org/glassfish/jersey/client/ClientComponentConfigurator.java
The file was modified core-common/src/main/java/org/glassfish/jersey/internal/inject/ProviderBinder.java
The file was addedext/cdi/jersey-cdi1x/src/main/java/org/glassfish/jersey/ext/cdi1x/internal/CdiComponentProviderClientRuntimeSpecifics.java
The file was addedtests/integration/cdi-integration/cdi-client-on-server/src/main/java/org/glassfish/jersey/tests/cdi/client/CdiEnabledClientOnServerApplication.java
The file was addedtests/integration/cdi-integration/cdi-client-on-server/src/main/java/org/glassfish/jersey/tests/cdi/client/CdiLowerPriorityClientFilter.java
The file was addedtests/integration/cdi-integration/cdi-client/src/main/java/org/glassfish/jersey/tests/cdi/client/CdiLowerPriorityClientFilter.java
The file was modified tests/integration/cdi-integration/pom.xml
The file was modified ext/cdi/jersey-cdi1x/pom.xml
Commit 3f8ed1647e7cf6ec364d19a81e7d3eced2979743 by 24524084+senivam
Updated javadoc maven plugin API link

Signed-off-by: jansupol <jan.supol@oracle.com>
The file was modified pom.xml
Commit 54afae0da5f6e66eb87a4b9e0fc5bc0b841abec6 by noreply
MicroProfile Rest Client 2.0 support (#4699)

* JERSEY-4654 MP Rest Client 2.0 - QueryParamStyle,  FOLLOW_REDIRECTS, PROXY_ADDRESS, SSE support

Signed-off-by: Gaurav Gupta <gaurav.gupta@payara.fish>
The file was modified ext/microprofile/mp-config/pom.xml
The file was modified core-common/src/main/java/org/glassfish/jersey/uri/internal/JerseyUriBuilder.java
The file was addedext/microprofile/mp-rest-client/src/main/java/org/glassfish/jersey/microprofile/restclient/SseEventSubscription.java
The file was addedcore-common/src/main/java/org/glassfish/jersey/uri/JerseyQueryParamStyle.java
The file was modified ext/microprofile/mp-rest-client/src/main/java/org/glassfish/jersey/microprofile/restclient/RestClientProducer.java
The file was modified ext/microprofile/mp-rest-client/src/main/java/org/glassfish/jersey/microprofile/restclient/QueryParamModel.java
The file was modified ext/microprofile/mp-rest-client/pom.xml
The file was modified media/sse/src/main/java/org/glassfish/jersey/media/sse/InboundEvent.java
The file was modified core-client/src/main/java/org/glassfish/jersey/client/ClientProperties.java
The file was modified tests/integration/microprofile/rest-client/tck-suite.xml
The file was modified media/sse/src/main/java/org/glassfish/jersey/media/sse/EventInput.java
The file was modified pom.xml
The file was addedext/microprofile/mp-rest-client/src/main/java/org/glassfish/jersey/microprofile/restclient/SseMessageBodyReader.java
The file was modified core-client/src/main/java/org/glassfish/jersey/client/JerseyWebTarget.java
The file was addedext/microprofile/mp-rest-client/src/main/java/org/glassfish/jersey/microprofile/restclient/SseEventSuscriber.java
The file was addedext/microprofile/mp-rest-client/src/main/java/org/glassfish/jersey/microprofile/restclient/SseEventPublisher.java
The file was modified ext/microprofile/mp-rest-client/src/main/java/org/glassfish/jersey/microprofile/restclient/RestClientBuilderImpl.java
The file was modified tests/integration/microprofile/rest-client/pom.xml
Commit 6e109653fc917457315db17740063ab70bfa4abe by 24524084+senivam
update maven-antrun-plugin to 3.0.0

Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
The file was modified bundles/jaxrs-ri/pom.xml
The file was modified pom.xml
Commit d956c523a9403e4c4c229587a3c52b185341bba5 by 15908245+jansupol
Do not create a connector multiple times for each rx() call
Priority is to use @ClientAsyncExecutor annotated ExecutorServiceProvider

Signed-off-by: jansupol <jan.supol@oracle.com>
The file was modified core-client/src/main/java/org/glassfish/jersey/client/JerseyInvocation.java
The file was modified core-client/src/test/java/org/glassfish/jersey/client/ClientRxTest.java
Commit 348df7602f95c239689dc2a7618a66fbec804f05 by 15908245+jansupol
Copyright check

Signed-off-by: Jorge Bescos Gascon <jorge.bescos.gascon@oracle.com>
The file was modified tests/e2e-inject/hk2/pom.xml
The file was modified tests/integration/jersey-2878/pom.xml
The file was modified core-common/src/test/java/org/glassfish/jersey/internal/util/JdkVersionParseTest.java
The file was modified tests/integration/cdi-integration/cdi-test-webapp/src/main/webapp/WEB-INF/beans.xml
The file was modified ext/spring4/src/main/java/org/glassfish/jersey/server/spring/SpringComponentProvider.java
The file was modified core-common/src/main/java8/org/glassfish/jersey/internal/jsr166/SubmissionPublisher.java
The file was modified examples/entity-filtering-selectable/pom.xml
The file was modified ext/rx/rx-client-rxjava2/pom.xml
The file was modified tests/integration/jersey-780/pom.xml
The file was modified tests/integration/servlet-3-filter/pom.xml
The file was modified ext/servlet-portability/pom.xml
The file was modified tests/integration/jersey-3796/pom.xml
The file was modified tests/integration/j-441/war2/pom.xml
The file was modified tests/performance/test-cases/interceptor-global/pom.xml
The file was modified tests/performance/test-cases/filter-global/pom.xml
The file was modified core-server/src/test/java/org/glassfish/jersey/server/internal/inject/ParamConverterInternalTest.java
The file was modified examples/helloworld-spring-webapp/pom.xml
The file was modified tests/integration/servlet-3-init-5/pom.xml
The file was modified core-common/src/main/jsr166/org/glassfish/jersey/internal/jsr166/package-info.java
The file was modified examples/json-processing-webapp/pom.xml
The file was modified examples/json-with-padding/pom.xml
The file was modified ext/mvc-bean-validation/pom.xml
The file was modified pom.xml
The file was modified examples/server-async-standalone/pom.xml
The file was modified tests/jmockit/pom.xml
The file was modified tests/integration/jersey-1829/pom.xml
The file was modified tests/mem-leaks/test-cases/shutdown-hook-leak-client/pom.xml
The file was modified tests/integration/servlet-2.5-autodiscovery-1/pom.xml
The file was modified tests/pom.xml
The file was modified containers/jersey-servlet-core/pom.xml
The file was modified examples/helloworld-netty/pom.xml
The file was modified examples/declarative-linking/pom.xml
The file was modified tests/mem-leaks/redeployment/pom.xml
The file was modified tests/integration/jersey-2164/pom.xml
The file was modified examples/helloworld-pure-jax-rs/pom.xml
The file was modified media/json-processing/pom.xml
The file was modified security/oauth2-client/pom.xml
The file was modified examples/osgi-http-service/pom.xml
The file was modified tests/integration/jersey-2776/pom.xml
The file was modified tests/integration/jersey-2160/pom.xml
The file was modified tests/integration/servlet-3-init-7/pom.xml
The file was modified test-framework/maven/pom.xml
The file was modified tests/e2e-client/src/test/java/org/glassfish/jersey/tests/e2e/client/connector/ssl/SslHttpUrlConnectorTest.java
The file was modified tests/integration/jersey-2335/pom.xml
The file was modified ext/bean-validation/src/main/java/org/glassfish/jersey/server/validation/internal/ValidationInterceptorExecutor.java
The file was modified tests/integration/cdi-integration/cdi-manually-bound/pom.xml
The file was modified tests/integration/ejb-multimodule/pom.xml
The file was modified tests/integration/servlet-3-init-2/pom.xml
The file was modified examples/rx-client-webapp/pom.xml
The file was modified ext/mvc-jsp/pom.xml
The file was modified tests/e2e-inject/pom.xml
The file was modified tests/integration/j-441/pom.xml
The file was modified tests/integration/jersey-2136/pom.xml
The file was modified tests/integration/servlet-3-chunked-io/pom.xml
The file was modified examples/reload/pom.xml
The file was modified tests/integration/asm/pom.xml
The file was modified tests/integration/servlet-3-init-provider/pom.xml
The file was modified tests/integration/jersey-1964/pom.xml
The file was modified examples/webapp-example-parent/pom.xml
The file was modified examples/https-server-glassfish/pom.xml
The file was modified tests/integration/jersey-1960/pom.xml
The file was modified core-server/src/test/java/org/glassfish/jersey/server/internal/scanning/JarFileScannerTest.java
The file was modified tests/integration/j-59/war/pom.xml
The file was modified tests/integration/cdi-integration/cdi-ejb-test-webapp/src/main/webapp/WEB-INF/beans.xml
The file was modified tests/integration/jersey-2184/pom.xml
The file was modified tests/integration/ejb-multimodule/lib/pom.xml
The file was modified tests/integration/j-441/ear/pom.xml
The file was modified bundles/pom.xml
The file was modified tests/performance/runners/pom.xml
The file was modified test-framework/providers/simple/pom.xml
The file was modified tests/integration/cdi-integration/cdi-beanvalidation-webapp/src/main/resources/META-INF/beans.xml
The file was modified examples/json-binding-webapp/pom.xml
The file was modified media/multipart/pom.xml
The file was modified test-framework/providers/external/pom.xml
The file was modified tests/integration/cdi-integration/cdi-multimodule/ear/pom.xml
The file was modified security/pom.xml
The file was modified ext/cdi/jersey-cdi1x-ban-custom-hk2-binding/pom.xml
The file was modified tests/integration/servlet-3-init-3/pom.xml
The file was modified tests/performance/test-cases/mbw-xml-jaxb/pom.xml
The file was modified containers/glassfish/pom.xml
The file was modified core-common/src/main/jsr166/org/glassfish/jersey/internal/jsr166/Flow.java
The file was modified ext/cdi/jersey-cdi1x-validation/pom.xml
The file was modified tests/integration/jersey-3992/src/test/java/org/glassfish/jersey/tests/cdi/resources/CdiTest.java
The file was modified tests/integration/cdi-integration/cdi-beanvalidation-webapp/src/main/java/org/glassfish/jersey/tests/cdi/bv/Hk2ValidationInterceptor.java
The file was modified ext/bean-validation/pom.xml
The file was modified archetypes/jersey-quickstart-grizzly2/pom.xml
The file was modified ext/bean-validation/src/main/java/org/glassfish/jersey/server/validation/internal/CompositeInjectingConstraintValidatorFactory.java
The file was modified tests/integration/microprofile/config/webapp/src/main/resources/META-INF/microprofile-config.properties
The file was modified tests/integration/servlet-2.5-autodiscovery-2/pom.xml
The file was modified examples/helloworld-benchmark/pom.xml
The file was modified examples/entity-filtering-selectable/src/main/java/org/glassfish/jersey/examples/entityfiltering/selectable/App.java
The file was modified ext/mvc-mustache/pom.xml
The file was modified tests/performance/test-cases/interceptor-name/pom.xml
The file was modified tests/e2e-inject/cdi2-se/pom.xml
The file was modified tests/integration/cdi-integration/cdi-beanvalidation-webapp/src/main/java/org/glassfish/jersey/tests/cdi/bv/CdiValidationResultBinder.java
The file was modified etc/config/copyright-exclude
The file was modified tests/integration/cdi-integration/cdi-beanvalidation-webapp/src/main/java/org/glassfish/jersey/tests/cdi/bv/ValidationResult.java
The file was modified media/json-jackson1/pom.xml
The file was modified tests/integration/cdi-integration/cdi-test-webapp/src/main/webapp/WEB-INF/web.xml
The file was modified tests/integration/ejb-multimodule/ear/pom.xml
The file was modified tests/performance/test-cases/mbw-text-plain/pom.xml
The file was modified ext/mvc/pom.xml
The file was modified tests/integration/jersey-1107/pom.xml
The file was modified tests/integration/jersey-2322/pom.xml
The file was modified etc/travis/travis.sh
The file was modified ext/microprofile/mp-config/src/test/resources/META-INF/microprofile-config.properties
The file was modified tests/integration/servlet-2.5-init-1/pom.xml
The file was modified examples/osgi-helloworld-webapp/additional-bundle/pom.xml
The file was modified examples/assemblies/pom.xml
The file was modified tests/integration/cdi-integration/cdi-with-jersey-injection-webapp/src/main/webapp/WEB-INF/beans.xml
The file was modified tests/integration/jersey-1667/pom.xml
The file was modified tests/integration/cdi-integration/cdi-beanvalidation-webapp/src/main/webapp/WEB-INF/beans.xml
The file was modified tests/mem-leaks/redeployment/redeployment-threadlocals-app/pom.xml
The file was modified tests/integration/cdi-integration/cdi-multimodule/war2/pom.xml
The file was modified tests/integration/cdi-integration/cdi-test-webapp/src/main/java/org/glassfish/jersey/tests/cdi/resources/JCDIBeanExceptionMapper.java
The file was modified tests/integration/jersey-1604/pom.xml
The file was modified tests/integration/cdi-integration/cdi-multipart-webapp/pom.xml
The file was modified tests/integration/portability-jersey-2/pom.xml
The file was modified tests/integration/jersey-1928/pom.xml
The file was modified incubator/open-tracing/pom.xml
The file was modified tests/integration/servlet-3-sse-1/pom.xml
The file was modified tests/integration/jersey-2167/pom.xml
The file was modified tests/integration/ejb-multimodule-reload/war2/pom.xml
The file was modified tests/integration/servlet-3-init-1/pom.xml
The file was modified tests/integration/cdi-integration/cdi-multimodule/lib/src/main/resources/META-INF/beans.xml
The file was modified ext/spring4/pom.xml
The file was modified test-framework/providers/pom.xml
The file was modified tests/mem-leaks/test-cases/shutdown-hook-leak/pom.xml
The file was modified tests/performance/test-cases/assemblies/pom.xml
The file was modified tests/performance/tools/pom.xml
The file was modified tests/integration/servlet-2.5-filter/pom.xml
The file was modified core-common/src/main/java/org/glassfish/jersey/internal/inject/ParamConverterConfigurator.java
The file was modified examples/clipboard/pom.xml
The file was modified tests/integration/cdi-integration/cdi-multimodule/pom.xml
The file was modified examples/open-tracing/pom.xml
The file was modified inject/hk2/pom.xml
The file was modified media/json-binding/pom.xml
The file was modified tests/integration/j-441/war1/pom.xml
The file was modified tests/performance/test-cases/filter-name/pom.xml
The file was modified ext/cdi/jersey-cdi1x/pom.xml
The file was modified ext/pom.xml
The file was modified tests/integration/ejb-multimodule-reload/ear/pom.xml
The file was modified examples/sse-item-store-jersey-webapp/pom.xml
The file was modified tests/mem-leaks/redeployment/redeployment-leaking-test-app/pom.xml
The file was modified examples/server-async-standalone/client/pom.xml
The file was modified tests/integration/cdi-integration/pom.xml
The file was modified tests/performance/test-cases/pom.xml
The file was modified connectors/pom.xml
The file was modified tests/integration/servlet-request-wrapper-binding-2/pom.xml
The file was modified tests/integration/spring4/pom.xml
The file was modified tests/integration/cdi-integration/cdi-beanvalidation-webapp/src/main/java/org/glassfish/jersey/tests/cdi/bv/Hk2ValidationResult.java
The file was modified tests/integration/jersey-2154/pom.xml
The file was modified examples/xml-moxy/pom.xml
The file was modified tests/integration/cdi-integration/cdi-test-webapp/src/main/java/org/glassfish/jersey/tests/cdi/resources/JDCIBeanException.java
The file was modified tests/integration/servlet-2.5-init-5/pom.xml
The file was modified test-framework/providers/grizzly2/pom.xml
The file was modified tests/integration/ejb-multimodule-reload/war1/pom.xml
The file was modified archetypes/jersey-quickstart-webapp/pom.xml
The file was modified ext/cdi/jersey-cdi1x-transaction/pom.xml
The file was modified tests/integration/jersey-4321/pom.xml
The file was modified archetypes/pom.xml
The file was modified tests/performance/test-cases/interceptor-dynamic/pom.xml
The file was modified tests/integration/portability-jersey-1/pom.xml
The file was modified tests/integration/j-59/ear/pom.xml
The file was modified tests/integration/cdi-integration/cdi-with-jersey-injection-webapp/pom.xml
The file was modified tests/integration/cdi-integration/cdi-with-jersey-injection-custom-hk2-banned-webapp/src/main/webapp/WEB-INF/beans.xml
The file was modified tests/mem-leaks/test-cases/pom.xml
The file was modified tests/integration/cdi-integration/cdi-client-on-server/pom.xml
The file was modified incubator/gae-integration/pom.xml
The file was modified tests/integration/servlet-3-gf-async/pom.xml
The file was modified examples/helloworld-programmatic/pom.xml
The file was modified tests/integration/jersey-2255/pom.xml
The file was modified tests/integration/servlet-2.5-init-4/pom.xml
The file was modified core-server/src/main/java/org/glassfish/jersey/server/internal/inject/ParamExtractorConfigurator.java
The file was modified tests/integration/cdi-integration/cdi-test-webapp/src/main/resources/META-INF/beans.xml
The file was modified examples/json-jackson/pom.xml
The file was modified tests/integration/cdi-integration/cdi-with-jersey-injection-custom-cfg-webapp/src/main/webapp/WEB-INF/web.xml
The file was modified tests/integration/jersey-2137/pom.xml
The file was modified tests/integration/servlet-2.5-reload/pom.xml
The file was modified examples/exception-mapping/pom.xml
The file was modified core-common/src/test/java/org/glassfish/jersey/internal/util/JdkVersionCompareTest.java
The file was modified inject/cdi2-se/pom.xml
The file was modified tests/integration/asm/src/test/java/org/glassfish/jersey/integration/asm/AnnotatedClassVisitorTest.java
The file was modified examples/managed-beans-webapp/pom.xml
The file was modified test-framework/maven/custom-enforcer-rules/pom.xml
The file was modified examples/sse-twitter-aggregator/pom.xml
The file was modified ext/bean-validation/src/main/java/org/glassfish/jersey/server/validation/internal/hibernate/HibernateInjectingConstraintValidatorFactory.java
The file was modified tests/performance/pom.xml
The file was modified examples/osgi-helloworld-webapp/pom.xml
The file was modified media/jaxb/src/main/resources/org/glassfish/jersey/jaxb/internal/localization.properties
The file was modified examples/helloworld-webapp/pom.xml
The file was modified ext/cdi/jersey-cdi1x-servlet/pom.xml
The file was modified tests/e2e-core-common/pom.xml
The file was modified examples/managed-client-simple-webapp/pom.xml
The file was modified tests/integration/j-59/lib/pom.xml
The file was modified tests/integration/cdi-integration/cdi-client-on-server/src/main/java/org/glassfish/jersey/tests/cdi/client/CdiEnabledClientOnServerApplication.java
The file was modified containers/netty-http/pom.xml
The file was modified examples/managed-client/pom.xml
The file was modified media/jaxb/src/main/java/org/glassfish/jersey/jaxb/internal/XmlInputFactoryInjectionProvider.java
The file was modified connectors/grizzly-connector/pom.xml
The file was modified examples/server-async-standalone/webapp/pom.xml
The file was modified test-framework/util/pom.xml
The file was modified tests/performance/benchmarks/pom.xml
The file was modified tests/integration/async-jersey-filter/pom.xml
The file was modified tests/integration/jersey-1223/pom.xml
The file was modified tests/integration/jersey-2612/pom.xml
The file was modified tests/integration/cdi-integration/cdi-client-on-server/src/main/resources/META-INF/beans.xml
The file was modified tests/integration/cdi-integration/cdi-multimodule/lib/pom.xml
The file was modified tests/integration/cdi-integration/cdi-test-webapp/src/main/java/org/glassfish/jersey/tests/cdi/resources/JDCIBeanDependentException.java
The file was modified examples/jaxrs-types-injection/pom.xml
The file was modified security/oauth1-server/pom.xml
The file was modified tests/integration/servlet-3-init-6/pom.xml
The file was modified tests/integration/servlet-3-init-8/pom.xml
The file was modified tests/integration/cdi-integration/cdi-test-webapp/src/test/java/org/glassfish/jersey/tests/cdi/resources/ConstructorInjectionTest.java
The file was modified examples/entity-filtering-security/pom.xml
The file was modified media/sse/pom.xml
The file was modified media/multipart/src/main/java/org/glassfish/jersey/media/multipart/FormDataMultiPart.java
The file was modified tests/integration/jersey-2689/pom.xml
The file was modified tests/integration/servlet-2.5-init-8/pom.xml
The file was modified tests/integration/servlet-3-init-4/pom.xml
The file was modified incubator/kryo/pom.xml
The file was modified tests/integration/cdi-integration/cdi-with-jersey-injection-custom-cfg-webapp/src/main/webapp/WEB-INF/beans.xml
The file was modified tests/integration/jersey-2551/pom.xml
The file was modified examples/entity-filtering/pom.xml
The file was modified bom/pom.xml
The file was modified ext/microprofile/pom.xml
The file was modified tests/mem-leaks/test-cases/leaking-test-app/pom.xml
The file was modified tests/mem-leaks/redeployment/redeployment-hello-world-app-ref/pom.xml
The file was modified .travis.yml
The file was modified tests/performance/test-cases/mbw-json-jackson/pom.xml
The file was modified examples/osgi-helloworld-webapp/alternate-version-bundle/pom.xml
The file was modified test-framework/pom.xml
The file was modified incubator/pom.xml
The file was modified tests/integration/ejb-multimodule-reload/lib/pom.xml
The file was modified tests/integration/ejb-multimodule-reload/pom.xml
The file was modified tests/osgi/pom.xml
The file was modified ext/bean-validation/src/main/java/org/glassfish/jersey/server/validation/internal/hibernate/DestructibleBeanInstance.java
The file was modified inject/pom.xml
The file was modified test-framework/providers/bundle/pom.xml
The file was modified tests/integration/servlet-2.5-init-3/pom.xml
The file was modified containers/pom.xml
The file was modified examples/server-async/pom.xml
The file was modified tests/integration/jersey-1883/pom.xml
The file was modified ext/spring5/pom.xml
The file was modified tests/integration/jaxrs-component-inject/pom.xml
The file was modified tests/integration/cdi-integration/cdi-beanvalidation-webapp/src/main/java/org/glassfish/jersey/tests/cdi/bv/ValidationResultUtil.java
The file was modified tests/performance/test-cases/param-srl/pom.xml
The file was modified ext/proxy-client/pom.xml
The file was modified tests/integration/cdi-integration/cdi-ejb-test-webapp/src/main/java/org/glassfish/jersey/tests/cdi/resources/BasicTimer.java
The file was modified tests/integration/cdi-integration/cdi-iface-with-non-jaxrs-impl-test-webapp/src/main/webapp/WEB-INF/web.xml
The file was modified tests/integration/jersey-2421/pom.xml
The file was modified ext/cdi/jersey-cdi1x/src/main/java/org/glassfish/jersey/ext/cdi1x/internal/CdiComponentProvider.java
The file was modified examples/servlet3-webapp/pom.xml
The file was modified connectors/jetty-connector/src/test/java/org/glassfish/jersey/jetty/connector/ProxyTest.java
The file was modified tests/integration/servlet-3-init-9/src/test/java/org/glassfish/jersey/tests/integration/servlet_3_init_9/HelloWorldResourceITCase.java
The file was modified tests/integration/spring5/pom.xml
The file was modified examples/bookmark-em/pom.xml
The file was modified tests/integration/servlet-2.5-init-6/pom.xml
The file was modified test-framework/providers/netty/pom.xml
The file was modified tests/integration/jersey-2846/pom.xml
The file was modified media/pom.xml
The file was modified tests/integration/servlet-3-inflector-1/pom.xml
The file was modified test-framework/providers/jetty/pom.xml
The file was modified core-client/src/main/java/org/glassfish/jersey/client/ClientBootstrapBag.java
The file was modified test-framework/providers/jdk-http/pom.xml
The file was modified connectors/netty-connector/pom.xml
The file was modified tests/integration/cdi-integration/cdi-multimodule/war1/pom.xml
The file was modified ext/rx/rx-client-guava/pom.xml
The file was modified tests/integration/servlet-3-async/pom.xml
The file was modified examples/clipboard-programmatic/pom.xml
The file was modified examples/jersey-ejb/pom.xml
The file was modified examples/oauth-client-twitter/pom.xml
The file was modified tests/mem-leaks/redeployment/redeployment-no-jersey-app/pom.xml
The file was modified tests/performance/test-cases/mbw-xml-moxy/pom.xml
The file was modified tests/performance/test-cases/mbw-custom-provider/pom.xml
The file was modified examples/sse-item-store-jaxrs-webapp/pom.xml
The file was modified media/json-jettison/pom.xml
The file was modified archetypes/jersey-heroku-webapp/pom.xml
The file was modified tests/integration/cdi-integration/cdi-with-jersey-injection-custom-hk2-banned-webapp/pom.xml
The file was modified tests/integration/ejb-multimodule/war/pom.xml
The file was modified ext/rx/pom.xml
The file was modified tests/e2e-testng/pom.xml
The file was modified tests/integration/servlet-2.5-init-2/pom.xml
The file was modified examples/managed-client-webapp/pom.xml
The file was modified tests/integration/cdi-integration/cdi-with-jersey-injection-custom-hk2-banned-webapp/src/main/webapp/WEB-INF/web.xml
The file was modified examples/java8-webapp/pom.xml
The file was modified examples/simple-console/src/test/java/org/glassfish/jersey/examples/console/MainTest.java
The file was modified tests/integration/jersey-2176/pom.xml
The file was modified tests/integration/servlet-2.5-init-7/pom.xml
The file was modified examples/osgi-helloworld-webapp/lib-bundle/pom.xml
The file was modified examples/server-async-managed/pom.xml
The file was modified tests/integration/cdi-integration/cdi-ejb-test-webapp/pom.xml
The file was modified incubator/html-json/pom.xml
The file was modified tests/integration/servlet-request-wrapper-binding/pom.xml
The file was modified connectors/apache-connector/pom.xml
The file was modified tests/integration/cdi-integration/cdi-test-webapp/src/main/java/org/glassfish/jersey/tests/cdi/resources/JaxRsInjectedBean.java
The file was modified tests/integration/cdi-integration/cdi-multipart-webapp/src/main/webapp/WEB-INF/beans.xml
The file was modified containers/glassfish/jersey-gf-ejb/src/main/java/org/glassfish/jersey/gf/ejb/internal/EjbComponentProvider.java
The file was modified core-client/pom.xml
The file was modified tests/performance/test-cases/mbw-kryo/pom.xml
The file was modified tests/integration/cdi-integration/cdi-ejb-test-webapp/src/main/webapp/WEB-INF/web.xml
The file was modified tests/integration/jersey-2892/pom.xml
The file was modified tests/integration/jersey-2673/pom.xml
The file was modified ext/metainf-services/pom.xml
The file was modified tests/integration/tracing-support/pom.xml
The file was modified tests/mem-leaks/pom.xml
The file was modified tests/integration/cdi-integration/cdi-iface-with-non-jaxrs-impl-test-webapp/pom.xml
The file was modified ext/mvc-freemarker/pom.xml
The file was modified security/oauth1-client/pom.xml
The file was modified test-framework/providers/inmemory/pom.xml
The file was modified tests/performance/test-cases/mbw-json-moxy/pom.xml
The file was modified test-framework/memleak-test-common/pom.xml
The file was modified examples/freemarker-webapp/pom.xml
The file was modified tests/integration/ejb-test-webapp/pom.xml
The file was modified tests/integration/servlet-2.5-inflector-1/pom.xml
The file was modified ext/cdi/pom.xml
The file was modified tests/performance/test-cases/proxy-injection/pom.xml
The file was modified tests/stress/pom.xml
The file was modified ext/rx/rx-client-rxjava/pom.xml
The file was modified containers/simple-http/src/main/resources/org/glassfish/jersey/simple/internal/localization.properties
The file was modified examples/helloworld/pom.xml
The file was modified tests/integration/j-59/pom.xml
The file was modified tests/integration/jersey-2654/pom.xml
The file was modified tests/integration/servlet-3-params/pom.xml
The file was modified tests/integration/jersey-2704/pom.xml
The file was modified tests/integration/jersey-3670/pom.xml
The file was modified ext/cdi/jersey-cdi1x/src/main/java/org/glassfish/jersey/ext/cdi1x/internal/CdiUtil.java
The file was modified tests/integration/security-digest/pom.xml
The file was modified tests/integration/property-check/pom.xml
The file was modified tests/integration/cdi-integration/cdi-iface-with-non-jaxrs-impl-test-webapp/src/main/webapp/WEB-INF/beans.xml
The file was modified tests/integration/sonar-test/pom.xml
The file was modified tests/integration/cdi-integration/cdi-with-jersey-injection-custom-cfg-webapp/pom.xml
The file was modified examples/bookmark/pom.xml
The file was modified examples/simple-console/pom.xml
The file was modified containers/jersey-servlet/pom.xml
The file was modified tests/mem-leaks/test-cases/bean-param-leak/pom.xml
The file was modified tests/integration/jersey-2794/pom.xml
The file was modified examples/http-trace/pom.xml
The file was modified core-common/src/main/java/org/glassfish/jersey/internal/AbstractRuntimeDelegate.java
The file was modified examples/system-properties-example/pom.xml
The file was modified tests/integration/cdi-integration/cdi-with-jersey-injection-webapp/src/main/webapp/WEB-INF/web.xml
The file was modified tests/performance/test-cases/filter-dynamic/pom.xml
The file was modified security/oauth1-signature/pom.xml
The file was modified archetypes/jersey-example-java8-webapp/pom.xml
The file was modified tests/integration/client-connector-provider/pom.xml
Commit 741aad4fb064c1824325339f78d22b2a5c3dac20 by 15908245+jansupol
Apply 2021

Signed-off-by: Jorge Bescos Gascon <jorge.bescos.gascon@oracle.com>
The file was modified tests/integration/cdi-integration/cdi-beanvalidation-webapp/src/main/java/org/glassfish/jersey/tests/cdi/bv/Hk2ValidationInterceptor.java
The file was modified containers/glassfish/pom.xml
The file was modified examples/java8-webapp/pom.xml
The file was modified test-framework/providers/pom.xml
The file was modified media/json-processing/pom.xml
The file was modified ext/cdi/jersey-cdi1x/pom.xml
The file was modified tests/performance/test-cases/filter-dynamic/pom.xml
The file was modified examples/osgi-http-service/pom.xml
The file was modified ext/bean-validation/src/main/java/org/glassfish/jersey/server/validation/internal/CompositeInjectingConstraintValidatorFactory.java
The file was modified tests/integration/portability-jersey-2/pom.xml
The file was modified security/oauth1-client/pom.xml
The file was modified examples/server-async-standalone/pom.xml
The file was modified incubator/gae-integration/pom.xml
The file was modified tests/e2e-inject/cdi2-se/pom.xml
The file was modified tests/integration/cdi-integration/cdi-iface-with-non-jaxrs-impl-test-webapp/src/main/webapp/WEB-INF/web.xml
The file was modified tests/integration/microprofile/config/webapp/src/main/resources/META-INF/microprofile-config.properties
The file was modified tests/integration/ejb-multimodule/lib/pom.xml
The file was modified tests/mem-leaks/test-cases/pom.xml
The file was modified archetypes/pom.xml
The file was modified connectors/grizzly-connector/pom.xml
The file was modified examples/helloworld-pure-jax-rs/pom.xml
The file was modified tests/integration/asm/src/test/java/org/glassfish/jersey/integration/asm/AnnotatedClassVisitorTest.java
The file was modified ext/rx/rx-client-rxjava/pom.xml
The file was modified media/json-jettison/pom.xml
The file was modified examples/helloworld-webapp/pom.xml
The file was modified examples/osgi-helloworld-webapp/pom.xml
The file was modified media/json-binding/pom.xml
The file was modified tests/integration/servlet-2.5-init-5/pom.xml
The file was modified ext/rx/pom.xml
The file was modified test-framework/providers/jetty/pom.xml
The file was modified test-framework/providers/external/pom.xml
The file was modified core-common/src/main/java/org/glassfish/jersey/internal/inject/ParamConverterConfigurator.java
The file was modified tests/osgi/pom.xml
The file was modified tests/integration/jersey-2551/pom.xml
The file was modified tests/integration/servlet-2.5-init-8/pom.xml
The file was modified ext/spring4/src/main/java/org/glassfish/jersey/server/spring/SpringComponentProvider.java
The file was modified tests/integration/jersey-1604/pom.xml
The file was modified ext/cdi/jersey-cdi1x-transaction/pom.xml
The file was modified media/jaxb/src/main/java/org/glassfish/jersey/jaxb/internal/XmlInputFactoryInjectionProvider.java
The file was modified tests/jmockit/pom.xml
The file was modified media/multipart/src/main/java/org/glassfish/jersey/media/multipart/FormDataMultiPart.java
The file was modified examples/json-jackson/pom.xml
The file was modified tests/integration/sonar-test/pom.xml
The file was modified tests/performance/test-cases/interceptor-global/pom.xml
The file was modified examples/oauth-client-twitter/pom.xml
The file was modified security/pom.xml
The file was modified archetypes/jersey-heroku-webapp/pom.xml
The file was modified tests/integration/cdi-integration/cdi-test-webapp/src/test/java/org/glassfish/jersey/tests/cdi/resources/ConstructorInjectionTest.java
The file was modified tests/integration/servlet-3-init-1/pom.xml
The file was modified core-server/src/test/java/org/glassfish/jersey/server/internal/scanning/JarFileScannerTest.java
The file was modified tests/performance/test-cases/mbw-custom-provider/pom.xml
The file was modified ext/spring5/pom.xml
The file was modified ext/mvc-mustache/pom.xml
The file was modified ext/pom.xml
The file was modified tests/integration/jersey-2255/pom.xml
The file was modified tests/stress/pom.xml
The file was modified tests/integration/cdi-integration/cdi-multimodule/pom.xml
The file was modified connectors/jetty-connector/src/test/java/org/glassfish/jersey/jetty/connector/ProxyTest.java
The file was modified tests/integration/servlet-3-init-5/pom.xml
The file was modified tests/integration/jersey-2689/pom.xml
The file was modified tests/performance/runners/pom.xml
The file was modified tests/integration/servlet-3-chunked-io/pom.xml
The file was modified examples/json-binding-webapp/pom.xml
The file was modified test-framework/providers/bundle/pom.xml
The file was modified examples/reload/pom.xml
The file was modified tests/integration/spring4/pom.xml
The file was modified tests/e2e-inject/hk2/pom.xml
The file was modified tests/integration/servlet-3-init-6/pom.xml
The file was modified ext/rx/rx-client-rxjava2/pom.xml
The file was modified tests/integration/servlet-3-init-9/src/test/java/org/glassfish/jersey/tests/integration/servlet_3_init_9/HelloWorldResourceITCase.java
The file was modified ext/cdi/jersey-cdi1x-servlet/pom.xml
The file was modified tests/integration/servlet-3-init-4/pom.xml
The file was modified tests/integration/servlet-2.5-autodiscovery-1/pom.xml
The file was modified containers/jersey-servlet-core/pom.xml
The file was modified test-framework/providers/netty/pom.xml
The file was modified tests/integration/cdi-integration/cdi-with-jersey-injection-custom-hk2-banned-webapp/src/main/webapp/WEB-INF/web.xml
The file was modified tests/integration/jersey-2612/pom.xml
The file was modified tests/performance/benchmarks/pom.xml
The file was modified tests/integration/jersey-2167/pom.xml
The file was modified tests/integration/cdi-integration/cdi-ejb-test-webapp/src/main/webapp/WEB-INF/web.xml
The file was modified tests/integration/microprofile/rest-client/pom.xml
The file was modified examples/servlet3-webapp/pom.xml
The file was modified tests/integration/servlet-request-wrapper-binding/pom.xml
The file was modified examples/groovy/pom.xml
The file was modified tests/integration/cdi-integration/cdi-with-jersey-injection-webapp/src/main/webapp/WEB-INF/web.xml
The file was modified tests/integration/ejb-multimodule/ear/pom.xml
The file was modified ext/bean-validation/pom.xml
The file was modified tests/integration/j-441/pom.xml
The file was modified tests/integration/jersey-2654/pom.xml
The file was modified examples/bookmark/pom.xml
The file was modified tests/integration/cdi-integration/cdi-iface-with-non-jaxrs-impl-test-webapp/src/main/webapp/WEB-INF/beans.xml
The file was modified tests/integration/cdi-integration/cdi-with-jersey-injection-custom-cfg-webapp/src/main/webapp/WEB-INF/beans.xml
The file was modified tests/integration/j-59/ear/pom.xml
The file was modified examples/rx-client-webapp/pom.xml
The file was modified examples/declarative-linking/pom.xml
The file was modified examples/server-async-standalone/client/pom.xml
The file was modified examples/jersey-ejb/pom.xml
The file was modified core-client/src/main/java/org/glassfish/jersey/client/ClientProperties.java
The file was modified examples/entity-filtering-security/pom.xml
The file was modified tests/integration/servlet-3-init-2/pom.xml
The file was modified tests/integration/jersey-2154/pom.xml
The file was modified tests/integration/cdi-integration/cdi-test-webapp/src/main/java/org/glassfish/jersey/tests/cdi/resources/JCDIBeanExceptionMapper.java
The file was modified core-server/src/test/java/org/glassfish/jersey/server/internal/inject/ParamConverterInternalTest.java
The file was modified ext/cdi/pom.xml
The file was modified test-framework/maven/pom.xml
The file was modified tests/e2e-core-common/pom.xml
The file was modified examples/clipboard-programmatic/pom.xml
The file was modified ext/mvc-jsp/pom.xml
The file was modified tests/integration/cdi-integration/cdi-beanvalidation-webapp/src/main/java/org/glassfish/jersey/tests/cdi/bv/ValidationResultUtil.java
The file was modified examples/https-server-glassfish/pom.xml
The file was modified ext/mvc/pom.xml
The file was modified examples/helloworld-spring-webapp/pom.xml
The file was modified tests/integration/servlet-2.5-init-6/pom.xml
The file was modified tests/integration/cdi-integration/cdi-multimodule/war2/pom.xml
The file was modified tests/integration/servlet-request-wrapper-binding-2/pom.xml
The file was modified archetypes/jersey-quickstart-webapp/pom.xml
The file was modified tests/mem-leaks/test-cases/leaking-test-app/pom.xml
The file was modified tests/integration/cdi-integration/cdi-test-webapp/src/main/webapp/WEB-INF/beans.xml
The file was modified security/oauth2-client/pom.xml
The file was modified tests/integration/jersey-1928/pom.xml
The file was modified tests/integration/jersey-2335/pom.xml
The file was modified tests/integration/servlet-2.5-inflector-1/pom.xml
The file was modified examples/helloworld-programmatic/pom.xml
The file was modified tests/integration/servlet-3-params/pom.xml
The file was modified tests/integration/cdi-integration/cdi-ejb-test-webapp/src/main/webapp/WEB-INF/beans.xml
The file was modified ext/proxy-client/pom.xml
The file was modified media/sse/src/main/java/org/glassfish/jersey/media/sse/InboundEvent.java
The file was modified examples/http-trace/pom.xml
The file was modified examples/jaxrs-types-injection/pom.xml
The file was modified tests/integration/cdi-integration/pom.xml
The file was modified ext/metainf-services/pom.xml
The file was modified inject/hk2/pom.xml
The file was modified tests/integration/jersey-2421/pom.xml
The file was modified core-common/src/main/java/org/glassfish/jersey/internal/AbstractRuntimeDelegate.java
The file was modified tests/integration/jersey-2878/pom.xml
The file was modified examples/sse-twitter-aggregator/pom.xml
The file was modified bom/pom.xml
The file was modified archetypes/jersey-example-java8-webapp/pom.xml
The file was modified examples/helloworld-netty/pom.xml
The file was modified examples/entity-filtering-selectable/src/main/java/org/glassfish/jersey/examples/entityfiltering/selectable/App.java
The file was modified tests/integration/servlet-2.5-filter/pom.xml
The file was modified examples/system-properties-example/pom.xml
The file was modified containers/netty-http/pom.xml
The file was modified tests/integration/jersey-3796/pom.xml
The file was modified test-framework/memleak-test-common/pom.xml
The file was modified tests/integration/cdi-integration/cdi-with-jersey-injection-custom-hk2-banned-webapp/src/main/webapp/WEB-INF/beans.xml
The file was modified tests/integration/tracing-support/pom.xml
The file was modified media/sse/src/main/java/org/glassfish/jersey/media/sse/EventInput.java
The file was modified tests/integration/jersey-4321/pom.xml
The file was modified tests/integration/servlet-3-gf-async/pom.xml
The file was modified containers/simple-http/src/main/resources/org/glassfish/jersey/simple/internal/localization.properties
The file was modified ext/spring4/pom.xml
The file was modified tests/performance/test-cases/proxy-injection/pom.xml
The file was modified tests/integration/jersey-1107/pom.xml
The file was modified tests/integration/spring5/pom.xml
The file was modified core-common/src/test/java/org/glassfish/jersey/internal/util/JdkVersionParseTest.java
The file was modified tests/integration/jersey-3670/pom.xml
The file was modified tests/integration/cdi-integration/cdi-iface-with-non-jaxrs-impl-test-webapp/pom.xml
The file was modified tests/integration/client-connector-provider/pom.xml
The file was modified tests/integration/jersey-1883/pom.xml
The file was modified core-client/src/main/java/org/glassfish/jersey/client/JerseyWebTarget.java
The file was modified tests/performance/test-cases/mbw-json-moxy/pom.xml
The file was modified media/sse/pom.xml
The file was modified tests/integration/portability-jersey-1/pom.xml
The file was modified tests/integration/cdi-integration/cdi-test-webapp/src/main/webapp/WEB-INF/web.xml
The file was modified tests/integration/j-59/war/pom.xml
The file was modified examples/freemarker-webapp/pom.xml
The file was modified tests/integration/cdi-integration/cdi-test-webapp/src/main/java/org/glassfish/jersey/tests/cdi/resources/JDCIBeanException.java
The file was modified tests/integration/ejb-multimodule-reload/pom.xml
The file was modified examples/entity-filtering-selectable/pom.xml
The file was modified examples/helloworld/pom.xml
The file was modified security/oauth1-server/pom.xml
The file was modified tests/integration/cdi-integration/cdi-with-jersey-injection-webapp/src/main/webapp/WEB-INF/beans.xml
The file was modified tests/performance/test-cases/mbw-text-plain/pom.xml
The file was modified tests/integration/j-59/pom.xml
The file was modified tests/integration/property-check/pom.xml
The file was modified tests/integration/cdi-integration/cdi-with-jersey-injection-webapp/pom.xml
The file was modified examples/osgi-helloworld-webapp/additional-bundle/pom.xml
The file was modified tests/integration/cdi-integration/cdi-with-jersey-injection-custom-hk2-banned-webapp/pom.xml
The file was modified tests/integration/jersey-2776/pom.xml
The file was modified tests/integration/j-441/war2/pom.xml
The file was modified examples/bookmark-em/pom.xml
The file was modified tests/integration/jersey-2164/pom.xml
The file was modified core-common/src/main/java8/org/glassfish/jersey/internal/jsr166/SubmissionPublisher.java
The file was modified examples/xml-moxy/pom.xml
The file was modified incubator/pom.xml
The file was modified core-common/src/test/java/org/glassfish/jersey/internal/util/JdkVersionCompareTest.java
The file was modified ext/microprofile/pom.xml
The file was modified tests/integration/cdi-integration/cdi-manually-bound/pom.xml
The file was modified examples/managed-client-webapp/pom.xml
The file was modified tests/integration/cdi-integration/cdi-test-webapp/src/main/java/org/glassfish/jersey/tests/cdi/resources/JDCIBeanDependentException.java
The file was modified tests/integration/ejb-multimodule-reload/lib/pom.xml
The file was modified examples/sse-item-store-jersey-webapp/pom.xml
The file was modified test-framework/providers/simple/pom.xml
The file was modified tests/integration/cdi-integration/cdi-test-webapp/src/main/java/org/glassfish/jersey/tests/cdi/resources/JaxRsInjectedBean.java
The file was modified incubator/kryo/pom.xml
The file was modified tests/integration/servlet-2.5-init-7/pom.xml
The file was modified core-common/src/main/jsr166/org/glassfish/jersey/internal/jsr166/package-info.java
The file was modified examples/managed-beans-webapp/pom.xml
The file was modified archetypes/jersey-quickstart-grizzly2/pom.xml
The file was modified ext/microprofile/mp-config/src/test/resources/META-INF/microprofile-config.properties
The file was modified media/json-jackson1/pom.xml
The file was modified tests/integration/servlet-3-inflector-1/pom.xml
The file was modified containers/jersey-servlet/pom.xml
The file was modified tests/integration/cdi-integration/cdi-beanvalidation-webapp/src/main/java/org/glassfish/jersey/tests/cdi/bv/Hk2ValidationResult.java
The file was modified examples/managed-client/pom.xml
The file was modified inject/cdi2-se/pom.xml
The file was modified examples/open-tracing/pom.xml
The file was modified examples/osgi-helloworld-webapp/lib-bundle/pom.xml
The file was modified tests/integration/servlet-3-init-8/pom.xml
The file was modified containers/glassfish/jersey-gf-ejb/src/main/java/org/glassfish/jersey/gf/ejb/internal/EjbComponentProvider.java
The file was modified tests/mem-leaks/redeployment/pom.xml
The file was modified examples/helloworld-benchmark/pom.xml
The file was modified tests/integration/servlet-2.5-autodiscovery-2/pom.xml
The file was modified ext/cdi/jersey-cdi1x-validation/pom.xml
The file was modified tests/performance/test-cases/mbw-kryo/pom.xml
The file was modified test-framework/util/pom.xml
The file was modified tests/performance/test-cases/filter-name/pom.xml
The file was modified core-common/src/main/jsr166/org/glassfish/jersey/internal/jsr166/Flow.java
The file was modified ext/servlet-portability/pom.xml
The file was modified media/multipart/pom.xml
The file was modified tests/integration/jersey-1964/pom.xml
The file was modified tests/integration/cdi-integration/cdi-multipart-webapp/pom.xml
The file was modified tests/integration/jersey-2136/pom.xml
The file was modified core-server/src/main/java/org/glassfish/jersey/server/internal/inject/ParamExtractorConfigurator.java
The file was modified examples/clipboard/pom.xml
The file was modified test-framework/providers/jdk-http/pom.xml
The file was modified connectors/apache-connector/pom.xml
The file was modified examples/simple-console/pom.xml
The file was modified ext/bean-validation/src/main/java/org/glassfish/jersey/server/validation/internal/ValidationInterceptorExecutor.java
The file was modified tests/mem-leaks/test-cases/shutdown-hook-leak-client/pom.xml
The file was modified tests/integration/microprofile/rest-client/tck-suite.xml
The file was modified tests/mem-leaks/redeployment/redeployment-threadlocals-app/pom.xml
The file was modified security/oauth1-signature/pom.xml
The file was modified tests/integration/cdi-integration/cdi-ejb-test-webapp/pom.xml
The file was modified tests/integration/ejb-multimodule/pom.xml
The file was modified ext/bean-validation/src/main/java/org/glassfish/jersey/server/validation/internal/hibernate/DestructibleBeanInstance.java
The file was modified examples/server-async-managed/pom.xml
The file was modified tests/integration/jersey-1960/pom.xml
The file was modified ext/microprofile/mp-config/pom.xml
The file was modified examples/simple-console/src/test/java/org/glassfish/jersey/examples/console/MainTest.java
The file was modified tests/integration/jersey-2176/pom.xml
The file was modified tests/performance/test-cases/mbw-xml-moxy/pom.xml
The file was modified examples/webapp-example-parent/pom.xml
The file was modified tests/integration/jaxrs-component-inject/pom.xml
The file was modified tests/integration/servlet-2.5-init-4/pom.xml
The file was modified tests/mem-leaks/redeployment/redeployment-hello-world-app-ref/pom.xml
The file was modified tests/integration/jersey-2892/pom.xml
The file was modified connectors/netty-connector/pom.xml
The file was modified tests/integration/cdi-integration/cdi-multimodule/lib/pom.xml
The file was modified tests/integration/cdi-integration/cdi-multimodule/war1/pom.xml
The file was modified tests/integration/j-441/ear/pom.xml
The file was modified tests/mem-leaks/test-cases/shutdown-hook-leak/pom.xml
The file was modified incubator/html-json/pom.xml
The file was modified media/jaxb/src/main/resources/org/glassfish/jersey/jaxb/internal/localization.properties
The file was modified tests/integration/jersey-1667/pom.xml
The file was modified examples/json-processing-webapp/pom.xml
The file was modified tests/mem-leaks/pom.xml
The file was modified tests/integration/cdi-integration/cdi-beanvalidation-webapp/src/main/java/org/glassfish/jersey/tests/cdi/bv/ValidationResult.java
The file was modified tests/integration/cdi-integration/cdi-with-jersey-injection-custom-cfg-webapp/pom.xml
The file was modified tests/mem-leaks/test-cases/bean-param-leak/pom.xml
The file was modified incubator/open-tracing/pom.xml
The file was modified tests/integration/jersey-2184/pom.xml
The file was modified examples/sse-item-store-jaxrs-webapp/pom.xml
The file was modified tests/integration/jersey-2322/pom.xml
The file was modified examples/server-async/pom.xml
The file was modified tests/integration/servlet-2.5-reload/pom.xml
The file was modified tests/integration/servlet-3-async/pom.xml
The file was modified tests/integration/servlet-2.5-init-3/pom.xml
The file was modified tests/integration/servlet-3-filter/pom.xml
The file was modified ext/bean-validation/src/main/java/org/glassfish/jersey/server/validation/internal/hibernate/HibernateInjectingConstraintValidatorFactory.java
The file was modified examples/entity-filtering/pom.xml
The file was modified test-framework/pom.xml
The file was modified tests/integration/jersey-2704/pom.xml
The file was modified ext/cdi/jersey-cdi1x-ban-custom-hk2-binding/pom.xml
The file was modified tests/integration/jersey-2160/pom.xml
The file was modified tests/integration/cdi-integration/cdi-multimodule/lib/src/main/resources/META-INF/beans.xml
The file was modified core-client/pom.xml
The file was modified tests/integration/cdi-integration/cdi-ejb-test-webapp/src/main/java/org/glassfish/jersey/tests/cdi/resources/BasicTimer.java
The file was modified tests/integration/jersey-2846/pom.xml
The file was modified ext/mvc-bean-validation/pom.xml
The file was modified tests/integration/servlet-2.5-init-1/pom.xml
The file was modified tests/integration/cdi-integration/cdi-with-jersey-injection-custom-cfg-webapp/src/main/webapp/WEB-INF/web.xml
The file was modified tests/performance/test-cases/param-srl/pom.xml
The file was modified tests/integration/jersey-1829/pom.xml
The file was modified tests/performance/test-cases/mbw-json-jackson/pom.xml
The file was modified tests/e2e-inject/pom.xml
The file was modified tests/integration/jersey-2673/pom.xml
The file was modified tests/performance/test-cases/interceptor-name/pom.xml
The file was modified tests/integration/j-441/war1/pom.xml
The file was modified bundles/pom.xml
The file was modified tests/performance/test-cases/pom.xml
The file was modified etc/config/copyright-exclude
The file was modified inject/pom.xml
The file was modified tests/mem-leaks/redeployment/redeployment-leaking-test-app/pom.xml
The file was modified test-framework/providers/grizzly2/pom.xml
The file was modified tests/integration/ejb-multimodule-reload/ear/pom.xml
The file was modified tests/integration/async-jersey-filter/pom.xml
The file was modified tests/integration/j-59/lib/pom.xml
The file was modified tests/performance/test-cases/filter-global/pom.xml
The file was modified tests/integration/servlet-3-init-provider/pom.xml
The file was modified tests/integration/servlet-3-init-3/pom.xml
The file was modified connectors/pom.xml
The file was modified ext/rx/rx-client-guava/pom.xml
The file was modified tests/integration/cdi-integration/cdi-test-webapp/src/main/resources/META-INF/beans.xml
The file was modified tests/integration/jersey-2137/pom.xml
The file was modified examples/json-with-padding/pom.xml
The file was modified tests/integration/security-digest/pom.xml
The file was modified tests/integration/cdi-integration/cdi-beanvalidation-webapp/src/main/resources/META-INF/beans.xml
The file was modified tests/integration/ejb-multimodule-reload/war1/pom.xml
The file was modified tests/integration/cdi-integration/cdi-beanvalidation-webapp/src/main/webapp/WEB-INF/beans.xml
The file was modified tests/e2e-testng/pom.xml
The file was modified examples/exception-mapping/pom.xml
The file was modified tests/performance/pom.xml
The file was modified tests/integration/asm/pom.xml
The file was modified tests/performance/test-cases/assemblies/pom.xml
The file was modified tests/performance/test-cases/interceptor-dynamic/pom.xml
The file was modified tests/integration/cdi-integration/cdi-multipart-webapp/src/main/webapp/WEB-INF/beans.xml
The file was modified tests/integration/cdi-integration/cdi-beanvalidation-webapp/src/main/java/org/glassfish/jersey/tests/cdi/bv/CdiValidationResultBinder.java
The file was modified tests/integration/jersey-2794/pom.xml
The file was modified tests/integration/jersey-780/pom.xml
The file was modified tests/performance/test-cases/mbw-xml-jaxb/pom.xml
The file was modified examples/assemblies/pom.xml
The file was modified test-framework/maven/custom-enforcer-rules/pom.xml
The file was modified tests/integration/ejb-multimodule-reload/war2/pom.xml
The file was modified tests/integration/servlet-2.5-init-2/pom.xml
The file was modified examples/osgi-helloworld-webapp/alternate-version-bundle/pom.xml
The file was modified examples/server-async-standalone/webapp/pom.xml
The file was modified test-framework/providers/inmemory/pom.xml
The file was modified containers/pom.xml
The file was modified ext/mvc-freemarker/pom.xml
The file was modified tests/integration/ejb-test-webapp/pom.xml
The file was modified examples/managed-client-simple-webapp/pom.xml
The file was modified tests/integration/cdi-integration/cdi-multimodule/ear/pom.xml
The file was modified tests/integration/servlet-3-sse-1/pom.xml
The file was modified tests/mem-leaks/redeployment/redeployment-no-jersey-app/pom.xml
The file was modified media/pom.xml
The file was modified tests/integration/jersey-1223/pom.xml
The file was modified tests/pom.xml
The file was modified tests/integration/jersey-3992/src/test/java/org/glassfish/jersey/tests/cdi/resources/CdiTest.java
The file was modified tests/integration/ejb-multimodule/war/pom.xml
The file was modified tests/integration/servlet-3-init-7/pom.xml
Commit 48c4fb8e03b1656f4a68d8b5d71ed7aebe89b44b by noreply
Rest client 2.0 updates (#4724)

* RestClient updates

Signed-off-by: David Kral <david.k.kral@oracle.com>
The file was modified ext/microprofile/mp-rest-client/src/main/java/org/glassfish/jersey/microprofile/restclient/RestClientBuilderImpl.java
The file was modified ext/microprofile/mp-rest-client/src/main/java/org/glassfish/jersey/microprofile/restclient/RestClientProducer.java
The file was modified ext/microprofile/mp-rest-client/src/main/java/org/glassfish/jersey/microprofile/restclient/RestClientModel.java
The file was addedext/microprofile/mp-rest-client/src/main/java/org/glassfish/jersey/microprofile/restclient/RestClientContext.java
The file was modified ext/microprofile/mp-rest-client/src/main/java/org/glassfish/jersey/microprofile/restclient/MethodModel.java
The file was modified core-client/src/main/java/org/glassfish/jersey/client/ClientProperties.java
The file was modified core-common/src/main/java/org/glassfish/jersey/uri/JerseyQueryParamStyle.java
The file was modified ext/microprofile/mp-rest-client/src/main/java/org/glassfish/jersey/microprofile/restclient/InterfaceModel.java
The file was modified tests/e2e-core-common/src/test/java/org/glassfish/jersey/tests/e2e/common/uri/internal/JerseyUriBuilderTest.java
The file was modified core-common/src/main/java/org/glassfish/jersey/uri/internal/JerseyUriBuilder.java
The file was modified media/sse/src/main/java/org/glassfish/jersey/media/sse/InboundEvent.java
The file was modified core-client/src/main/java/org/glassfish/jersey/client/JerseyWebTarget.java
Commit e938507ad62db89f7454cd141c1f51e3a9ae2c9d by noreply
Updating ant to 1.10.9 for antrun plugin (#4720)

* Updating ant to 1.10.9 for antrun plugin

Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
The file was modified pom.xml
Commit bd0b2db893392a1ffb6a6702677daa2140858eea by noreply
Adjusting Jersey archetypes (#4710)

* Adjust Jersey archetypes
* Platform independent space
* Java version for archetypes set to 1.8

Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
The file was modified archetypes/jersey-heroku-webapp/src/main/resources/archetype-resources/system.properties
The file was modified archetypes/jersey-example-java8-webapp/src/main/resources/archetype-resources/pom.xml
The file was modified archetypes/jersey-quickstart-grizzly2/src/main/resources/archetype-resources/src/main/java/Main.java
The file was modified archetypes/jersey-quickstart-webapp/src/main/resources/archetype-resources/pom.xml
The file was modified archetypes/jersey-heroku-webapp/src/main/resources/archetype-resources/pom.xml
The file was modified archetypes/jersey-quickstart-grizzly2/src/main/resources/archetype-resources/pom.xml
Commit 84b7eba4b62ff7ed8f1cbc39cade7a8469ad688c by noreply
Custom schedulers to execute @PreDestroy methods (#4716)

Signed-off-by: Jorge Bescos Gascon <jorge.bescos.gascon@oracle.com>
The file was modified core-server/src/main/java/org/glassfish/jersey/server/ServerExecutorProvidersConfigurator.java
The file was modified core-client/src/main/java/org/glassfish/jersey/client/ClientExecutorProvidersConfigurator.java
The file was addedtests/e2e-server/src/test/java/org/glassfish/jersey/tests/e2e/server/ScheduledThreadPoolExecutorProviderTest.java
The file was modified core-common/src/main/java/org/glassfish/jersey/process/internal/AbstractExecutorProvidersConfigurator.java
Commit a87ae6a4b041b65bc4957726c1a0804d3441e934 by noreply
Configurable COLLISION_BUFFER_POWER

Signed-off-by: Jorge Bescos Gascon <jorge.bescos.gascon@oracle.com>
The file was modified core-server/src/test/java/org/glassfish/jersey/server/internal/monitoring/AbstractNanosReservoirTest.java
The file was modified core-server/src/test/java/org/glassfish/jersey/server/internal/monitoring/TimeWindowStatisticsImplTest.java
The file was modified core-server/src/main/java/org/glassfish/jersey/server/internal/monitoring/core/ReservoirConstants.java
The file was modified core-server/src/main/java/org/glassfish/jersey/server/ServerProperties.java
The file was modified core-server/src/test/resources/server.policy
Commit 360d69d4cbda29dec7c0dee92dbc1b1204090594 by 24524084+senivam
Add a wildcard @Produces and @Consumes for methods without message providers involved not to get 406/415.

Signed-off-by: jansupol <jan.supol@oracle.com>
The file was modified core-server/src/main/java/org/glassfish/jersey/server/internal/routing/MethodSelectingRouter.java
The file was addedtests/integration/jersey-4722/src/main/java/org/glassfish/jersey/tests/integration/jersey4722/Resource4722.java
The file was addedtests/integration/jersey-4722/pom.xml
The file was modified tests/integration/pom.xml
The file was addedtests/integration/jersey-4722/src/main/java/org/glassfish/jersey/tests/integration/jersey4722/Application4722.java
The file was addedtests/integration/jersey-4722/src/test/java/org/glassfish/jersey/tests/integration/jersey4722/Jersey4722Test.java
Commit f3cadb38dcc5b20e515706fae68dce533ad6c737 by noreply
switching to NIO tmp file creation approach (#4712)

Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
The file was modified core-common/src/test/resources/surefire.policy
The file was addedcore-common/src/test/java/org/glassfish/jersey/message/internal/UtilsTest.java
The file was modified core-common/src/main/java/org/glassfish/jersey/message/internal/Utils.java
Commit 9700ca3abe601c2a26bfb6ebab06172db4d032dd by 24524084+senivam
Empty/NULL properties handling

Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
The file was modified ext/microprofile/mp-config/src/main/java/org/glassfish/jersey/microprofile/config/ConfigurationModel.java
The file was addedext/microprofile/mp-config/src/test/java/org/glassfish/jersey/microprofile/config/ConfigurationProviderTest.java
Commit bcfba2be4c46da11a0f7a9f04cc86b231534d013 by 24524084+senivam
adjusting examples to be run with optional JAXB

Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
The file was modified examples/jaxb/pom.xml
The file was modified examples/bookstore-webapp/pom.xml
The file was modified examples/https-clientserver-grizzly/pom.xml
The file was modified examples/json-jackson1/pom.xml
The file was modified examples/multipart-webapp/pom.xml
Commit f0e0106dc24663294fdc9d787981c118c2236d99 by 24524084+senivam
processing order for Jackson/Jaxb annotations

Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
The file was modified media/json-jackson/src/main/java/org/glassfish/jersey/jackson/internal/DefaultJacksonJaxbJsonProvider.java
The file was modified media/json-jackson/src/test/java/org/glassfish/jersey/jackson/internal/model/ServiceTest.java
Commit 6b87643f8b974af6bd600e4d58a026c3a0f5e33d by noreply
Proper handling of chunked input streams in LoggingInterceptor (#4753)

Signed-off-by: Denis Kurochkin <d.k.brazz@gmail.com>
The file was modified core-common/src/main/java/org/glassfish/jersey/logging/LoggingInterceptor.java
The file was modified core-common/src/test/resources/surefire.policy
The file was modified core-common/src/test/java/org/glassfish/jersey/logging/LoggingInterceptorTest.java
The file was modified core-common/pom.xml
Commit 0d58cf900aab0a34a424f5b88a8874df45601082 by noreply
Logging delimiter parametrized (#4745)

Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
The file was modified core-common/src/main/java/org/glassfish/jersey/logging/LoggingInterceptor.java
The file was modified tests/e2e/src/test/java/org/glassfish/jersey/tests/e2e/common/LoggingFeatureTest.java
The file was modified core-common/src/main/java/org/glassfish/jersey/logging/LoggingFeature.java
The file was modified core-common/src/main/java/org/glassfish/jersey/logging/LoggingFeatureAutoDiscoverable.java
The file was modified docs/src/main/docbook/jersey.ent
The file was modified core-common/src/main/java/org/glassfish/jersey/logging/ServerLoggingFilter.java
The file was modified core-common/src/main/java/org/glassfish/jersey/logging/ClientLoggingFilter.java
The file was modified docs/src/main/docbook/appendix-properties.xml
The file was modified core-common/src/test/java/org/glassfish/jersey/logging/LoggingInterceptorTest.java
Commit 73206d9f963014fe4be5d4ab97bd78f69792d08a by 15908245+jansupol
Adopt ASM 9.1 to support JDK 17

Signed-off-by: jansupol <jan.supol@oracle.com>
The file was modified core-server/src/main/java/jersey/repackaged/org/objectweb/asm/Opcodes.java
The file was modified core-server/src/main/java/org/glassfish/jersey/server/internal/scanning/AnnotationAcceptingListener.java
The file was modified core-server/src/main/java/jersey/repackaged/org/objectweb/asm/ClassReader.java
The file was modified pom.xml
The file was modified core-server/src/main/java/jersey/repackaged/org/objectweb/asm/AnnotationVisitor.java
Commit d2b7b65b8f9baa8ed3069f083890badb63911dd9 by 15908245+jansupol
Lazy synchronized SSL Context initialization in the HttpUrlConnector

Signed-off-by: jansupol <jan.supol@oracle.com>
The file was modified core-client/src/main/java/org/glassfish/jersey/client/internal/HttpUrlConnector.java
Commit 66aeadd992e5649f511f2c6cbe7eddf8e923d0de by 15908245+jansupol
Replace null Configuration in ContainerRequest with an empty instance
to prevent possible NPE

Signed-off-by: jansupol <jan.supol@oracle.com>
The file was modified core-server/src/main/java/org/glassfish/jersey/server/ContainerRequest.java
Commit 339e30a88127a76bb56a80d7008f353200b32050 by 15908245+jansupol
Adopted Jackson 2.12.2. No change in repackaged Jackson.

Signed-off-by: jansupol <jan.supol@oracle.com>
The file was modified pom.xml
Commit 9647ce541718cd0b583ceba1c735a886ec400b78 by 24524084+senivam
Uptake Helidon 2.2.1

Signed-off-by: jansupol <jan.supol@oracle.com>
The file was modified connectors/helidon-connector/src/test/java/org/glassfish/jersey/helidon/connector/sse/EventOutputTest.java
The file was modified connectors/helidon-connector/pom.xml
Commit 5f9510978b1c8077f3ed54cf8cbce0776e64cbba by 24524084+senivam
ParameterConverter throwing IllegalArgumentException MUST result in 404

Signed-off-by: Jorge Bescos Gascon <jorge.bescos.gascon@oracle.com>
The file was modified core-server/src/main/java/org/glassfish/jersey/server/internal/inject/SingleValueExtractor.java
The file was addedtests/e2e-server/src/test/java/org/glassfish/jersey/tests/e2e/server/IllegalArgumentExceptionTest.java
Commit 8da311447d1b87942a186d185b7e0a68e96e4abf by noreply
Stop filling monitoring queues when processor fails (#4697)

Signed-off-by: Jorge Bescos Gascon <jorge.bescos.gascon@oracle.com>
The file was addedtests/integration/jersey-4697/pom.xml
The file was modified core-server/src/main/java/org/glassfish/jersey/server/internal/monitoring/MonitoringEventListener.java
The file was addedtests/integration/jersey-4697/src/test/java/org/glassfish/jersey/tests/integration/jersey4697/MonitoringEventListenerTest.java
The file was modified core-server/src/main/java/org/glassfish/jersey/server/internal/monitoring/MonitoringStatisticsProcessor.java
The file was modified tests/integration/pom.xml
Commit 7b6d2f84391f24310baae7d8e55e644703642826 by 15908245+jansupol
Add a default Enum MB provider.

Signed-off-by: jansupol <jan.supol@oracle.com>
The file was addedtests/e2e-entity/src/test/java/org/glassfish/jersey/tests/e2e/entity/EnumEntityTest.java
The file was modified core-common/src/main/java/org/glassfish/jersey/message/internal/MessagingBinders.java
The file was addedcore-common/src/main/java/org/glassfish/jersey/message/internal/EnumMessageProvider.java
Commit 06b1a6cae5d7720897bc726197de838f42441b04 by noreply
Allow to use @Inject instead of @Context with CDI (#4749)

* Allow to use @Inject instead of @Context with CDI

Signed-off-by: jansupol <jan.supol@oracle.com>
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/test/java/org/glassfish/jersey/tests/cdi/inject/ScopedInjectionTest.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/java/org/glassfish/jersey/tests/cdi/inject/ParentResource.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/java/org/glassfish/jersey/tests/cdi/inject/ScopedApplication.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/java/org/glassfish/jersey/tests/cdi/inject/ParentExceptionMapper.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/java/org/glassfish/jersey/tests/cdi/inject/ScopedWriterInterceptor.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/java/org/glassfish/jersey/tests/cdi/inject/ApplicationInjectParent.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/java/org/glassfish/jersey/tests/cdi/inject/ParentContainerResponseFilter.java
The file was addedext/cdi/jersey-cdi-rs-inject/src/main/resources/META-INF/services/javax.enterprise.inject.spi.Extension
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/java/org/glassfish/jersey/tests/cdi/inject/NonScopedExceptionMapper.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/java/org/glassfish/jersey/tests/cdi/inject/ScopedResource.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/resources/META-INF/beans.xml
The file was addedext/cdi/jersey-cdi-rs-inject/src/main/java/org/glassfish/jersey/ext/cdi1x/inject/internal/InjectExtension.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/java/org/glassfish/jersey/tests/cdi/inject/NonScopedApplication.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/java/org/glassfish/jersey/tests/cdi/inject/ScopedApplicationInject.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/java/org/glassfish/jersey/tests/cdi/inject/ScopedExceptionMapper.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/java/org/glassfish/jersey/tests/cdi/inject/NonScopedResource.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/java/org/glassfish/jersey/tests/cdi/inject/ScopedContainerRequestFilter.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/java/org/glassfish/jersey/tests/cdi/inject/SseAplication.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/java/org/glassfish/jersey/tests/cdi/inject/InjectionChecker.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/java/org/glassfish/jersey/tests/cdi/inject/PropertySettingFilter.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/test/java/org/glassfish/jersey/tests/cdi/inject/SseTest.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/java/org/glassfish/jersey/tests/cdi/inject/RequestScopedParentInject.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/test/java/org/glassfish/jersey/tests/cdi/inject/NonScopedApplicationInjectTest.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/java/org/glassfish/jersey/tests/cdi/inject/ParentChecker.java
The file was modified ext/cdi/jersey-cdi1x/src/main/java/org/glassfish/jersey/ext/cdi1x/internal/AbstractCdiBeanSupplier.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/java/org/glassfish/jersey/tests/cdi/inject/NonScopedWriterInterceptor.java
The file was modified tests/integration/cdi-integration/pom.xml
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/test/java/org/glassfish/jersey/tests/cdi/inject/ScopedApplicationInjectTest.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/test/java/org/glassfish/jersey/tests/cdi/inject/NonScopedInjectionTest.java
The file was modified ext/cdi/jersey-cdi1x/src/main/java/org/glassfish/jersey/ext/cdi1x/internal/CdiComponentProvider.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/java/org/glassfish/jersey/tests/cdi/inject/ParentInject.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/java/org/glassfish/jersey/tests/cdi/inject/NonScopedApplicationInject.java
The file was addedext/cdi/jersey-cdi-rs-inject/pom.xml
The file was modified ext/cdi/pom.xml
The file was modified bom/pom.xml
The file was addedtests/integration/cdi-integration/context-inject-on-server/pom.xml
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/java/org/glassfish/jersey/tests/cdi/inject/ParentWriterInterceptor.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/java/org/glassfish/jersey/tests/cdi/inject/ParentContainerRequestFilter.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/java/org/glassfish/jersey/tests/cdi/inject/ScopedContainerResponseFilter.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/java/org/glassfish/jersey/tests/cdi/inject/NonScopedContainerRequestFilter.java
The file was modified core-server/src/main/java/org/glassfish/jersey/server/internal/process/RequestProcessingConfigurator.java
The file was addedtests/integration/cdi-integration/context-inject-on-server/src/main/java/org/glassfish/jersey/tests/cdi/inject/NonScopedContainerResponseFilter.java
Commit fecc6f003ad984a797b6d3bb4b8c9d1e71992707 by 24524084+senivam
Updated properties for netty connection pooling

Signed-off-by: jansupol <jan.supol@oracle.com>
The file was modified connectors/netty-connector/src/main/java/org/glassfish/jersey/netty/connector/NettyConnector.java
The file was modified connectors/netty-connector/src/main/java/org/glassfish/jersey/netty/connector/NettyClientProperties.java
The file was modified connectors/netty-connector/src/main/resources/org/glassfish/jersey/netty/connector/localization.properties
Commit ab9622bc89c59f08b722f2e6ef5c800e22d0b2c2 by noreply
Javadoc for non-public classes (cdi-rs-inject) (#4770)

Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
The file was modified ext/cdi/jersey-cdi-rs-inject/pom.xml
Commit 274cf15ea9d344b8c4110df443e367f87290bca0 by noreply
19 chapters of User Guide reviewed (#4711)

Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
The file was modified docs/src/main/docbook/mbw.xml
The file was modified docs/src/main/docbook/representations.xml
The file was modified docs/src/main/docbook/wadl.xml
The file was modified docs/src/main/docbook/security.xml
The file was modified docs/src/main/docbook/jersey.ent
The file was modified docs/src/main/docbook/filters.xml
The file was modified docs/src/main/docbook/jaxrs-resources.xml
The file was modified docs/src/main/docbook/sse.xml
The file was modified docs/src/main/docbook/appendix-properties.xml
The file was modified docs/src/main/docbook/deployment.xml
The file was modified docs/src/main/docbook/declarative-linking.xml
The file was modified docs/src/main/docbook/mp-config.xml
The file was modified docs/src/main/docbook/uris-and-links.xml
The file was modified docs/src/main/docbook/bean-validation.xml
The file was modified docs/src/main/docbook/how-to-build.xml
The file was modified docs/src/main/docbook/mvc.xml
The file was modified docs/pom.xml
The file was modified docs/src/main/docbook/resource-builder.xml
The file was modified docs/src/main/docbook/migration.xml
The file was modified docs/src/main/docbook/monitoring.xml
The file was modified docs/src/main/docbook/client.xml
The file was modified docs/src/main/docbook/async.xml
The file was modified docs/src/main/docbook/getting-started.xml
The file was modified docs/src/main/docbook/cdi.xml
The file was modified docs/src/main/docbook/media.xml
The file was modified docs/src/main/docbook/dependencies.xml