forked from entp/ruby-openid
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mike Mell
committed
Nov 3, 2011
1 parent
5f77852
commit 3c4ebc0
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Changes in ruby-openid 2.1.9 | ||
|
||
* added Gemfile and Rakefile. Tests are easily run with | ||
$ rake test | ||
|
||
* Renamed the gemspec file and fixed a deprecation warning about "SPEC" | ||
|
||
* restructured the test directory to match current practices | ||
|
||
* fixed SEGFAULT in lib/openid/dh.rb running in Ruby 1.9.2-290 | ||
|
||
* fixed bugs in lib/openid/yadis/xrires.rb. Tests were failing. | ||
|
||
* fixed problem in Rails 3 with example consumer code handing Rails path_parameters to Consumer.complete | ||
examples/rails_openid/app/controllers/consumer_controller.rb | ||
Existing clients migrating to Rails 3 need to match this change: | ||
parameters = params.reject{ |k,v| request.path_parameters[k.to_sym] } # params keys are String; path_parameters keys are Symbol | ||
See: https://rails.lighthouseapp.com/projects/8994/tickets/3738-breaking-change-in-requestpath_parameters |