Skip to content

Commit 79f1c02

Browse files
committed
Bumping versions to 4.6.0 and updating changelogs
1 parent 4ce2649 commit 79f1c02

File tree

19 files changed

+98
-24
lines changed

19 files changed

+98
-24
lines changed

Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ $DEBUG = true if ENV['debug'] == 'true'
5151
verbose($DEBUG)
5252

5353
def release_version
54-
'4.5'
54+
'4.6'
5555
end
5656

5757
def version
58-
"#{release_version}.3"
58+
"#{release_version}.0"
5959
end
6060

6161
# The build system used by webdriver is layered on top of rake, and we call it

cpp/iedriver/IEDriver.rc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ END
5050
//
5151

5252
VS_VERSION_INFO VERSIONINFO
53-
FILEVERSION 4,5,0,0
54-
PRODUCTVERSION 4,5,0,0
53+
FILEVERSION 4,6,0,0
54+
PRODUCTVERSION 4,6,0,0
5555
FILEFLAGSMASK 0x3fL
5656
#ifdef _DEBUG
5757
FILEFLAGS 0x1L
@@ -68,12 +68,12 @@ BEGIN
6868
BEGIN
6969
VALUE "CompanyName", "Software Freedom Conservancy"
7070
VALUE "FileDescription", "Driver library for the IE driver"
71-
VALUE "FileVersion", "4.5.0.0"
71+
VALUE "FileVersion", "4.6.0.0"
7272
VALUE "InternalName", "IEDriver.dll"
73-
VALUE "LegalCopyright", "Copyright (C) 2021"
73+
VALUE "LegalCopyright", "Copyright (C) 2022"
7474
VALUE "OriginalFilename", "IEDriver.dll"
7575
VALUE "ProductName", "Selenium WebDriver"
76-
VALUE "ProductVersion", "4.5.0.0"
76+
VALUE "ProductVersion", "4.6.0.0"
7777
END
7878
END
7979
BLOCK "VarFileInfo"

cpp/iedriverserver/CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ available via the project downloads page. Changes in "revision" field indicate
99
private releases checked into the prebuilts directory of the source tree, but
1010
not made generally available on the downloads page.
1111

12+
v4.6.0.0
13+
========
14+
* Enable msIEModeAlwaysWaitForUnload for Edge IE Mode (#11079)
15+
1216
v4.5.0.0
1317
========
1418
* Auto-locate Edge if IE mode requested and location not specified

cpp/iedriverserver/IEDriverServer.rc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ END
5050
//
5151

5252
VS_VERSION_INFO VERSIONINFO
53-
FILEVERSION 4,5,0,0
54-
PRODUCTVERSION 4,5,0,0
53+
FILEVERSION 4,6,0,0
54+
PRODUCTVERSION 4,6,0,0
5555
FILEFLAGSMASK 0x3fL
5656
#ifdef _DEBUG
5757
FILEFLAGS 0x1L
@@ -68,12 +68,12 @@ BEGIN
6868
BEGIN
6969
VALUE "CompanyName", "Software Freedom Conservancy"
7070
VALUE "FileDescription", "Command line server for the IE driver"
71-
VALUE "FileVersion", "4.5.0.0"
71+
VALUE "FileVersion", "4.6.0.0"
7272
VALUE "InternalName", "IEDriverServer.exe"
73-
VALUE "LegalCopyright", "Copyright (C) 2021"
73+
VALUE "LegalCopyright", "Copyright (C) 2022"
7474
VALUE "OriginalFilename", "IEDriverServer.exe"
7575
VALUE "ProductName", "Selenium WebDriver"
76-
VALUE "ProductVersion", "4.5.0.0"
76+
VALUE "ProductVersion", "4.6.0.0"
7777
END
7878
END
7979
BLOCK "VarFileInfo"

dotnet/CHANGELOG

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
v4.6.0
2+
======
3+
* Adding CDP files for v107 and removing v104
4+
* Initial implementation of Selenium Manager
5+
* allow select list class to work with disabled select elements again
6+
* Bundle smg into nuget package and copy binaries to users output
7+
* fix bug preventing installing addon from directory
8+
19
v4.5.1
210
======
311
* Fix bug preventing automatic detection of protocol version

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.5.1"
3+
SE_VERSION = "4.6.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"]

