Skip to content

Commit c713dbd

Browse files
deps: update sqlite3 requirement from ~> 1.4 to ~> 2.9
Updates the requirements on [sqlite3](https://github.com/sparklemotion/sqlite3-ruby) to permit the latest version. Updates `sqlite3` to 2.9.0 - [Release notes](https://github.com/sparklemotion/sqlite3-ruby/releases) - [Changelog](https://github.com/sparklemotion/sqlite3-ruby/blob/main/CHANGELOG.md) - [Commits](sparklemotion/sqlite3-ruby@v1.4.0...v2.9.0) --- updated-dependencies: - dependency-name: sqlite3 dependency-version: 2.9.0 dependency-type: direct:production dependency-group: production-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 29ec8d3 commit c713dbd

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ platforms :ruby do
1313
gem 'mysql2'
1414

1515
if version.start_with?('4.2', '5.0')
16-
gem 'sqlite3', '~> 1.3.13'
16+
gem 'sqlite3', '~> 2.9'
1717
elsif version.start_with?('8.')
1818
# Rails 8.0+ requires sqlite3 >= 2.1
19-
gem 'sqlite3', '>= 2.1'
19+
gem 'sqlite3', '~> 2.9'
2020
else
21-
gem 'sqlite3', '~> 1.4'
21+
gem 'sqlite3', '~> 2.9'
2222
end
2323
end
2424

0 commit comments

Comments
 (0)