Closed y-yagi closed 10 months ago
Since Ruby 3.3.0, RubyGems and Bundler warn if users do require the gems that will become the bundled gems in the future version of Ruby.
Please see the "Standard library updates" section for the details. https://www.ruby-lang.org/en/news/2023/12/25/ruby-3-3-0-released/
sentry-ruby uses one of those gems, bigdecimal. So now get the warning like the following. https://github.com/getsentry/sentry-ruby/actions/runs/7463068254/job/20306920751#step:6:89
sentry-ruby
bigdecimal
This PR adds bigdecimal to the gemspec to fix the warning.
This PR also removed unused require of base64. base64 is also the gem that will become the bundled gems. But, it seems that sentry-ruby doesn't use it now. So I just removed it.
base64
Merging #2225 (92d14cf) into master (bf13c7e) will decrease coverage by 0.01%. The diff coverage is n/a.
0.01%
n/a
Description
Since Ruby 3.3.0, RubyGems and Bundler warn if users do require the gems that will become the bundled gems in the future version of Ruby.
Please see the "Standard library updates" section for the details. https://www.ruby-lang.org/en/news/2023/12/25/ruby-3-3-0-released/
sentry-ruby
uses one of those gems,bigdecimal
. So now get the warning like the following. https://github.com/getsentry/sentry-ruby/actions/runs/7463068254/job/20306920751#step:6:89This PR adds
bigdecimal
to the gemspec to fix the warning.This PR also removed unused require of
base64
.base64
is also the gem that will become the bundled gems. But, it seems thatsentry-ruby
doesn't use it now. So I just removed it.