Skip to content

Commit

Permalink
Fix JRuby build by pinning pysch to 5.1.0 (#2142)
Browse files Browse the repository at this point in the history
  • Loading branch information
st0012 authored Oct 14, 2023
1 parent 3e2b9a4 commit d237c51
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sentry-delayed_job/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ gemspec
gem "sentry-ruby", path: "../sentry-ruby"
gem "sentry-rails", path: "../sentry-rails"

# For https://github.com/ruby/psych/issues/655
gem "psych", "5.1.0"

gem "rake", "~> 12.0"
gem "rspec", "~> 3.0"
gem 'simplecov'
Expand Down
3 changes: 3 additions & 0 deletions sentry-resque/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ gem 'simplecov'
gem "simplecov-cobertura", "~> 1.4"
gem "rexml"

# For https://github.com/ruby/psych/issues/655
gem "psych", "5.1.0"

gem "resque-retry", "~> 1.8"

if RUBY_VERSION.to_f >= 2.6
Expand Down
3 changes: 3 additions & 0 deletions sentry-sidekiq/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ gem "rexml"
# loofah changed the required ruby version in a patch so we need to explicitly pin it
gem "loofah", "2.20.0" if RUBY_VERSION.to_f < 2.5

# For https://github.com/ruby/psych/issues/655
gem "psych", "5.1.0"

sidekiq_version = ENV["SIDEKIQ_VERSION"]
sidekiq_version = "6.0" if sidekiq_version.nil?
sidekiq_version = Gem::Version.new(sidekiq_version)
Expand Down

0 comments on commit d237c51

Please sign in to comment.