Skip to content

Commit 7982fda

Browse files
committed
Drop upper bound on jdbc-sqlite3
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.
1 parent 38c566b commit 7982fda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

activerecord-jdbcsqlite3-adapter/activerecord-jdbcsqlite3-adapter.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ Gem::Specification.new do |gem|
2020
gem.files = `git ls-files`.split("\n") # assuming . working directory
2121

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

0 commit comments

Comments
 (0)