Skip to content

Commit

Permalink
Drop upper bound on jdbc-sqlite3
Browse files Browse the repository at this point in the history
Having this upper bound prevents updating jdbc-sqlite3 to any
recent version, which in turn prevents Rails 6.1 + JRuby + MacOS +
ARM64 from working due to the older sqlite JDBC drivers not having
such support.

This commit removes the upper bound so that any newer 3.x
jdbc-sqlite3 can be used with Rails 6.1 + JRuby.
  • Loading branch information
headius committed Sep 11, 2023
1 parent 38c566b commit 7982fda
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ Gem::Specification.new do |gem|
gem.files = `git ls-files`.split("\n") # assuming . working directory

gem.add_dependency 'activerecord-jdbc-adapter', "#{version}"
gem.add_dependency 'jdbc-sqlite3', '~> 3.8', '< 3.34'
gem.add_dependency 'jdbc-sqlite3', '~> 3.8'
end

0 comments on commit 7982fda

Please sign in to comment.