Skip to content

Commit

Permalink
Updating version information for 2.47.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jimevans committed Jul 29, 2015
1 parent 5bb60fa commit 0e4837e
Show file tree
Hide file tree
Showing 5 changed files with 68 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ end
verbose($DEBUG)

def version
"2.46.0"
"2.47.0"
end
ide_version = "2.8.0"

Expand Down
66 changes: 63 additions & 3 deletions java/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,7 +1,67 @@
v2.47.0 in development
======================
v2.47.0
=======
WebDriver:
* Supports native events for Firefox version 31 (immediately previous
ESR). Native event support has been discontinued for versions of
Firefox later than 33. Synthetic events tested on Firefox versions 31
(immediately previous ESR), 38 (immediately previous release and current
ESR), and 39 (current release).
* Beta Alert.AuthenticateUsing api implementation added, beta testing with IE.
* Added TakesScreenshot to WebElement.
* (provided by Microsoft) Added language bindings for Microsoft Edge browser
* Make it possible for users to override how the Lock is obtained with Firefox.
* (provided by Ahmed Ashour) Added implementation of Alert for HtmlUnit driver.
* (provided by Ahmed Ashour) Fixed findElementByXPath for HtmlUnit driver to
work for XML pages.
* (provided by Ahmed Ashour) Fixed HtmlUnit driver to allow for manipulating
elements in SVG documents.
* (provided by Ahmed Ashour) Fixed HtmlUnit driver so that deleteAllCookies
deletes cookies only for the current domain, matching other implementations.
* (provided by Tamás Buka) Created an overload to
ExpectedConditions.frameToBeAvailableAndSwitchToIt support to index and
WebElement so that WebDriverWait can use this mode to switch frames.
* (provided by Joshua Bruning) Allow access to local profiler logs. An
exception may be thrown if the WebDriver server does not recognize profiler
logs. In this case, the user should be able to see the local profiler logs.
* (provided by Sergey Tikhomirov) Changed visibility of isDecoratableList
method of DefaultFieldDecorator to protected for use with custom PageFactory
implementations.
* Froze javascript.enabled property in Firefox profiles
* FIXED #426: (provided by Anand Jayaram) Default the hub port to 4444, if no
port was provided.
* FIXED #638: Disabled HTTP Public Key Pinning (HPKP) when the
webdriver_accept_untrusted_certs capability is set. As of Firefox 39, Firefox
ignores certificate overrides if the domain's certificate is pinned.
* FIXED #644: (provided by Brett Randall) Modified ErrorHandler to tolerate
non-Number lineNumber, and also attempts to safely parse a non-Number Object
if it receives a non-Number. If absent or non-numeric it now continues to
build the StackTraceElement (instead of aborting that frame) and uses the
conventional -1 for lineNumber.
* FIXED #658: Disable reading list info panel in Firefox.

Server:
* Added a guard that prevents starting "IE instead of Opera" (or some other
unwanted browser that obviously does not match the desired capabilities).
Previously if a new session request is forwarded to a node it results in a
driver instance creation in any case. For example, let's suppose a user
starts a node with -browser browserName=opera option, and there is no
operadriver in the classpath. Then the user requests a new remote driver with
browserName=opera. The hub forwards the request to the node, and the node
attempts to find the "best matching" driver provider. As far as opera is not
available, it can start any other browser. Because "best matching" does not
imply matching. The new guard prevents this unwanted behavior.

Grid:
* Added support to grid for Microsoft Edge driver
* (provided by Dima Kovalenko) Sort Grid Proxies in order of least busy to
busiest. This should prevent situation where one node is running multiple
sessions while several nodes are completely idle.

RC:
* Removed start of Firefox with -silent option to prevent crash in Firefox.

* Beta Alert.AuthenticateUsing api implementation added, beta testing with IE.
IDE:
* FIXED #570: Add ability to record elements that do not have href attributes.

v2.46.0
=======
Expand Down
4 changes: 2 additions & 2 deletions java/server/src/org/openqa/selenium/server/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
selenium.rc.version=2.46
selenium.rc.version=2.47
selenium.rc.revision=.0
selenium.core.version=2.46
selenium.core.version=2.47
selenium.core.revision=.0
2 changes: 1 addition & 1 deletion javascript/firefox-driver/extension/install.rdf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<Description about="urn:mozilla:install-manifest">
<em:id>fxdriver@googlecode.com</em:id>
<em:version>2.46.0</em:version>
<em:version>2.47.0</em:version>
<em:type>2</em:type>
<em:name>Firefox WebDriver</em:name>
<em:description>WebDriver implementation for Firefox</em:description>
Expand Down
2 changes: 1 addition & 1 deletion javascript/selenium-core/scripts/selenium-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// specific language governing permissions and limitations
// under the License.

Selenium.version = "2.46";
Selenium.version = "2.47";
Selenium.revision = ".0";

window.top.document.title += " v" + Selenium.version + Selenium.revision;
Expand Down

0 comments on commit 0e4837e

Please sign in to comment.