Bug 1369709 - Release geckodriver 0.17.0. r=ato

MozReview-Commit-ID: 9I4FM2TCBez

--HG--
extra : rebase_source : da4fb291067a585ae3e9d8f70be1b0ebd770908e
This commit is contained in:
Henrik Skupin 2017-06-07 20:45:18 +02:00
parent 3b83aa8692
commit 34e680df7b
3 changed files with 23 additions and 5 deletions

View File

@ -2,13 +2,31 @@
All notable changes to this program is documented in this file.
## 0.16.1 (2016-04-26)
## 0.17.0 (2017-06-09)
### Added
- Added endpoints:
- POST `/session/{session id}/window/fullscreen` to invoke the window manager-specific `full screen` operation
- POST `/session/{session id}/moz/addon/install` to install an extension [Gecko only]
- POST `/session/{session id}/moz/addon/uninstall` to uninstall an extension [Gecko only]
### Changed
- Increasing the length of the `network.http.phishy-userpass-length` preference will cause Firefox to not prompt when navigating to a website with a username or password in the URL
- Library dependencies upgraded to mozrunner 0.4 and mozprofile 0.3 to allow overriding of preferences via capabilities if those have been already set in the profile
- Library dependencies upgraded to mozversion 0.1.2 to only use the normalized path of the Firefox binary for version checks but not to actually start the browser, which broke several components in Firefox on Windows
### Fixed
- The SetWindowRect command now returns the WindowRect when it is done
- Use ASCII versions of array symbols to properly display them in the Windows command prompt
- Use [`SessionNotCreated`](https://docs.rs/webdriver/0.25.0/webdriver/error/enum.ErrorStatus.html#variant.SessionNotCreated) error instead of [`UnknownError`](https://docs.rs/webdriver/0.25.0/webdriver/error/enum.ErrorStatus.html#variant.UnknownError) if there is no current session
## 0.16.1 (2017-04-26)
### Fixed
- Read Firefox version number from stdout when failing to look for the application .ini file (fixes [Selenium #3884](https://github.com/SeleniumHQ/selenium/issues/3884))
- Session is now ended when closing the last Firefox window (fixes [#613](https://github.com/mozilla/geckodriver/issues/613))
## 0.16.0 (2016-04-21)
## 0.16.0 (2017-04-21)
Note that geckodriver v0.16.0 is only compatible with Selenium 3.4 and greater.

View File

@ -1,6 +1,6 @@
[root]
name = "geckodriver"
version = "0.16.1"
version = "0.17.0"
dependencies = [
"chrono 0.2.25 (registry+https://github.com/rust-lang/crates.io-index)",
"clap 2.24.2 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -1,6 +1,6 @@
[package]
name = "geckodriver"
version = "0.16.1"
version = "0.17.0"
authors = [
"James Graham <james@hoppipolla.co.uk>",
"Andreas Tolfsen <ato@mozilla.com>",