Skip to content

Commit

Permalink
Merge pull request #168 from wardencommunity/security-vuln-patch
Browse files Browse the repository at this point in the history
Update to rack >= 2.0.6 due to XSS security vulnerability.
  • Loading branch information
jsmestad authored Nov 15, 2018
2 parents 5b3cbd5 + 16ed280 commit 61b22a6
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
== Version 1.2.8 / Not released
== Version 1.2.8 / 2018-11-15
* Bugfix: Flips two lines to allow scopes authenticating from another without stepping on each other's toes. (PR #144)
* Update `rack` dependency to >= 2.0.6 due to security vulnerability
* Internal: Add Rubocop Lint checking
* Internal: Update RSpec to use `.rspec` file
* Internal: Update `rack` dependency to 2.x

== Version 1.2.7 / 2016-10-12
* Added 'frozen_string_literal' comment, bump ruby to 2.3
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ source 'https://rubygems.org'
gemspec

gem 'rake'
gem 'rack', '~> 2.0'
gem 'rack', '>= 2.0.6'

group :test do
gem 'rspec', '~>3'
Expand Down
8 changes: 4 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ PATH
remote: .
specs:
warden (1.2.8)
rack (>= 1.0)
rack (>= 2.0.6)

GEM
remote: https://rubygems.org/
specs:
diff-lcs (1.3)
rack (2.0.3)
rack (2.0.6)
rack-test (0.7.0)
rack (>= 1.0, < 3)
rake (12.1.0)
Expand All @@ -30,11 +30,11 @@ PLATFORMS
ruby

DEPENDENCIES
rack (~> 2.0)
rack (>= 2.0.6)
rack-test
rake
rspec (~> 3)
warden!

BUNDLED WITH
1.16.0.pre.2
1.17.1
2 changes: 1 addition & 1 deletion warden.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ Gem::Specification.new do |spec|
spec.rdoc_options = ["--charset=UTF-8"]
spec.require_paths = ["lib"]
spec.rubyforge_project = %q{warden}
spec.add_dependency "rack", ">= 1.0"
spec.add_dependency "rack", ">= 2.0.6"
end

0 comments on commit 61b22a6

Please # to comment.