From 7ce5ca80f62afb32bda81766d451d08cfb2431e2 Mon Sep 17 00:00:00 2001 From: Diego Molina Date: Mon, 19 Feb 2024 23:44:47 +0000 Subject: [PATCH] Bumping versions to 4.18.1 --- dotnet/CHANGELOG | 5 +++++ dotnet/selenium-dotnet-version.bzl | 2 +- java/CHANGELOG | 5 +++++ java/version.bzl | 2 +- javascript/node/selenium-webdriver/CHANGES.md | 4 ++++ javascript/node/selenium-webdriver/package-lock.json | 4 ++-- javascript/node/selenium-webdriver/package.json | 2 +- py/BUILD.bazel | 2 +- py/CHANGES | 4 ++++ py/docs/source/conf.py | 2 +- py/selenium/__init__.py | 2 +- py/selenium/webdriver/__init__.py | 2 +- py/setup.py | 2 +- rb/CHANGES | 5 +++++ rb/Gemfile.lock | 11 ++++++++--- rb/lib/selenium/webdriver/version.rb | 2 +- 16 files changed, 42 insertions(+), 14 deletions(-) diff --git a/dotnet/CHANGELOG b/dotnet/CHANGELOG index e0a1b6b9055ac..8f32859126348 100644 --- a/dotnet/CHANGELOG +++ b/dotnet/CHANGELOG @@ -1,3 +1,8 @@ +v4.18.1 +====== + +* Add CDP for Chrome 122 and remove 119 + v4.18.0 ====== diff --git a/dotnet/selenium-dotnet-version.bzl b/dotnet/selenium-dotnet-version.bzl index 1c940f253fcee..1fa52f1559877 100644 --- a/dotnet/selenium-dotnet-version.bzl +++ b/dotnet/selenium-dotnet-version.bzl @@ -1,6 +1,6 @@ # BUILD FILE SYNTAX: STARLARK -SE_VERSION = "4.18.0" +SE_VERSION = "4.18.1" ASSEMBLY_VERSION = "4.0.0.0" SUPPORTED_NET_STANDARD_VERSIONS = ["netstandard2.0"] diff --git a/java/CHANGELOG b/java/CHANGELOG index 2a522ce5a73fc..fa727d5375275 100644 --- a/java/CHANGELOG +++ b/java/CHANGELOG @@ -1,3 +1,8 @@ +v4.18.1 +====== + +* Add CDP for Chrome 122 and remove 119 + v4.18.0 ====== diff --git a/java/version.bzl b/java/version.bzl index d541a133e7159..7cb4e697e656b 100644 --- a/java/version.bzl +++ b/java/version.bzl @@ -1,2 +1,2 @@ -SE_VERSION = "4.18.0" +SE_VERSION = "4.18.1" TOOLS_JAVA_VERSION = "17" diff --git a/javascript/node/selenium-webdriver/CHANGES.md b/javascript/node/selenium-webdriver/CHANGES.md index ba8f2747e4d72..7480a3dfed789 100644 --- a/javascript/node/selenium-webdriver/CHANGES.md +++ b/javascript/node/selenium-webdriver/CHANGES.md @@ -1,3 +1,7 @@ +## 4.18.1 + +* Add CDP for Chrome 122 and remove 119 + ## 4.18.0 * Fix running the casting related methods in chromium (#13479) diff --git a/javascript/node/selenium-webdriver/package-lock.json b/javascript/node/selenium-webdriver/package-lock.json index 131336edafac4..2de2b7847c0a5 100644 --- a/javascript/node/selenium-webdriver/package-lock.json +++ b/javascript/node/selenium-webdriver/package-lock.json @@ -1,12 +1,12 @@ { "name": "selenium-webdriver", - "version": "4.18.0", + "version": "4.18.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "selenium-webdriver", - "version": "4.18.0", + "version": "4.18.1", "license": "Apache-2.0", "dependencies": { "jszip": "^3.10.1", diff --git a/javascript/node/selenium-webdriver/package.json b/javascript/node/selenium-webdriver/package.json index 1794b91b09420..52f46c8b6e625 100644 --- a/javascript/node/selenium-webdriver/package.json +++ b/javascript/node/selenium-webdriver/package.json @@ -1,6 +1,6 @@ { "name": "selenium-webdriver", - "version": "4.18.0", + "version": "4.18.1", "description": "The official WebDriver JavaScript bindings from the Selenium project", "license": "Apache-2.0", "keywords": [ diff --git a/py/BUILD.bazel b/py/BUILD.bazel index f0dd9fa8c4198..636a9c0a5f1d8 100644 --- a/py/BUILD.bazel +++ b/py/BUILD.bazel @@ -36,7 +36,7 @@ compile_pip_requirements( ], ) -SE_VERSION = "4.18.0" +SE_VERSION = "4.18.1" BROWSER_VERSIONS = [ "v85", diff --git a/py/CHANGES b/py/CHANGES index 713b5a41a83a2..8be020484fbd6 100644 --- a/py/CHANGES +++ b/py/CHANGES @@ -1,3 +1,7 @@ +Selenium 4.18.1 + +* Add CDP for Chrome 122 and remove 119 + Selenium 4.18.0 * Update linting dependencies diff --git a/py/docs/source/conf.py b/py/docs/source/conf.py index 584dc8d3adaa9..b96f7374f2088 100644 --- a/py/docs/source/conf.py +++ b/py/docs/source/conf.py @@ -58,7 +58,7 @@ # The short X.Y version. version = '4.18' # The full version, including alpha/beta/rc tags. -release = '4.18.0' +release = '4.18.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/py/selenium/__init__.py b/py/selenium/__init__.py index 1cf7c5a4f9841..4e5521633cb20 100644 --- a/py/selenium/__init__.py +++ b/py/selenium/__init__.py @@ -16,4 +16,4 @@ # under the License. -__version__ = "4.18.0" +__version__ = "4.18.1" diff --git a/py/selenium/webdriver/__init__.py b/py/selenium/webdriver/__init__.py index ce84c019c9963..ae82066fee80b 100644 --- a/py/selenium/webdriver/__init__.py +++ b/py/selenium/webdriver/__init__.py @@ -44,7 +44,7 @@ from .wpewebkit.service import Service as WPEWebKitService # noqa from .wpewebkit.webdriver import WebDriver as WPEWebKit # noqa -__version__ = "4.18.0" +__version__ = "4.18.1" # We need an explicit __all__ because the above won't otherwise be exported. __all__ = [ diff --git a/py/setup.py b/py/setup.py index a203a695acd33..3ffcfc9727a09 100755 --- a/py/setup.py +++ b/py/setup.py @@ -27,7 +27,7 @@ setup_args = { 'cmdclass': {'install': install}, 'name': 'selenium', - 'version': "4.18.0", + 'version': "4.18.1", 'license': 'Apache 2.0', 'description': 'Python bindings for Selenium', 'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(), diff --git a/rb/CHANGES b/rb/CHANGES index 2b7c22e99c19e..c873f72f8ec18 100644 --- a/rb/CHANGES +++ b/rb/CHANGES @@ -1,3 +1,8 @@ +4.18.1 (2024-02-19) +========================= + +* Add CDP for Chrome 122 and remove 119 + 4.18.0 (2024-02-19) ========================= diff --git a/rb/Gemfile.lock b/rb/Gemfile.lock index 64b58ee0f07eb..39d75d3ea2f89 100644 --- a/rb/Gemfile.lock +++ b/rb/Gemfile.lock @@ -3,7 +3,7 @@ PATH specs: selenium-devtools (0.122.0) selenium-webdriver (~> 4.2) - selenium-webdriver (4.18.0) + selenium-webdriver (4.18.1) base64 (~> 0.2) rexml (~> 3.2, >= 3.2.5) rubyzip (>= 1.2.2, < 3.0) @@ -50,9 +50,11 @@ GEM i18n (1.14.1) concurrent-ruby (~> 1.0) io-console (0.7.2) + io-console (0.7.2-java) irb (1.11.2) rdoc reline (>= 0.4.2) + jar-dependencies (0.4.1) json (2.7.1) json (2.7.1-java) language_server-protocol (3.17.0.3) @@ -68,6 +70,8 @@ GEM racc psych (5.1.2) stringio + psych (5.1.2-java) + jar-dependencies (>= 0.1.7) public_suffix (5.0.4) racc (1.7.3) racc (1.7.3-java) @@ -144,12 +148,13 @@ GEM terminal-table (>= 2, < 4) stringio (3.1.0) strscan (3.1.0) + strscan (3.1.0-java) terminal-table (3.0.2) unicode-display_width (>= 1.1.1, < 3) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) - webmock (3.20.0) + webmock (3.21.0) addressable (>= 2.8.0) crack (>= 0.3.2) hashdiff (>= 0.4.0, < 2.0.0) @@ -182,4 +187,4 @@ DEPENDENCIES yard (~> 0.9.11) BUNDLED WITH - 2.3.11 + 2.4.19 diff --git a/rb/lib/selenium/webdriver/version.rb b/rb/lib/selenium/webdriver/version.rb index 7904acc8b3d40..d56ea914f5bd4 100644 --- a/rb/lib/selenium/webdriver/version.rb +++ b/rb/lib/selenium/webdriver/version.rb @@ -19,6 +19,6 @@ module Selenium module WebDriver - VERSION = '4.18.0' + VERSION = '4.18.1' end # WebDriver end # Selenium