From bc7e0c7341fdde78cdd80ce572002a7866fd1769 Mon Sep 17 00:00:00 2001 From: Diego Molina Date: Mon, 8 May 2023 13:12:19 +0200 Subject: [PATCH] Updating changelogs and bumping version to 4.9.1 --- Rakefile | 2 +- dotnet/CHANGELOG | 8 ++++++++ dotnet/selenium-dotnet-version.bzl | 2 +- java/CHANGELOG | 19 +++++++++++++++++++ java/version.bzl | 2 +- javascript/node/selenium-webdriver/CHANGES.md | 6 ++++++ py/BUILD.bazel | 2 +- py/CHANGES | 6 ++++++ py/docs/source/index.rst | 2 +- py/selenium/__init__.py | 2 +- py/selenium/webdriver/__init__.py | 2 +- py/setup.py | 2 +- rb/CHANGES | 2 +- rb/lib/selenium/webdriver/version.rb | 2 +- 14 files changed, 49 insertions(+), 10 deletions(-) diff --git a/Rakefile b/Rakefile index 245403f400db1..331274613492d 100644 --- a/Rakefile +++ b/Rakefile @@ -55,7 +55,7 @@ def release_version end def version - "#{release_version}.1-SNAPSHOT" + "#{release_version}.1" end # The build system used by webdriver is layered on top of rake, and we call it diff --git a/dotnet/CHANGELOG b/dotnet/CHANGELOG index d91b505ed3c93..eebd7d0179188 100644 --- a/dotnet/CHANGELOG +++ b/dotnet/CHANGELOG @@ -1,3 +1,11 @@ +v4.9.1 +====== +* Add CDP files for v113 and remove v110 +* Fallback result parsing of script execution to expected type (#11930) +* Using Selenium Manager in default service creation (#11994) +* Encoding process output (#11947) +* Generate API documentation (#11968) + v4.9.0 ====== * Add CDP files for v112 and remove v109 diff --git a/dotnet/selenium-dotnet-version.bzl b/dotnet/selenium-dotnet-version.bzl index 901be0a070671..967cb460b0d42 100644 --- a/dotnet/selenium-dotnet-version.bzl +++ b/dotnet/selenium-dotnet-version.bzl @@ -1,6 +1,6 @@ # BUILD FILE SYNTAX: STARLARK -SE_VERSION = "4.9.0" +SE_VERSION = "4.9.1" ASSEMBLY_VERSION = "4.0.0.0" SUPPORTED_NET_FRAMEWORKS = ["net45", "net46", "net47", "net48"] SUPPORTED_NET_STANDARD_VERSIONS = ["netstandard2.0", "netstandard2.1", "net5.0", "net6.0"] diff --git a/java/CHANGELOG b/java/CHANGELOG index e7789c5631f6a..638fdbdabb170 100644 --- a/java/CHANGELOG +++ b/java/CHANGELOG @@ -1,3 +1,22 @@ +v4.9.0 +====== +* Supported CDP versions: 85, 111, 112, 113 +* Typo in the "addArguments" method comment (#11945) +* Handling case where -1 is returned as statusCode (#11910) +* Adding remote-allow-origins argument only when the Java 11 http client is not used (#11949) +* Remove deprecated "version" JWP capability +* Remove deprecated "platform" JWP capability +* Remove deprecated "takesScreenshot" JWP capability +* Remove deprecated "unexpectedAlertBehaviour" JWP capability +* [grid] Displaying the real stereotype config at startup +* Add logging for starting the driver +* [grid] Do not switch and remove node in one iteration (#11961) +* Handle fragmented websocket messages (#11962) +* Add more logging to Selenium Manager (#11959) +* Make Driver Services consistent (#11973) +* Using driver path always for Safari and Safari Technology Preview (#11952) +* Overriding methods to have main platform names lowercase (#11952) + v4.9.0 ====== * Supported CDP versions: 85, 110, 111, 112 diff --git a/java/version.bzl b/java/version.bzl index 1962d7b01fa1e..d39e4b69110bc 100644 --- a/java/version.bzl +++ b/java/version.bzl @@ -1 +1 @@ -SE_VERSION = "4.9.1-SNAPSHOT" +SE_VERSION = "4.9.1" diff --git a/javascript/node/selenium-webdriver/CHANGES.md b/javascript/node/selenium-webdriver/CHANGES.md index 311770cb6d8f7..39c116f8fb997 100644 --- a/javascript/node/selenium-webdriver/CHANGES.md +++ b/javascript/node/selenium-webdriver/CHANGES.md @@ -1,3 +1,9 @@ +## v4.9.1 + +#### :nail_care: Polish + +* Add CDP files for v113 and remove v110 + ## v4.9.0 #### :nail_care: Polish diff --git a/py/BUILD.bazel b/py/BUILD.bazel index 84f48036a5a12..4b0ba63f9f0c7 100644 --- a/py/BUILD.bazel +++ b/py/BUILD.bazel @@ -16,7 +16,7 @@ compile_pip_requirements( requirements_txt = ":requirements_lock.txt", ) -SE_VERSION = "4.9.0" +SE_VERSION = "4.9.1" BROWSER_VERSIONS = [ "v85", diff --git a/py/CHANGES b/py/CHANGES index 69427c88359d8..7ad6446741fb8 100644 --- a/py/CHANGES +++ b/py/CHANGES @@ -1,3 +1,9 @@ +Selenium 4.9.1 +* Add CDP files for v113 and remove v110 +* Minor fixes for docstring and dictionary declarations (#11975) +* Update logging to match other bindings (#11990) +* Support newer versions of urllib3 (#11993) + Selenium 4.9.0 * Remove "shadow_root" assertion in Python bindings for Firefox (#11821) * Simplify driver binary and driver location selecting (#11864) diff --git a/py/docs/source/index.rst b/py/docs/source/index.rst index 03e58824677bd..e3366cf312676 100755 --- a/py/docs/source/index.rst +++ b/py/docs/source/index.rst @@ -35,7 +35,7 @@ If you have `pip `_ on your system, you can simply install pip install -U selenium -Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-4.9.0.tar.gz), unarchive it, and run:: +Alternately, you can download the source distribution from `PyPI `_ (e.g. selenium-4.9.1.tar.gz), unarchive it, and run:: python setup.py install diff --git a/py/selenium/__init__.py b/py/selenium/__init__.py index fb3a34cf2cfa7..f1b985018a2b2 100644 --- a/py/selenium/__init__.py +++ b/py/selenium/__init__.py @@ -16,4 +16,4 @@ # under the License. -__version__ = "4.9.0" +__version__ = "4.9.1" diff --git a/py/selenium/webdriver/__init__.py b/py/selenium/webdriver/__init__.py index 8e95416749ea6..39973f4b813b0 100644 --- a/py/selenium/webdriver/__init__.py +++ b/py/selenium/webdriver/__init__.py @@ -36,7 +36,7 @@ from .wpewebkit.options import Options as WPEWebKitOptions # noqa from .wpewebkit.webdriver import WebDriver as WPEWebKit # noqa -__version__ = "4.9.0" +__version__ = "4.9.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 66d6b4863ef04..2da7cf663ea0f 100755 --- a/py/setup.py +++ b/py/setup.py @@ -27,7 +27,7 @@ setup_args = { 'cmdclass': {'install': install}, 'name': 'selenium', - 'version': "4.9.0", + 'version': "4.9.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 0468818beb923..728972cfc744b 100644 --- a/rb/CHANGES +++ b/rb/CHANGES @@ -1,4 +1,4 @@ -4.9.1 (Unreleased) +4.9.1 (2023-05-08) ========================= Ruby: * Allow users to specify driver process output in Service class (#11964) diff --git a/rb/lib/selenium/webdriver/version.rb b/rb/lib/selenium/webdriver/version.rb index f42834d94909e..44da5bf423c58 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.9.0' + VERSION = '4.9.1' end # WebDriver end # Selenium