Skip to content

Commit

Permalink
v1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
derekprior committed Aug 21, 2015
1 parent 6a7bf83 commit 82f9aaa
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
clearance (1.10.1)
clearance (1.11.0)
bcrypt
email_validator (~> 1.4)
rails (>= 3.1)
Expand Down Expand Up @@ -52,7 +52,7 @@ GEM
bundler
rake
thor (>= 0.14.0)
arel (6.0.0)
arel (6.0.3)
bcrypt (3.1.10)
builder (3.2.2)
capybara (2.4.4)
Expand All @@ -72,7 +72,7 @@ GEM
factory_girl_rails (4.5.0)
factory_girl (~> 4.5.0)
railties (>= 3.0.0)
globalid (0.3.5)
globalid (0.3.6)
activesupport (>= 4.1.0)
i18n (0.7.0)
json (1.8.3)
Expand Down Expand Up @@ -140,7 +140,7 @@ GEM
slop (3.6.0)
sprockets (3.2.0)
rack (~> 1.0)
sprockets-rails (2.3.1)
sprockets-rails (2.3.2)
actionpack (>= 3.0)
activesupport (>= 3.0)
sprockets (>= 2.8, < 4.0)
Expand Down Expand Up @@ -171,4 +171,4 @@ DEPENDENCIES
timecop (~> 0.6)

BUNDLED WITH
1.10.2
1.10.5
24 changes: 23 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,29 @@
# News

The noteworthy changes for each Clearance version are included here. For a
complete changelog, see the git history.
complete changelog, see the git history for each version via the version links.

## [1.11.0] - August 21, 2015

### Added
- Add `sign_in` and `sign_in_as` helper methods to view specs. These helpers
avoid errors from verified partial doubles that come from. See
[462c009].

### Fixed
- `clearance:routes` generator now properly disables internal routes in your
Clearance initializer.
- Clearance now accesses the cookie jar via ActionDispatch::Request rather than
`Rack::Request`. This is more consistent with what Rails does internally.

### Deprecated
- `Clearance::Testing::Helpers` has been deprecated in favor of
`Clearance::Testing::ControllerHelpers`. Most users are accessing these
helpers by requiring `clearance/rspec` or `clearance/test_unit` and should be
unaffected.

[462c009]: https://github.com/thoughtbot/clearance/commit/462c00965c14b2492500fbb4fecd7b84b9790bb9
[1.11.0]: https://github.com/thoughtbot/clearance/compare/v1.10.1...v1.11.0

## [1.10.1] - May 15, 2015

Expand Down
2 changes: 1 addition & 1 deletion lib/clearance/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Clearance
VERSION = "1.10.1"
VERSION = "1.11.0"
end

0 comments on commit 82f9aaa

Please sign in to comment.