Skip to content

Commit

Permalink
Boyscout: loosen lock on Kaminari
Browse files Browse the repository at this point in the history
So we don't block minor version upgrades (which shouldn't have breaking changes)
  • Loading branch information
kreintjes committed Sep 9, 2020
1 parent c7a9da2 commit 4733287
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## Unreleased

* Fix bug in "Dangerous query methods" deprecation warning fix in custom order when using Arel.sql
* Loosen lock on Kaminari

## 4.1.0 (28 November, 2018)

Expand Down
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ PATH
specs:
wice_grid (4.1.0)
coffee-rails (> 3.2)
kaminari (~> 1.1.0)
kaminari (~> 1.1)
rails (~> 5.0, < 5.3)

GEM
Expand Down Expand Up @@ -90,7 +90,7 @@ GEM
ffi (1.9.23)
font-awesome-sass (4.4.0)
sass (>= 3.2)
globalid (0.4.1)
globalid (0.4.2)
activesupport (>= 4.2.0)
haml (5.0.4)
temple (>= 0.8.0)
Expand Down Expand Up @@ -139,7 +139,7 @@ GEM
minitest (5.11.1)
multi_json (1.13.1)
multi_xml (0.6.0)
nio4r (2.3.1)
nio4r (2.5.2)
nokogiri (1.10.1)
mini_portile2 (~> 2.4.0)
poltergeist (1.18.1)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_5.0.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ PATH
specs:
wice_grid (4.1.0)
coffee-rails (> 3.2)
kaminari (~> 1.1.0)
kaminari (~> 1.1)
rails (~> 5.0, < 5.3)

GEM
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_5.1.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ PATH
specs:
wice_grid (4.1.0)
coffee-rails (> 3.2)
kaminari (~> 1.1.0)
kaminari (~> 1.1)
rails (~> 5.0, < 5.3)

GEM
Expand Down
6 changes: 3 additions & 3 deletions gemfiles/rails_5.2.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ PATH
specs:
wice_grid (4.1.0)
coffee-rails (> 3.2)
kaminari (~> 1.1.0)
kaminari (~> 1.1)
rails (~> 5.0, < 5.3)

GEM
Expand Down Expand Up @@ -76,9 +76,9 @@ GEM
ffi (~> 1.0, >= 1.0.11)
cliver (0.3.2)
coderay (1.1.2)
coffee-rails (4.2.2)
coffee-rails (5.0.0)
coffee-script (>= 2.2.0)
railties (>= 4.0.0)
railties (>= 5.2.0)
coffee-script (2.4.1)
coffee-script-source
execjs
Expand Down
2 changes: 1 addition & 1 deletion wice_grid.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |s|
s.date = '2018-11-28'

s.add_dependency 'rails', '~> 5.0', '< 5.3'
s.add_dependency 'kaminari', ['~> 1.1.0']
s.add_dependency 'kaminari', ['~> 1.1']
s.add_dependency 'coffee-rails', ['> 3.2']

s.add_development_dependency('rake', '~> 10.1')
Expand Down

0 comments on commit 4733287

Please sign in to comment.