From 1af067dbcaedd7d2ab9af5151fc471d363d97193 Mon Sep 17 00:00:00 2001 From: Luke Inman-Semerau Date: Fri, 5 Feb 2016 11:08:13 -0800 Subject: [PATCH] Java changelog and release bump to 2.51.0 --- Rakefile | 2 +- java/CHANGELOG | 22 ++++++++++++++++++- .../org/openqa/selenium/server/VERSION.txt | 8 +++---- .../firefox-driver/extension/install.rdf | 2 +- .../selenium-core/scripts/selenium-version.js | 4 ++-- 5 files changed, 29 insertions(+), 9 deletions(-) diff --git a/Rakefile b/Rakefile index df88b43200313..eb069cb401e11 100644 --- a/Rakefile +++ b/Rakefile @@ -50,7 +50,7 @@ end verbose($DEBUG) def version - "2.50.1" + "2.51.0" end ide_version = "2.8.0" diff --git a/java/CHANGELOG b/java/CHANGELOG index 655f613ec5eb8..cb5f9a6567bd4 100644 --- a/java/CHANGELOG +++ b/java/CHANGELOG @@ -1,3 +1,24 @@ +v2.51.0 +======= + +Firefox: + * finding another edge case where we need to check -1 from the right and bottom of the element's rect + * stop gap to help with elementFromPoint not being completely reliable + * Implementing ability to return non-boolean capabilities + * Bumping up the max version + * Fixing scrolling to elements in overflow:hidden blocks. Fixes issue #1527 + * Fixing issue #1509 + * Deleting deprecated constant + * Deleting unused method FirefoxBinary.createProfile + +WebDriver: + * Fixing httpOnly cookies in HtmlUnit driver + * Adding close connection support to HttpClient to combat hanging open files Fixes #1080 + * Increasing log buffer max size + * optimize JsonToBeanConverter In case the input is a JsonNull, return null asap. + * Add toString() to DefaultElementLocator + * fix #1575 + v2.50.1 ======= @@ -2064,4 +2085,3 @@ Grid: * Track when a session has become orphaned. I.e., when the client sends no commands after the initial session creation. This almost always indicates the client is no longer connected and the session is unusable immediately. ----- diff --git a/java/server/src/org/openqa/selenium/server/VERSION.txt b/java/server/src/org/openqa/selenium/server/VERSION.txt index c5fff4cf0d89f..ec2cf118f47c7 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.50 -selenium.rc.revision=.1 -selenium.core.version=2.50 -selenium.core.revision=.1 +selenium.rc.version=2.51 +selenium.rc.revision=.0 +selenium.core.version=2.51 +selenium.core.revision=.0 diff --git a/javascript/firefox-driver/extension/install.rdf b/javascript/firefox-driver/extension/install.rdf index cbae7cf13c05d..566c9dd916c60 100644 --- a/javascript/firefox-driver/extension/install.rdf +++ b/javascript/firefox-driver/extension/install.rdf @@ -3,7 +3,7 @@ fxdriver@googlecode.com - 2.50.1 + 2.51.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 3fc3765fa5337..7eb938c0f84a3 100644 --- a/javascript/selenium-core/scripts/selenium-version.js +++ b/javascript/selenium-core/scripts/selenium-version.js @@ -15,7 +15,7 @@ // specific language governing permissions and limitations // under the License. -Selenium.version = "2.50"; -Selenium.revision = ".1"; +Selenium.version = "2.51"; +Selenium.revision = ".0"; window.top.document.title += " v" + Selenium.version + Selenium.revision;