diff options
author | Anna Koskinen <Ansku@users.noreply.github.com> | 2021-05-17 14:51:20 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-17 14:51:20 +0300 |
commit | 1e029aa6eaede081f8b9529f3f014e3725fc302a (patch) | |
tree | 7ab356bc36248b56556d1e18b45f858dc357bcfa | |
parent | b6cd9f36ede45171e68c1ace62ecd6edfa4e0573 (diff) | |
download | vaadin-framework-1e029aa6eaede081f8b9529f3f014e3725fc302a.tar.gz vaadin-framework-1e029aa6eaede081f8b9529f3f014e3725fc302a.zip |
Update Atmosphere (#12293) (#12308)
* Update Atmosphere (#12293)
Fixes concurrency issue with UUIDBroadcasterCache that may lead to loss of packets and thus repeated resynchronizations when using Push.
-rw-r--r-- | pom.xml | 4 | ||||
-rw-r--r-- | server/src/main/java/com/vaadin/server/Constants.java | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -35,7 +35,7 @@ <javax.portlet.version>2.0</javax.portlet.version> <vaadin.sass.version>0.9.13</vaadin.sass.version> <!-- Note that this should be kept in sync with the class Constants --> - <atmosphere.runtime.version>2.4.30.vaadin3</atmosphere.runtime.version> + <atmosphere.runtime.version>2.4.30.vaadin4</atmosphere.runtime.version> <!-- OSGi --> <osgi.execution.environment>JavaSE-1.8</osgi.execution.environment> @@ -188,7 +188,7 @@ <groupId>com.vaadin.external.atmosphere.client</groupId> <artifactId>javascript</artifactId> <type>war</type> - <version>2.3.2.vaadin1</version> + <version>2.3.2.vaadin2</version> </dependency> <dependency> <groupId>junit</groupId> diff --git a/server/src/main/java/com/vaadin/server/Constants.java b/server/src/main/java/com/vaadin/server/Constants.java index e3400181b4..d4559b1cfe 100644 --- a/server/src/main/java/com/vaadin/server/Constants.java +++ b/server/src/main/java/com/vaadin/server/Constants.java @@ -66,7 +66,7 @@ public interface Constants { + "================================================================="; // Keep the version number in sync with pom.xml - static final String REQUIRED_ATMOSPHERE_RUNTIME_VERSION = "2.4.30.vaadin3"; + static final String REQUIRED_ATMOSPHERE_RUNTIME_VERSION = "2.4.30.vaadin4"; static final String INVALID_ATMOSPHERE_VERSION_WARNING = "\n" + "=================================================================\n" |