Skip to content

Commit

Permalink
Updating to release IE driver 3.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jimevans committed Mar 13, 2018
1 parent 5419255 commit 7ddba7c
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions cpp/iedriverserver/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,19 @@ available via the project downloads page. Changes in "revision" field indicate
private releases checked into the prebuilts directory of the source tree, but
not made generally available on the downloads page.

v3.11.1.0
=========
* Updated all C++ projects for the IE driver to use the Windows 8.1 SDK.
This has the unfortunate side effect that the driver executable will no
longer launch on Windows XP.
* Removed direct call to InternetGetCookieEx2 API. Versions of IE prior to
11 do not have access to this API. Linking directly to it via the Windows
8.1 SDK creates an import entry in the IEDriver.dll library used by the
driver. So that the driver can continue to be used against earlier releases,
we will call the API using GetModuleHandle and GetProcAddress only if it
exists in the version of WinINet being used by the browser. Fixes issue #5603.
* Properly initializing JSON values in IE driver. Fixes issue #5519.

v3.11.0.0
=========
* Release to synchronize with release of Selenium project.
Expand Down
8 changes: 4 additions & 4 deletions cpp/iedriverserver/IEDriverServer.rc
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 3,11,0,0
PRODUCTVERSION 3,11,0,0
FILEVERSION 3,11,1,0
PRODUCTVERSION 3,11,1,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -68,12 +68,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Software Freedom Conservancy"
VALUE "FileDescription", "Command line server for the IE driver"
VALUE "FileVersion", "3.11.0.0"
VALUE "FileVersion", "3.11.1.0"
VALUE "InternalName", "IEDriverServer.exe"
VALUE "LegalCopyright", "Copyright (C) 2017"
VALUE "OriginalFilename", "IEDriverServer.exe"
VALUE "ProductName", "Selenium WebDriver"
VALUE "ProductVersion", "3.11.0.0"
VALUE "ProductVersion", "3.11.1.0"
END
END
BLOCK "VarFileInfo"
Expand Down
Binary file modified cpp/prebuilt/Win32/Release/IEDriverServer.exe
Binary file not shown.
Binary file modified cpp/prebuilt/x64/Release/IEDriverServer.exe
Binary file not shown.

0 comments on commit 7ddba7c

Please sign in to comment.