java/CHANGELOG

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
v4.6.0
2+
======
3+
* Supported CDP versions: 85, 105, 106, 107
4+
* Updated IllegalArgumentException to NullPointerException for Null Values in Require Class (#11162)
5+
* Fix page ranges issue in PrintOptions (#11172) (#11174)
6+
* Ensure the correct output stream is used (#11175)
7+
* Add initial support for Selenium Manager
8+
* Revert "[java] only allow enabled select lists for Select class"
9+
* [grid] Closing input pipeline when 404 is returned
10+
* JDK Http client - avoid chunking without buffering to memory (#11198)
11+
* Avoiding pulling same netty dependencies for AsyncHttpClient
12+
* [grid] Only check for IEDriver on Windows.
13+
14+
115
v4.5.3
216
======
317
* Supported CDP versions: 85, 104, 105, 106

java/version.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SE_VERSION = "4.5.3"
1+
SE_VERSION = "4.6.0"

javascript/node/selenium-webdriver/CHANGES.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## v4.6.0
2+
3+
#### :rocket: New Feature
4+
5+
* [grid] Add ability to use Enter key to confirm (#11178)
6+
* [grid][ui] Add search field for running sessions (#11197)
7+
* Add support for selenium manager (#11189)
8+
9+
#### :bug: Bug Fix
10+
11+
* isPromise() thenable fix (#11048)
12+
* Fix: making methods static (#11182)
13+
14+
#### :nail_care: Polish
15+
16+
* fix a tiny typo in chromium.js (#11073)
17+
* Adding CDP files for v107 and removing v104
18+
119
## v4.5.0
220

321
#### :rocket: New Feature

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.5.0",
3+
"version": "4.6.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
@@ -15,7 +15,7 @@ compile_pip_requirements(
1515
requirements_txt = ":requirements_lock.txt",
1616
)
1717

18-
SE_VERSION = "4.5.0"
18+
SE_VERSION = "4.6.0"
1919

2020
BROWSER_VERSIONS = [
2121
"v85",

py/CHANGES

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
Selenium 4.6.0
2+
* Document firefox `service=` arg. closes #11067
3+
* Additional types and tidying safari service
4+
* Revert removal of default executable global for safari
5+
* Additional types; remove unused `permissions.py`
6+
* Remove `RemoteDriverServerException`
7+
* Remove unused `send_remote_shutdown_command` implementations in services
8+
* Update `log_path` docs for non chromium based services
9+
* Make `get_screenshot_as_file()` work with pathlib.Paths (#11095)
10+
* Remove `protocols.py`
11+
* fix typing in get_full_page_screenshot_as_png (#11163)
12+
* typo in error message (#11166)
13+
* Adding CDP files for v107 and removing v104
14+
* add initial support for selenium manager
15+
* Revert "[py] do not allow Select class to work with disabled selects"
16+
* #11093 - The SessionId shouldn't be added to params themself bu… (#11121)
17+
118
Selenium 4.5.0
219
* Fix frame_to_be_available_and_switch_to_it() for string inputs (#10963)
320
* Implicit non w3c capability conversion for `acceptSslCerts`, `platform` and `version` is now deprecated

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.5'
59+
version = '4.6'
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
@@ -35,7 +35,7 @@ If you have `pip <https://pip.pypa.io/>`_ on your system, you can simply install
3535

3636
pip install -U selenium
3737

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

4040
python setup.py install
4141

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

133133
Run the server from the command line::
134134

135-
java -jar selenium-server-4.5.0.jar
135+
java -jar selenium-server-4.6.0.jar
136136

137137
Then run your Python client scripts.
138138

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.5.0"
19+
__version__ = "4.6.0"

py/selenium/webdriver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
from .wpewebkit.options import Options as WPEWebKitOptions # noqa
3737
from .wpewebkit.webdriver import WebDriver as WPEWebKit # noqa
3838

39-
__version__ = "4.5.0"
39+
__version__ = "4.6.0"
4040

4141
# We need an explicit __all__ because the above won't otherwise be exported.
4242
__all__ = [

py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
setup_args = {
2828
'cmdclass': {'install': install},
2929
'name': 'selenium',
30-
'version': "4.5.0",
30+
'version': "4.6.0",
3131
'license': 'Apache 2.0',
3232
'description': 'Python bindings for Selenium',
3333
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),

rb/CHANGES

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
1-
4.5.0 (Unreleased)
1+
4.6.0 (2022-11-04)
2+
=========================
3+
BiDi:
4+
* Released selenium-devtools 0.107.0 (supports CDP v85, v105, v106, v107)
5+
6+
Ruby:
7+
* firefox scroll by amount is only failing on mac
8+
* add initial support for selenium manager
9+
* Revert "[rb] do not allow Select class to work with disabled selects"
10+
* Make sure selenium-manager is packed into gem
11+
* Fix platform list in #scroll_by guard
12+
13+
14+
4.5.0 (2022-09-28)
215
=========================
316

417
BiDi:

rb/lib/selenium/webdriver/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 WebDriver
22-
VERSION = '4.5.0'
22+
VERSION = '4.6.0'
2323
end # WebDriver
2424
end # Selenium

0 commit comments

Comments
 (0)