Skip to content

Commit

Permalink
Remove upper bound for sinatra (#67)
Browse files Browse the repository at this point in the history
* Remove upper bound for sinatra gem version

* update gemfiles

* update changelog

---------

Co-authored-by: Vladimir Yanushkovsky <vladimir.ya@codexoptimus.pro>
  • Loading branch information
samandmoore and co-vladimir-ya committed May 21, 2024
1 parent 2367ed1 commit 9c2edd6
Show file tree
Hide file tree
Showing 6 changed files with 402 additions and 336 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ and this project aims to adhere to [Semantic Versioning](http://semver.org/spec/

## [Unreleased]
### Changed
- Remove constraint on sinatra < 3 to allow for newer rack and sinatra
usages (https://github.com/Betterment/webvalve/pull/65) (thanks @co-vladimir-ya)
### Added
### Removed

Expand Down
46 changes: 26 additions & 20 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ PATH
specs:
webvalve (2.0.0)
activesupport (>= 5.2.0)
sinatra (>= 1.4, < 3)
sinatra-contrib (>= 1.4, < 3)
sinatra (>= 1.4)
sinatra-contrib (>= 1.4)
webmock (>= 2.0)

GEM
Expand Down Expand Up @@ -126,7 +126,7 @@ GEM
mini_mime (1.1.5)
minitest (5.22.2)
multi_json (1.15.0)
mustermann (2.0.2)
mustermann (3.0.0)
ruby2_keywords (~> 0.0.1)
mutex_m (0.2.0)
net-imap (0.4.10)
Expand All @@ -139,6 +139,8 @@ GEM
net-smtp (0.4.0.1)
net-protocol
nio4r (2.7.0)
nokogiri (1.16.5-arm64-darwin)
racc (~> 1.4)
nokogiri (1.16.5-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.16.5-x86_64-linux)
Expand All @@ -150,16 +152,17 @@ GEM
stringio
public_suffix (5.0.4)
racc (1.7.3)
rack (2.2.8.1)
rack-protection (2.2.4)
rack
rack-session (1.0.2)
rack (< 3)
rack (3.0.11)
rack-protection (4.0.0)
base64 (>= 0.1.0)
rack (>= 3.0.0, < 4)
rack-session (2.0.0)
rack (>= 3.0.0)
rack-test (2.1.0)
rack (>= 1.3)
rackup (1.0.0)
rack (< 3)
webrick
rackup (2.1.0)
rack (>= 3)
webrick (~> 1.8)
rails (7.1.3.1)
actioncable (= 7.1.3.1)
actionmailbox (= 7.1.3.1)
Expand Down Expand Up @@ -210,16 +213,17 @@ GEM
rspec-support (~> 3.12.0)
rspec-support (3.12.1)
ruby2_keywords (0.0.5)
sinatra (2.2.4)
mustermann (~> 2.0)
rack (~> 2.2)
rack-protection (= 2.2.4)
sinatra (4.0.0)
mustermann (~> 3.0)
rack (>= 3.0.0, < 4)
rack-protection (= 4.0.0)
rack-session (>= 2.0.0, < 3)
tilt (~> 2.0)
sinatra-contrib (2.2.4)
multi_json
mustermann (~> 2.0)
rack-protection (= 2.2.4)
sinatra (= 2.2.4)
sinatra-contrib (4.0.0)
multi_json (>= 0.0.2)
mustermann (~> 3.0)
rack-protection (= 4.0.0)
sinatra (= 4.0.0)
tilt (~> 2.0)
stringio (3.1.0)
strscan (3.1.0)
Expand All @@ -240,6 +244,8 @@ GEM
zeitwerk (2.6.13)

PLATFORMS
arm64-darwin-22
arm64-darwin-23
x86_64-darwin-22
x86_64-linux

Expand Down
Loading

0 comments on commit 9c2edd6

Please sign in to comment.