1
0
Fork 0
mirror of https://github.com/teampoltergeist/poltergeist.git synced 2022-11-09 12:05:00 -05:00

Prepare for 1.14.0 release

This commit is contained in:
Thomas Walpole 2017-03-16 13:21:28 -07:00
parent 84d687224d
commit 86e783e6fb
3 changed files with 5 additions and 6 deletions

View file

@ -1,4 +1,4 @@
### Edge ###
### 1.14.0 ###
#### Features ####
* Driver#network_traffic will return blocked page requests if passed :blocked (Kyle Rippey)

View file

@ -193,10 +193,9 @@ visit(login_path)
page.driver.headers # => { "User-Agent" => "Poltergeist" }
```
This way your temporary headers will be sent only for the initial request, all
subsequent request will only contain your permanent headers.
However the temporary headers will still be sent on 30x redirects. If the
headers should not be sent on redirects, specify `permanent: :no_redirect`.
This way your temporary headers will be sent only for the initial request, and related 30x redirects. All
subsequent request will only contain your permanent headers. If the temporary
headers should not be sent on related 30x redirects, specify `permanent: :no_redirect`.
### Inspecting network traffic ###

View file

@ -1,5 +1,5 @@
module Capybara
module Poltergeist
VERSION = "1.13.0"
VERSION = "1.14.0"
end
end