Skip to content

Commit 1af067d

Browse files
committed
Java changelog and release bump to 2.51.0
1 parent d57f406 commit 1af067d

File tree

5 files changed

+29
-9
lines changed

5 files changed

+29
-9
lines changed

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ end
5050
verbose($DEBUG)
5151

5252
def version
53-
"2.50.1"
53+
"2.51.0"
5454
end
5555
ide_version = "2.8.0"
5656

java/CHANGELOG

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
v2.51.0
2+
=======
3+
4+
Firefox:
5+
* finding another edge case where we need to check -1 from the right and bottom of the element's rect
6+
* stop gap to help with elementFromPoint not being completely reliable
7+
* Implementing ability to return non-boolean capabilities
8+
* Bumping up the max version
9+
* Fixing scrolling to elements in overflow:hidden blocks. Fixes issue #1527
10+
* Fixing issue #1509
11+
* Deleting deprecated constant
12+
* Deleting unused method FirefoxBinary.createProfile
13+
14+
WebDriver:
15+
* Fixing httpOnly cookies in HtmlUnit driver
16+
* Adding close connection support to HttpClient to combat hanging open files Fixes #1080
17+
* Increasing log buffer max size
18+
* optimize JsonToBeanConverter In case the input is a JsonNull, return null asap.
19+
* Add toString() to DefaultElementLocator
20+
* fix #1575
21+
122
v2.50.1
223
=======
324

@@ -2064,4 +2085,3 @@ Grid:
20642085
* Track when a session has become orphaned. I.e., when the client sends no
20652086
commands after the initial session creation. This almost always indicates
20662087
the client is no longer connected and the session is unusable immediately.
2067-
----
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
selenium.rc.version=2.50
2-
selenium.rc.revision=.1
3-
selenium.core.version=2.50
4-
selenium.core.revision=.1
1+
selenium.rc.version=2.51
2+
selenium.rc.revision=.0
3+
selenium.core.version=2.51
4+
selenium.core.revision=.0

javascript/firefox-driver/extension/install.rdf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<Description about="urn:mozilla:install-manifest">
55
<em:id>[email protected]</em:id>
6-
<em:version>2.50.1</em:version>
6+
<em:version>2.51.0</em:version>
77
<em:type>2</em:type>
88
<em:name>Firefox WebDriver</em:name>
99
<em:description>WebDriver implementation for Firefox</em:description>

javascript/selenium-core/scripts/selenium-version.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// specific language governing permissions and limitations
1616
// under the License.
1717

18-
Selenium.version = "2.50";
19-
Selenium.revision = ".1";
18+
Selenium.version = "2.51";
19+
Selenium.revision = ".0";
2020

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

0 commit comments

Comments
 (0)