Merge branch 'jetty-9.3.x'
This commit is contained in:
commit
c51a35203c
15
VERSION.txt
15
VERSION.txt
|
@ -1,5 +1,20 @@
|
|||
jetty-9.4.0-SNAPSHOT
|
||||
|
||||
jetty-9.3.7.RC1 - 13 January 2016
|
||||
+ 481986 Dead JSR 356 Server Session still being tracked after
|
||||
Session/Connection closure
|
||||
+ 484616 Outdated version of javaee_web_services_client_1_2.xsd
|
||||
+ 485031 two PathWatcher threads running after automatically restarting webapp
|
||||
+ 485063 After stopping JettyWebAppContext, it still contains reference to old
|
||||
WebAppClassLoader via ServerContainer bean
|
||||
+ 485064 HashSessionManager leaks ScheduledExecutorScheduler with reference to
|
||||
un-deployed webapp
|
||||
+ 485376 Multiple charset attributes in Content-Type
|
||||
+ 485535 jetty.sh results in FAILED when running service restart
|
||||
+ 485663 NullPointerException in WebSocketSession during upgrade with DEBUG
|
||||
logging
|
||||
+ 485712 Quickstart web.xml is absolute
|
||||
|
||||
jetty-9.3.7.RC0 - 05 January 2016
|
||||
+ 458745 Async ISE in async Echo
|
||||
+ 481567 permessage-deflate causing data-dependent ju.zip.DataFormatException:
|
||||
|
|
|
@ -785,7 +785,7 @@
|
|||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.jetty.gcloud</groupId>
|
||||
<artifactId>gcloud-session-manager</artifactId>
|
||||
<artifactId>jetty-gcloud-session-manager</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
</parent>
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<artifactId>gcloud-session-manager</artifactId>
|
||||
<artifactId>jetty-gcloud-session-manager</artifactId>
|
||||
<name>Jetty :: GCloud :: Session Manager</name>
|
||||
|
||||
<dependencies>
|
|
@ -40,7 +40,7 @@ maven://com.google.api-client/google-api-client/1.15.0-rc|lib/gcloud/google-api-
|
|||
maven://com.google.apis/google-api-services-datastore/v1beta2-rev23-1.19.0|lib/gcloud/google-api-services-datastore-v1beta2-rev23-1.19.0.jar
|
||||
|
||||
[lib]
|
||||
lib/gcloud-session-manager-${jetty.version}.jar
|
||||
lib/jetty-gcloud-session-manager-${jetty.version}.jar
|
||||
lib/gcloud/*.jar
|
||||
|
||||
[xml]
|
|
@ -17,7 +17,7 @@
|
|||
</properties>
|
||||
|
||||
<modules>
|
||||
<module>gcloud-session-manager</module>
|
||||
<module>jetty-gcloud-session-manager</module>
|
||||
</modules>
|
||||
|
||||
</project>
|
||||
|
|
|
@ -54,7 +54,7 @@
|
|||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.jetty.gcloud</groupId>
|
||||
<artifactId>gcloud-session-manager</artifactId>
|
||||
<artifactId>jetty-gcloud-session-manager</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
|
Loading…
Reference in New Issue