Skip to content

Commit 61b22a6

Browse files
authored
Merge pull request #168 from wardencommunity/security-vuln-patch
Update to rack >= 2.0.6 due to XSS security vulnerability.
2 parents 5b3cbd5 + 16ed280 commit 61b22a6

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
== Version 1.2.8 / Not released
1+
== Version 1.2.8 / 2018-11-15
22
* Bugfix: Flips two lines to allow scopes authenticating from another without stepping on each other's toes. (PR #144)
3+
* Update `rack` dependency to >= 2.0.6 due to security vulnerability
34
* Internal: Add Rubocop Lint checking
45
* Internal: Update RSpec to use `.rspec` file
5-
* Internal: Update `rack` dependency to 2.x
66

77
== Version 1.2.7 / 2016-10-12
88
* Added 'frozen_string_literal' comment, bump ruby to 2.3

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source 'https://rubygems.org'
44
gemspec
55

66
gem 'rake'
7-
gem 'rack', '~> 2.0'
7+
gem 'rack', '>= 2.0.6'
88

99
group :test do
1010
gem 'rspec', '~>3'

Gemfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ PATH
22
remote: .
33
specs:
44
warden (1.2.8)
5-
rack (>= 1.0)
5+
rack (>= 2.0.6)
66

77
GEM
88
remote: https://rubygems.org/
99
specs:
1010
diff-lcs (1.3)
11-
rack (2.0.3)
11+
rack (2.0.6)
1212
rack-test (0.7.0)
1313
rack (>= 1.0, < 3)
1414
rake (12.1.0)
@@ -30,11 +30,11 @@ PLATFORMS
3030
ruby
3131

3232
DEPENDENCIES
33-
rack (~> 2.0)
33+
rack (>= 2.0.6)
3434
rack-test
3535
rake
3636
rspec (~> 3)
3737
warden!
3838

3939
BUNDLED WITH
40-
1.16.0.pre.2
40+
1.17.1

warden.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ Gem::Specification.new do |spec|
2323
spec.rdoc_options = ["--charset=UTF-8"]
2424
spec.require_paths = ["lib"]
2525
spec.rubyforge_project = %q{warden}
26-
spec.add_dependency "rack", ">= 1.0"
26+
spec.add_dependency "rack", ">= 2.0.6"
2727
end

0 commit comments

Comments
 (0)