Skip to content

Commit

Permalink
Merge pull request #303 from active-hash/flavorjones-dep-sqlite3-lt-2.0
Browse files Browse the repository at this point in the history
test: pin sqlite3 dependency to `< 2.0`
  • Loading branch information
kbrock authored Apr 29, 2024
2 parents 195b1e9 + 808659b commit 2d642c9
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# | rails | rails EOL | ruby EOL | min ruby| max |
# | ----- | ---------+| --------+| --------|---- |
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ platforms :jruby do
end

platforms :ruby do
gem 'sqlite3', '~> 1.4.0'
gem 'sqlite3', '~> 1.4', '< 2.0' # can allow 2.0 once Rails's sqlite adapter allows it
end

gem 'activerecord', '>= 5.0.0'
2 changes: 1 addition & 1 deletion gemfiles/rails_6.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ platform :jruby do
end

platform :ruby do
gem 'sqlite3'
gem 'sqlite3', '~> 1.4', '< 2.0' # can allow 2.0 once Rails's sqlite adapter allows it
end

gemspec :path => '../'
2 changes: 1 addition & 1 deletion gemfiles/rails_6.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ platform :jruby do
end

platform :ruby do
gem 'sqlite3'
gem 'sqlite3', '~> 1.4', '< 2.0' # can allow 2.0 once Rails's sqlite adapter allows it
end

gemspec :path => '../'
2 changes: 1 addition & 1 deletion gemfiles/rails_7.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ platform :jruby do
end

platform :ruby do
gem 'sqlite3'
gem 'sqlite3', '~> 1.4', '< 2.0' # can allow 2.0 once Rails's sqlite adapter allows it
end

gemspec :path => '../'
2 changes: 1 addition & 1 deletion gemfiles/rails_7.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ platform :jruby do
end

platform :ruby do
gem 'sqlite3'
gem 'sqlite3', '~> 1.4', '< 2.0' # can allow 2.0 once Rails's sqlite adapter allows it
end

gemspec :path => '../'

0 comments on commit 2d642c9

Please sign in to comment.