Skip to content

Commit 90076b7

Browse files
authored
fix: Update atmosphere.runtime.version to 2.7.3.slf4jvaadin7 (#22727)
fixes #22712
1 parent 95c66fb commit 90076b7

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

flow-server/src/main/java/com/vaadin/flow/server/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
public final class Constants implements Serializable {
2222

2323
// Keep the version number in sync with flow-push/pom.xml
24-
public static final String REQUIRED_ATMOSPHERE_RUNTIME_VERSION = "2.7.3.slf4jvaadin6";
24+
public static final String REQUIRED_ATMOSPHERE_RUNTIME_VERSION = "2.7.3.slf4jvaadin7";
2525

2626
/**
2727
* The prefix used for System property parameters.

flow-test-util/src/main/java/com/vaadin/flow/testutil/DevToolsWrapper.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import org.openqa.selenium.devtools.idealized.Domains;
2222
import org.openqa.selenium.devtools.idealized.target.model.SessionID;
2323
import org.openqa.selenium.devtools.idealized.target.model.TargetID;
24-
import org.openqa.selenium.devtools.v137.network.Network;
24+
import org.openqa.selenium.devtools.v142.network.Network;
2525
import org.openqa.selenium.remote.Augmenter;
2626
import org.openqa.selenium.remote.RemoteWebDriver;
2727

@@ -44,7 +44,7 @@ public DevToolsWrapper(WebDriver driver) {
4444
*/
4545
public void setOfflineEnabled(Boolean isEnabled) {
4646
sendToAllTargets(Network.enable(Optional.empty(), Optional.empty(),
47-
Optional.empty()));
47+
Optional.empty(), Optional.empty(), Optional.empty()));
4848
sendToAllTargets(Network.emulateNetworkConditions(isEnabled, -1, -1, -1,
4949
Optional.empty(), Optional.empty(), Optional.empty(),
5050
Optional.empty()));
@@ -59,7 +59,7 @@ public void setOfflineEnabled(Boolean isEnabled) {
5959
*/
6060
public void setCacheDisabled(Boolean isDisabled) {
6161
sendToAllTargets(Network.enable(Optional.empty(), Optional.empty(),
62-
Optional.empty()));
62+
Optional.empty(), Optional.empty(), Optional.empty()));
6363
sendToAllTargets(Network.setCacheDisabled(isDisabled));
6464
}
6565

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
<maven.resources.plugin.version>3.0.2</maven.resources.plugin.version>
105105
<maven.clean.plugin.version>3.2.0</maven.clean.plugin.version>
106106
<maven.exec.plugin.version>1.6.0</maven.exec.plugin.version>
107-
<testbench.version>8.3.0</testbench.version>
107+
<testbench.version>8.3.1</testbench.version>
108108
<jetty.version>10.0.13</jetty.version>
109109
<properties-maven-plugin.version>1.0.0</properties-maven-plugin.version>
110110

@@ -115,7 +115,7 @@
115115
<!-- Used in OSGi manifests -->
116116
<jsoup.version>1.15.3</jsoup.version>
117117
<!-- Note that this should be kept in sync with the class Constants -->
118-
<atmosphere.runtime.version>2.7.3.slf4jvaadin6</atmosphere.runtime.version>
118+
<atmosphere.runtime.version>2.7.3.slf4jvaadin7</atmosphere.runtime.version>
119119
<atmosphere.client.version>3.1.3</atmosphere.client.version>
120120

121121
<!-- OSGi -->

0 commit comments

Comments
 (0)