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": [

0 commit comments

Comments
 (0)