Skip to content

Commit

Permalink
Java changelog and release bump to 2.51.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeis committed Feb 5, 2016
1 parent d57f406 commit 1af067d
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 9 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.50.1"
"2.51.0"
end
ide_version = "2.8.0"

Expand Down
22 changes: 21 additions & 1 deletion java/CHANGELOG
Original file line number Diff line number Diff line change
@@ -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
=======

Expand Down Expand Up @@ -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.
----
8 changes: 4 additions & 4 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.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
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.50.1</em:version>
<em:version>2.51.0</em:version>
<em:type>2</em:type>
<em:name>Firefox WebDriver</em:name>
<em:description>WebDriver implementation for Firefox</em:description>
Expand Down
4 changes: 2 additions & 2 deletions 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.50";
Selenium.revision = ".1";
Selenium.version = "2.51";
Selenium.revision = ".0";

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

0 comments on commit 1af067d

Please sign in to comment.