Skip to content

Commit

Permalink
update versions and changelogs for 4.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Aug 31, 2023
1 parent d5b6401 commit 249f2a7
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 12 deletions.
8 changes: 6 additions & 2 deletions dotnet/CHANGELOG
Expand Up @@ -5,8 +5,12 @@ v4.12.0
* Improve performance in DriverFactory (#12497)
* Avoid async void events in CDP Network session (#12486)
* Rename methods in Actions class to follow .NET convention (#12439)


* Fix bug with Selenium Manager executing in new window (#12593)
* Simplify to only target .NET Standard 2.0 (#12608)
* DriverFinder executed in Driver constructor not Service constructor (#12534)
* Refactor WebScocket communication for BiDi (#12614)
* Avoid potential deadlocks for new dev tools sessions (#12592)
* Send data over cdp consecutively (#12591)

v4.11.0
======
Expand Down
2 changes: 1 addition & 1 deletion dotnet/selenium-dotnet-version.bzl
@@ -1,6 +1,6 @@
# BUILD FILE SYNTAX: STARLARK

SE_VERSION = "4.11.0"
SE_VERSION = "4.12.0"
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"]
Expand Down
7 changes: 7 additions & 0 deletions java/CHANGELOG
Expand Up @@ -16,6 +16,13 @@ v4.12.0
* Increase maximum depth of generated JSON (see #12581)
* Do not register multiple listeners
* Improve synchronization for network event listeners
* Fix bug for null hashCode in element subclasses (#12442)
* Fix potential deadlock in processing events (#12576)
* Fix proxy breaking in RemoteWebDriver (#12607)
* Grid detects Safari and Safari Technology Preview only on macOS
* Grid avoids using Selenium Manager offline mode when it is enabled in arguments
* Batch copy input to multiple streams
* Remove browserVersion from options in Selenium Manager (#12639)

v4.11.0
======
Expand Down
2 changes: 1 addition & 1 deletion java/version.bzl
@@ -1,2 +1,2 @@
SE_VERSION = "4.12.0-SNAPSHOT"
SE_VERSION = "4.12.0"
TOOLS_JAVA_VERSION = "17"
1 change: 1 addition & 0 deletions javascript/node/selenium-webdriver/CHANGES.md
Expand Up @@ -9,6 +9,7 @@
#### :nail_care: Polish

* Add support for Chrome 116 and remove support for Chrome 113
* Remove browserVersion from options in Selenium Manager (#12641)

## 4.11.1

Expand Down
2 changes: 1 addition & 1 deletion javascript/node/selenium-webdriver/package.json
@@ -1,6 +1,6 @@
{
"name": "selenium-webdriver",
"version": "4.11.1",
"version": "4.12.0",
"description": "The official WebDriver JavaScript bindings from the Selenium project",
"license": "Apache-2.0",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion py/BUILD.bazel
Expand Up @@ -16,7 +16,7 @@ compile_pip_requirements(
requirements_txt = ":requirements_lock.txt",
)

SE_VERSION = "4.11.2"
SE_VERSION = "4.12.0"

BROWSER_VERSIONS = [
"v85",
Expand Down
2 changes: 1 addition & 1 deletion py/docs/source/conf.py
Expand Up @@ -56,7 +56,7 @@
# built documents.
#
# The short X.Y version.
version = '4.10'
version = '4.12'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
4 changes: 2 additions & 2 deletions py/docs/source/index.rst
Expand Up @@ -33,7 +33,7 @@ If you have `pip <https://pip.pypa.io/>`_ on your system, you can simply install

pip install -U selenium

Alternately, you can download the source distribution from `PyPI <https://pypi.org/project/selenium/#files>`_ (e.g. selenium-4.11.2.tar.gz), unarchive it, and run::
Alternately, you can download the source distribution from `PyPI <https://pypi.org/project/selenium/#files>`, unarchive it, and run::

python setup.py install

Expand Down Expand Up @@ -130,7 +130,7 @@ Download the server separately, from: https://www.selenium.dev/downloads/

Run the server from the command line::

java -jar selenium-server-4.11.0.jar
java -jar selenium-server-4.12.0.jar

Then run your Python client scripts.

Expand Down
2 changes: 1 addition & 1 deletion py/selenium/__init__.py
Expand Up @@ -16,4 +16,4 @@
# under the License.


__version__ = "4.11.2"
__version__ = "4.12.0"
2 changes: 1 addition & 1 deletion py/selenium/webdriver/__init__.py
Expand Up @@ -44,7 +44,7 @@
from .wpewebkit.service import Service as WPEWebKitService # noqa
from .wpewebkit.webdriver import WebDriver as WPEWebKit # noqa

__version__ = "4.11.2"
__version__ = "4.12.0"

# We need an explicit __all__ because the above won't otherwise be exported.
__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion py/setup.py
Expand Up @@ -27,7 +27,7 @@
setup_args = {
'cmdclass': {'install': install},
'name': 'selenium',
'version': "4.11.2",
'version': "4.12.0",
'license': 'Apache 2.0',
'description': 'Python bindings for Selenium',
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),
Expand Down

0 comments on commit 249f2a7

Please sign in to comment.