This is an automated email from the git hooks/post-receive script.

apo pushed a change to branch master
in repository undertow.

      from  5e457fa   Disable the tests again. Needs more investigation how 
this can be supported
      adds  be89af1   New upstream version 1.4.21
       new  2f30f99   Update upstream source from tag 'upstream/1.4.21'
       new  da52753   Declare compliance with Debian Policy 4.1.1.
       new  adee79d   Update changelog

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 core/pom.xml                                       |   4 +-
 core/src/main/java/io/undertow/Handlers.java       |   7 +-
 core/src/main/java/io/undertow/Undertow.java       |  25 +-
 .../main/java/io/undertow/UndertowMessages.java    |   6 +
 .../undertow/protocols/ajp/AjpClientChannel.java   |  10 +
 .../io/undertow/protocols/http2/Http2Channel.java  |  72 +++++-
 .../protocols/http2/Http2FrameHeaderParser.java    |   2 +-
 .../java/io/undertow/protocols/ssl/SslConduit.java |   2 +-
 .../server/DirectByteBufferDeallocator.java        |  79 +++++-
 .../io/undertow/server/HttpServerExchange.java     |  22 +-
 .../undertow/server/handlers/ByteRangeHandler.java |   3 +-
 .../undertow/server/handlers/ForwardedHandler.java | 280 +++++++++++++++++++++
 .../server/handlers/RequestDumpingHandler.java     |  37 ++-
 .../server/handlers/SecureCookieHandler.java       |  48 ++--
 .../handlers/form/MultiPartParserDefinition.java   |   2 +-
 .../server/handlers/proxy/ProxyConnectionPool.java |   2 +-
 .../server/handlers/proxy/ProxyHandler.java        | 168 ++++++++-----
 .../server/handlers/proxy/ProxyHandlerBuilder.java |  80 ++++++
 .../handlers/proxy/mod_cluster/MCMPConstants.java  |   2 +-
 .../handlers/proxy/mod_cluster/MCMPInfoUtil.java   | 104 ++++----
 .../handlers/proxy/mod_cluster/MCMPWebManager.java |   3 +-
 .../handlers/proxy/mod_cluster/ModCluster.java     |   8 +-
 .../handlers/proxy/mod_cluster/NodeConfig.java     |   4 +-
 .../handlers/proxy/mod_cluster/NodePingUtil.java   |  34 +--
 .../protocol/framed/AbstractFramedChannel.java     |  23 +-
 .../framed/AbstractFramedStreamSinkChannel.java    |   4 +-
 .../framed/AbstractFramedStreamSourceChannel.java  |   4 -
 .../protocol/http2/Http2ReceiveListener.java       |  21 +-
 .../protocol/proxy/ProxyProtocolReadListener.java  |  58 +----
 core/src/main/java/io/undertow/util/Headers.java   | 139 ++++++----
 .../main/java/io/undertow/util/NetworkUtils.java   |  66 +++++
 .../undertow/websockets/core/WebSocketChannel.java |  10 +
 ...undertow.server.handlers.builder.HandlerBuilder |   4 +-
 .../server/handlers/ForwardedHandlerTestCase.java  | 153 +++++++++++
 ...tCase.java => SecureCookieHandlerTestCase.java} |  61 +++--
 .../form/MultipartFormDataParserTestCase.java      |  32 ++-
 .../proxy/AbstractLoadBalancingProxyTestCase.java  |   1 +
 .../LoadBalancerConnectionPoolingTestCase.java     |   7 +-
 .../proxy/LoadBalancingProxyAJPTestCase.java       |   6 +-
 .../proxy/LoadBalancingProxyHTTP2TestCase.java     |   8 +-
 .../LoadBalancingProxyHTTP2ViaUpgradeTestCase.java |   8 +-
 .../proxy/LoadBalancingProxyHttpsTestCase.java     |   8 +-
 .../handlers/proxy/LoadBalancingProxyTestCase.java |   8 +-
 ...lancingProxyWithCustomHostSelectorTestCase.java |   8 +-
 .../proxy/ProxyHandlerXForwardedForTestCase.java   |   9 +-
 .../handlers/proxy/ProxyPathHandlingTest.java      |   6 +-
 .../java/io/undertow/testutils/DefaultServer.java  |   2 +-
 .../NetworkUtilsAddressParsingTestCase.java}       |  49 ++--
 coverage-report/pom.xml                            |   2 +-
 debian/changelog                                   |   7 +
 debian/control                                     |   2 +-
 dist/pom.xml                                       |   4 +-
 examples/pom.xml                                   |   7 +-
 .../io/undertow/examples/http2/Http2Server.java    |   3 +-
 .../examples/reverseproxy/ReverseProxyServer.java  |   3 +-
 karaf/pom.xml                                      |   4 +-
 karaf/src/main/resources/features.xml              |   6 +-
 parser-generator/pom.xml                           |   4 +-
 pom.xml                                            |   7 +-
 servlet/pom.xml                                    |   4 +-
 .../servlet/handlers/MarkSecureHandler.java        |   3 +-
 .../servlet/spec/HttpServletRequestImpl.java       |  15 +-
 .../IsSecureFilter.java}                           |  23 +-
 .../MarkSecureHandlerTestCase.java}                | 103 ++++----
 websockets-jsr/pom.xml                             |   4 +-
 .../extension/JsrWebsocketExtensionTestCase.java   |   2 +-
 66 files changed, 1394 insertions(+), 508 deletions(-)
 create mode 100644 
core/src/main/java/io/undertow/server/handlers/ForwardedHandler.java
 copy servlet/src/main/java/io/undertow/servlet/handlers/MarkSecureHandler.java 
=> core/src/main/java/io/undertow/server/handlers/SecureCookieHandler.java (67%)
 create mode 100644 
core/src/main/java/io/undertow/server/handlers/proxy/ProxyHandlerBuilder.java
 create mode 100644 
core/src/test/java/io/undertow/server/handlers/ForwardedHandlerTestCase.java
 copy 
core/src/test/java/io/undertow/server/handlers/{LotsOfHeadersResponseTestCase.java
 => SecureCookieHandlerTestCase.java} (60%)
 rename 
core/src/test/java/io/undertow/{server/protocol/proxy/ProxyProtocolReadListenerAddressParsingTestCase.java
 => util/NetworkUtilsAddressParsingTestCase.java} (72%)
 copy servlet/src/test/java/io/undertow/servlet/test/{util/SetHeaderFilter.java 
=> handlers/IsSecureFilter.java} (78%)
 copy 
servlet/src/test/java/io/undertow/servlet/test/{listener/request/async/RequestListenerAsyncRequestTestCase.java
 => handlers/MarkSecureHandlerTestCase.java} (51%)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-java/undertow.git

_______________________________________________
pkg-java-commits mailing list
pkg-java-comm...@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

Reply via email to