From 085758c2e968cd5c4a3c7f5a6fecf1e72b76dc61 Mon Sep 17 00:00:00 2001 From: Luke Inman-Semerau Date: Mon, 8 Apr 2013 19:52:59 -0700 Subject: [PATCH] updating changelog and version numbers in preperation for 2.32 --- Rakefile | 2 +- java/CHANGELOG | 26 +++++++++++++++++++ .../org/openqa/selenium/server/VERSION.txt | 4 +-- .../firefox-driver/extension/install.rdf | 2 +- .../selenium-core/scripts/selenium-version.js | 2 +- 5 files changed, 31 insertions(+), 5 deletions(-) diff --git a/Rakefile b/Rakefile index c99b380fef832..b7178cc95c48b 100644 --- a/Rakefile +++ b/Rakefile @@ -47,7 +47,7 @@ end verbose($DEBUG) def version - "2.31.0" + "2.32.0" end ide_version = "1.10.0" diff --git a/java/CHANGELOG b/java/CHANGELOG index 7b30f876c7c7b..0d23120dede6c 100644 --- a/java/CHANGELOG +++ b/java/CHANGELOG @@ -1,3 +1,29 @@ +v2.32.0 +======= + +WebDriver: + This release supports Firefox verions: 10esr, 17esr, 19, 20 + + * Let WindowsUtils.killPID() kill the whole process tree + * Implementing support for implicit "submit" button type in HtmlUnitDriver. + * bug fix for python hang with 302 response + * Adding better support for SVG within Firefox. Has better scrolling to element and allows JavaScript execution + * Fixing case of "no active element" for HtmlUnitDriver + * WindowsUtils.kill() fix on Windows 8 + * Updating HtmlUnit to 2.12 (and cssparser to 0.9.9) + * Fixing illegal negative timeout values for HtmlUnitDriver, zero means infinite wait + * Implementing pageLoadTimeout in HtmlUnitDriver + * Allow users to specify a custom location for Safari's data directory using the "safari.dataDir" capability. + * Fix for using DesiredCapabilities with WebDriverBackedSelenium + * PhantomJS Driver bindings updated to 1.0.3 + * Minimize the number of third party libraries used by the very heart of the remote webdriver server. + * fix issue where server was appending '?null' to all forwarded requests + * Issues fixed: 5293, 4902, 5283, 5278 + +v2.31.0 +======= + (summary not created, check version history logs) + v2.30.0 ======= diff --git a/java/server/src/org/openqa/selenium/server/VERSION.txt b/java/server/src/org/openqa/selenium/server/VERSION.txt index da7f0cfc13b32..7fffe2c77fa69 100644 --- a/java/server/src/org/openqa/selenium/server/VERSION.txt +++ b/java/server/src/org/openqa/selenium/server/VERSION.txt @@ -1,4 +1,4 @@ -selenium.rc.version=2.31 +selenium.rc.version=2.32 selenium.rc.revision=.0 -selenium.core.version=2.31 +selenium.core.version=2.32 selenium.core.revision=.0 diff --git a/javascript/firefox-driver/extension/install.rdf b/javascript/firefox-driver/extension/install.rdf index 84ce2af9c0a9d..4223b437827dd 100644 --- a/javascript/firefox-driver/extension/install.rdf +++ b/javascript/firefox-driver/extension/install.rdf @@ -3,7 +3,7 @@ fxdriver@googlecode.com - 2.31.0 + 2.32.0 2 Firefox WebDriver WebDriver implementation for Firefox diff --git a/javascript/selenium-core/scripts/selenium-version.js b/javascript/selenium-core/scripts/selenium-version.js index 1a695d78a7850..f0f40dd66b926 100644 --- a/javascript/selenium-core/scripts/selenium-version.js +++ b/javascript/selenium-core/scripts/selenium-version.js @@ -1,4 +1,4 @@ -Selenium.version = "2.31"; +Selenium.version = "2.32"; Selenium.revision = ".0"; window.top.document.title += " v" + Selenium.version + Selenium.revision;