Skip to content

Commit

Permalink
Pin sqlite3 for building gems (#2222)
Browse files Browse the repository at this point in the history
  • Loading branch information
sl0thentr0py committed Jan 9, 2024
1 parent 15f027e commit b0f0ead
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 5.16.1

### Bug Fixes

- Pin `sqlite3` gem for building because of failed release [#2222](https://github.com/getsentry/sentry-ruby/pull/2222)

## 5.16.0

### Features
Expand Down
3 changes: 2 additions & 1 deletion sentry-delayed_job/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ platform :jruby do
gem "jdbc-sqlite3"
end

gem "sqlite3", platform: :ruby
# 1.7.0 dropped support for ruby < 3.0, remove later after upgrading craft setup
gem "sqlite3", "1.6.9", platform: :ruby

eval_gemfile File.expand_path("../Gemfile", __dir__)
3 changes: 2 additions & 1 deletion sentry-rails/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ rails_version = Gem::Version.new(rails_version)
if rails_version < Gem::Version.new("6.0.0")
gem "sqlite3", "~> 1.3.0", platform: :ruby
else
gem "sqlite3", platform: :ruby
# 1.7.0 dropped support for ruby < 3.0, remove later after upgrading craft setup
gem "sqlite3", "1.6.9", platform: :ruby
end

if rails_version >= Gem::Version.new("7.2.0.alpha")
Expand Down

0 comments on commit b0f0ead

Please sign in to comment.