Skip to content

Commit ece979a

Browse files
committed
[cdp] update ruby, python and JS to add support for v94 and remove support for v92
1 parent f610af6 commit ece979a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

javascript/node/selenium-webdriver/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ load("//common:defs.bzl", "copy_file")
44

55
BROWSER_VERSIONS = [
66
"v85",
7-
"v92",
87
"v93",
8+
"v94",
99
]
1010

1111
SRC_FILES = [

py/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ load("//py/private:browsers.bzl", "BROWSERS")
77

88
BROWSER_VERSIONS = [
99
"v85",
10-
"v92",
1110
"v93",
11+
"v94",
1212
]
1313

1414
TEST_DEPS = [

rb/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ package(default_visibility = ["//:__subpackages__"])
1111

1212
CDP_VERSIONS = [
1313
"v85",
14-
"v92",
1514
"v93",
15+
"v94",
1616
]
1717

1818
copy_file(

rb/lib/selenium/devtools/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919

2020
module Selenium
2121
module DevTools
22-
VERSION = '0.93.0'
22+
VERSION = '0.94.0'
2323
end # DevTools
2424
end # Selenium

0 commit comments

Comments
 (0)