Merge branch 'release-9'
This commit is contained in:
commit
91f44dd6c6
40
VERSION.txt
40
VERSION.txt
|
@ -1,5 +1,38 @@
|
|||
jetty-9.3.0-SNAPSHOT
|
||||
|
||||
jetty-9.3.0.M0 - 24 September 2014
|
||||
+ 437395 Start / Properties in template sections should be default applied for
|
||||
enabled modules
|
||||
+ 438204 getServerName returns IPv6 addresses wrapped in []
|
||||
+ 438387 NullPointerException after ServletUpgradeResponse.sendForbidden is
|
||||
called during WebSocketCreator.createWebSocket
|
||||
+ 439369 Remove unused class CrossContextPsuedoSession
|
||||
+ 439375 preferred rfc7231 format is mime;charset=lowercase-9
|
||||
+ 442083 Client resets stream, pending server data is failed, connection
|
||||
closed.
|
||||
+ 442086 Review HttpOutput blocking writes.
|
||||
+ 442477 Allow Symlink aliases by default
|
||||
+ 442495 Bad Context ClassLoader in JSR356 WebSocket onOpen
|
||||
+ 442950 Embedded Jetty client requests to localhost hangs with high cpu usage
|
||||
(NIO OP_CONNECT Solaris/Sparc).
|
||||
+ 443652 Remove dependency on java.lang.management classes
|
||||
+ 443661 Rename manifest and service constants for jetty osgi resource
|
||||
fragment code
|
||||
+ 443662 Consume buffer in write(ByteBuffer)
|
||||
+ 443713 Reduce number of SelectionKey.setInterestOps() calls.
|
||||
+ 443893 Make a module for weld
|
||||
+ 444124 JSP include with <servlet><jsp-file> can cause infinite recursion
|
||||
+ 444214 Socks4Proxy fails when reading less than 8 bytes.
|
||||
+ 444222 replace CRLF in header values with whitespace rather than ?
|
||||
+ 444415 iterative WriteFlusher
|
||||
+ 444416 AsyncProxyServlet recursion.
|
||||
+ 444485 Client resets stream, pending server data is failed, write hangs.
|
||||
+ 444517 Ensure WebSocketUpgradeFilter is always first in filter chain
|
||||
+ 444547 Format exception in ResourceCache.Content.toString()
|
||||
+ 444617 Expose local and remote socket address to applications
|
||||
+ 444748 WebSocketClient.stop() does not unregister from ShutdownThread
|
||||
+ 444764 HttpClient notifies callbacks for last chunk of content twice.
|
||||
+ 444771 JSR356 / EndPointConfig.userProperties are not unique per endpoint
|
||||
upgrade
|
||||
+ 444863 ProxyServlet does not filter headers listed by the Connection header.
|
||||
|
||||
jetty-9.2.3.v20140905 - 05 September 2014
|
||||
+ 347110 renamed class transformer methods
|
||||
|
@ -88,8 +121,7 @@ jetty-9.2.2.v20140723 - 23 July 2014
|
|||
+ 440020 Abort bad proxy responses with sendError(-1)
|
||||
+ 440038 Content decoding may fail.
|
||||
+ 440114 ContextHandlerCollection does not skip context wrappers
|
||||
+ 440122 Remove usages of ForkInvoker.
|
||||
>>>>>>> origin/master
|
||||
+ 440122 Remove usages of ForkInvoker. >>>>>>> origin/master
|
||||
|
||||
jetty-9.2.1.v20140609 - 09 June 2014
|
||||
+ 347110 Supprt ClassFileTransormers in WebAppClassLoader
|
||||
|
|
|
@ -10,6 +10,9 @@
|
|||
<artifactId>jetty-all</artifactId>
|
||||
<name>Jetty :: Aggregate :: All core Jetty</name>
|
||||
<url>http://www.eclipse.org/jetty</url>
|
||||
<properties>
|
||||
<bundle-symbolic-name>${project.groupId}.all</bundle-symbolic-name>
|
||||
</properties>
|
||||
<build>
|
||||
<sourceDirectory>${project.build.directory}/sources</sourceDirectory>
|
||||
<plugins>
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<parent>
|
||||
<groupId>org.eclipse.jetty.http2</groupId>
|
||||
<artifactId>http2-parent</artifactId>
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<parent>
|
||||
<groupId>org.eclipse.jetty.http2</groupId>
|
||||
<artifactId>http2-parent</artifactId>
|
||||
|
|
Loading…
Reference in New Issue