Skip to content

Commit 249f2a7

Browse files
committed
update versions and changelogs for 4.12.0
1 parent d5b6401 commit 249f2a7

File tree

12 files changed

+24
-12
lines changed

12 files changed

+24
-12
lines changed

dotnet/CHANGELOG

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,12 @@ v4.12.0
55
* Improve performance in DriverFactory (#12497)
66
* Avoid async void events in CDP Network session (#12486)
77
* Rename methods in Actions class to follow .NET convention (#12439)
8-
9-
8+
* Fix bug with Selenium Manager executing in new window (#12593)
9+
* Simplify to only target .NET Standard 2.0 (#12608)
10+
* DriverFinder executed in Driver constructor not Service constructor (#12534)
11+
* Refactor WebScocket communication for BiDi (#12614)
12+
* Avoid potential deadlocks for new dev tools sessions (#12592)
13+
* Send data over cdp consecutively (#12591)
1014

1115
v4.11.0
1216
======

dotnet/selenium-dotnet-version.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# BUILD FILE SYNTAX: STARLARK
22

3-
SE_VERSION = "4.11.0"
3+
SE_VERSION = "4.12.0"
44
ASSEMBLY_VERSION = "4.0.0.0"
55
SUPPORTED_NET_FRAMEWORKS = ["net45", "net46", "net47", "net48"]
66
SUPPORTED_NET_STANDARD_VERSIONS = ["netstandard2.0", "netstandard2.1", "net5.0", "net6.0"]

java/CHANGELOG

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@ v4.12.0
1616
* Increase maximum depth of generated JSON (see #12581)
1717
* Do not register multiple listeners
1818
* Improve synchronization for network event listeners
19+
* Fix bug for null hashCode in element subclasses (#12442)
20+
* Fix potential deadlock in processing events (#12576)
21+
* Fix proxy breaking in RemoteWebDriver (#12607)
22+
* Grid detects Safari and Safari Technology Preview only on macOS
23+
* Grid avoids using Selenium Manager offline mode when it is enabled in arguments
24+
* Batch copy input to multiple streams
25+
* Remove browserVersion from options in Selenium Manager (#12639)
1926

2027
v4.11.0
2128
======

java/version.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
SE_VERSION = "4.12.0-SNAPSHOT"
1+
SE_VERSION = "4.12.0"
22
TOOLS_JAVA_VERSION = "17"

javascript/node/selenium-webdriver/CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#### :nail_care: Polish
1010

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

1314
## 4.11.1
1415

javascript/node/selenium-webdriver/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "selenium-webdriver",
3-
"version": "4.11.1",
3+
"version": "4.12.0",
44
"description": "The official WebDriver JavaScript bindings from the Selenium project",
55
"license": "Apache-2.0",
66
"keywords": [

py/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ compile_pip_requirements(
1616
requirements_txt = ":requirements_lock.txt",
1717
)
1818

19-
SE_VERSION = "4.11.2"
19+
SE_VERSION = "4.12.0"
2020

2121
BROWSER_VERSIONS = [
2222
"v85",

py/docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
# built documents.
5757
#
5858
# The short X.Y version.
59-
version = '4.10'
59+
version = '4.12'
6060
# The full version, including alpha/beta/rc tags.
6161
release = version
6262

py/docs/source/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ If you have `pip <https://pip.pypa.io/>`_ on your system, you can simply install
3333

3434
pip install -U selenium
3535

36-
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::
36+
Alternately, you can download the source distribution from `PyPI <https://pypi.org/project/selenium/#files>`, unarchive it, and run::
3737

3838
python setup.py install
3939

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

131131
Run the server from the command line::
132132

133-
java -jar selenium-server-4.11.0.jar
133+
java -jar selenium-server-4.12.0.jar
134134

135135
Then run your Python client scripts.
136136

py/selenium/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
# under the License.
1717

1818

19-
__version__ = "4.11.2"
19+
__version__ = "4.12.0"

0 commit comments

Comments
 (0)