Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump sentry-ruby from 5.16.1 to 5.19.0 #663

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 14, 2024

Bumps sentry-ruby from 5.16.1 to 5.19.0.

Changelog

Sourced from sentry-ruby's changelog.

5.19.0

Features

  • Use Concurrent.available_processor_count instead of Concurrent.usable_processor_count (#2358)

  • Support for tracing Faraday requests (#2345)

  • Support for attachments (#2357)

    Usage:

    Sentry.add_attachment(path: '/foo/bar.txt')
    Sentry.add_attachment(filename: 'payload.json', bytes: '{"value": 42}'))
  • Transaction data are now included in the context (#2365)

  • Inject Sentry meta tags in the Rails application layout automatically in the generator (#2369)

    To turn this behavior off, use

    bin/rails generate sentry --inject-meta false

Bug Fixes

  • Fix skipping connect spans in open-telemetry #2364

5.18.2

Bug Fixes

  • Don't overwrite ip_address if already set on user #2350
  • teardown_sentry_test helper should clear global even processors too (#2342)
  • Suppress the unnecessary “unsupported options notice” (#2349)

Internal

  • Use Concurrent.usable_processor_count when it is available (#2339)
  • Report dropped spans in Client Reports (#2346)

5.18.1

Bug Fixes

  • Drop Gem::Specification's usage so it doesn't break bundler standalone (#2335)

... (truncated)

Commits

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot added dependencies ruby Pull requests that update Ruby code labels Aug 14, 2024
Copy link

gem compare concurrent-ruby 1.2.3 1.3.4

Compared versions: ["1.2.3", "1.3.4"]
  DIFFERENT date:
    1.2.3: 2024-01-16 00:00:00 UTC
    1.3.4: 2024-08-10 00:00:00 UTC
  DIFFERENT version:
    1.2.3: 1.2.3
    1.3.4: 1.3.4
  DIFFERENT files:
    1.2.3->1.3.4:
      * Changed:
            CHANGELOG.md +28/-0
            Gemfile +5/-5
            Rakefile +48/-25
            lib/concurrent-ruby/concurrent/executor/java_executor_service.rb +2/-6
            lib/concurrent-ruby/concurrent/utility/processor_counter.rb +116/-6
            lib/concurrent-ruby/concurrent/version.rb +1/-1
  DIFFERENT extra_rdoc_files:
    1.2.3->1.3.4:
      * Changed:
            CHANGELOG.md +28/-0

Copy link

gem compare --diff concurrent-ruby 1.2.3 1.3.4

Compared versions: ["1.2.3", "1.3.4"]
  DIFFERENT files:
    1.2.3->1.3.4:
      * Changed:
        CHANGELOG.md
                --- /tmp/d20240814-1965-o19djf/concurrent-ruby-1.2.3/CHANGELOG.md	2024-08-14 02:02:55.566003771 +0000
                +++ /tmp/d20240814-1965-o19djf/concurrent-ruby-1.3.4/CHANGELOG.md	2024-08-14 02:02:55.590003812 +0000
                @@ -2,0 +3,28 @@
                +## Release v1.3.4 (10 August 2024)
                +
                +* (#1060) Fix bug with return value of `Concurrent.available_processor_count` when `cpu.cfs_quota_us` is -1.
                +* (#1058) Add `Concurrent.cpu_shares` that is cgroups aware.
                +
                +## Release v1.3.3 (9 June 2024)
                +
                +* (#1053) Improve the speed of `Concurrent.physical_processor_count` on Windows.
                +
                +## Release v1.3.2, edge v0.7.1 (7 June 2024)
                +
                +concurrent-ruby:
                +
                +* (#1051) Remove dependency on `win32ole`.
                +
                +concurrent-ruby-edge:
                +
                +* (#1052) Fix dependency on `concurrent-ruby` to allow the latest release.
                +
                +## Release v1.3.1 (29 May 2024)
                +
                +* Release 1.3.0 was broken when pushed to RubyGems. 1.3.1 is a packaging fix.
                +
                +## Release v1.3.0 (28 May 2024)
                +
                +* (#1042) Align Java Executor Service behavior for `shuttingdown?`, `shutdown?`
                +* (#1038) Add `Concurrent.available_processor_count` that is cgroups aware.
                +
        Gemfile
                --- /tmp/d20240814-1965-o19djf/concurrent-ruby-1.2.3/Gemfile	2024-08-14 02:02:55.566003771 +0000
                +++ /tmp/d20240814-1965-o19djf/concurrent-ruby-1.3.4/Gemfile	2024-08-14 02:02:55.590003812 +0000
                @@ -3,2 +3,2 @@
                -require File.join(File.dirname(__FILE__), 'lib/concurrent-ruby/concurrent/version')
                -require File.join(File.dirname(__FILE__ ), 'lib/concurrent-ruby-edge/concurrent/edge/version')
                +version = File.read("#{__dir__}/lib/concurrent-ruby/concurrent/version.rb")[/'(.+)'/, 1] or raise
                +edge_version = File.read("#{__dir__}/lib/concurrent-ruby-edge/concurrent/edge/version.rb")[/'(.+)'/, 1] or raise
                @@ -9,3 +9,3 @@
                -gem 'concurrent-ruby', Concurrent::VERSION, options
                -gem 'concurrent-ruby-edge', Concurrent::EDGE_VERSION, options
                -gem 'concurrent-ruby-ext', Concurrent::VERSION, options.merge(platform: :mri)
                +gem 'concurrent-ruby', version, options
                +gem 'concurrent-ruby-edge', edge_version, options
                +gem 'concurrent-ruby-ext', version, options.merge(platform: :mri)
        Rakefile
                --- /tmp/d20240814-1965-o19djf/concurrent-ruby-1.2.3/Rakefile	2024-08-14 02:02:55.566003771 +0000
                +++ /tmp/d20240814-1965-o19djf/concurrent-ruby-1.3.4/Rakefile	2024-08-14 02:02:55.590003812 +0000
                @@ -1,3 +1,2 @@
                -require_relative 'lib/concurrent-ruby/concurrent/version'
                -require_relative 'lib/concurrent-ruby-edge/concurrent/edge/version'
                -require_relative 'lib/concurrent-ruby/concurrent/utility/engine'
                +version = File.read("#{__dir__}/lib/concurrent-ruby/concurrent/version.rb")[/'(.+)'/, 1] or raise
                +edge_version = File.read("#{__dir__}/lib/concurrent-ruby-edge/concurrent/edge/version.rb")[/'(.+)'/, 1] or raise
                @@ -11 +10 @@
                -ENV['JRUBY_HOME'] = ENV['CONCURRENT_JRUBY_HOME'] if ENV['CONCURRENT_JRUBY_HOME'] && !Concurrent.on_jruby?
                +ENV['JRUBY_HOME'] = ENV['CONCURRENT_JRUBY_HOME'] if ENV['CONCURRENT_JRUBY_HOME'] && RUBY_ENGINE != 'jruby'
                @@ -18 +17 @@
                -unless Concurrent.on_jruby? || Concurrent.on_truffleruby?
                +if RUBY_ENGINE == 'ruby'
                @@ -30,0 +30,4 @@
                +def which?(executable)
                +  !`which #{executable} 2>/dev/null`.empty?
                +end
                +
                @@ -44,0 +48,8 @@
                +      rack_compiler_dock_kwargs = {}
                +      if which?('podman') and (!which?('docker') || `docker --version`.include?('podman'))
                +        # podman and only podman available, so RakeCompilerDock will use podman, otherwise it uses docker
                +        rack_compiler_dock_kwargs = {
                +          options: ['--privileged'], # otherwise the directory in the image is empty
                +          runas: false
                +        }
                +      end
                @@ -49,2 +60 @@
                -          options: ['--privileged'], # otherwise the directory in the image is empty
                -          runas: false)
                +          **rack_compiler_dock_kwargs)
                @@ -60 +70 @@
                -Gem::PackageTask.new(ext_gemspec) {} if ext_gemspec && !Concurrent.on_jruby?
                +Gem::PackageTask.new(ext_gemspec) {} if ext_gemspec && RUBY_ENGINE != 'jruby'
                @@ -88,3 +98,3 @@
                -          sh "gem install pkg/concurrent-ruby-#{Concurrent::VERSION}.gem"
                -          sh "gem install pkg/concurrent-ruby-ext-#{Concurrent::VERSION}.gem" if Concurrent.on_cruby?
                -          sh "gem install pkg/concurrent-ruby-edge-#{Concurrent::EDGE_VERSION}.gem"
                +          sh "gem install pkg/concurrent-ruby-#{version}.gem"
                +          sh "gem install pkg/concurrent-ruby-ext-#{version}.gem" if RUBY_ENGINE == 'ruby'
                +          sh "gem install pkg/concurrent-ruby-edge-#{edge_version}.gem"
                @@ -120 +130 @@
                -current_yard_version_name = Concurrent::VERSION
                +current_yard_version_name = version
                @@ -223,0 +234,2 @@
                +    raise '$CONCURRENT_JRUBY_HOME must be set' unless ENV['CONCURRENT_JRUBY_HOME']
                +
                @@ -253,0 +266,2 @@
                +    raise '$CONCURRENT_JRUBY_HOME must be set' unless ENV['CONCURRENT_JRUBY_HOME']
                +
                @@ -258,0 +273 @@
                +        sh 'bundle install'
                @@ -261 +276 @@
                -        env = { "PATH" => "#{ENV['CONCURRENT_JRUBY_HOME']}/bin:#{ENV['PATH']}" }
                +        env = { "PATH" => "#{ENV.fetch('CONCURRENT_JRUBY_HOME')}/bin:#{ENV['PATH']}" }
                @@ -262,0 +278 @@
                +        sh env, 'bundle install'
                @@ -274,2 +290,2 @@
                -    publish_base = true
                -    publish_edge = false
                +    publish_base = nil
                +    publish_edge = nil
                @@ -282,0 +299,7 @@
                +
                +      begin
                +        STDOUT.puts 'Do you want to publish `concurrent-ruby`? (y/n)'
                +        input = STDIN.gets.strip.downcase
                +      end until %w(y n).include?(input)
                +      publish_base = input == 'y'
                +
                @@ -284 +307 @@
                -        STDOUT.puts 'It will publish `concurrent-ruby`. Do you want to publish `concurrent-ruby-edge`? (y/n)'
                +        STDOUT.puts 'Do you want to publish `concurrent-ruby-edge`? (y/n)'
                @@ -293,4 +316,4 @@
                -        sh "git tag v#{Concurrent::VERSION}" if publish_base
                -        sh "git push origin v#{Concurrent::VERSION}" if publish_base
                -        sh "git tag edge-v#{Concurrent::EDGE_VERSION}" if publish_edge
                -        sh "git push origin edge-v#{Concurrent::EDGE_VERSION}" if publish_edge
                +        sh "git tag v#{version}" if publish_base
                +        sh "git push origin v#{version}" if publish_base
                +        sh "git tag edge-v#{edge_version}" if publish_edge
                +        sh "git push origin edge-v#{edge_version}" if publish_edge
                @@ -303,5 +326,5 @@
                -        sh "gem push pkg/concurrent-ruby-#{Concurrent::VERSION}.gem" if publish_base
                -        sh "gem push pkg/concurrent-ruby-edge-#{Concurrent::EDGE_VERSION}.gem" if publish_edge
                -        sh "gem push pkg/concurrent-ruby-ext-#{Concurrent::VERSION}.gem" if publish_base
                -        sh "gem push pkg/concurrent-ruby-ext-#{Concurrent::VERSION}-x64-mingw32.gem" if publish_base
                -        sh "gem push pkg/concurrent-ruby-ext-#{Concurrent::VERSION}-x86-mingw32.gem" if publish_base
                +        sh "gem push pkg/concurrent-ruby-#{version}.gem" if publish_base
                +        sh "gem push pkg/concurrent-ruby-edge-#{edge_version}.gem" if publish_edge
                +        sh "gem push pkg/concurrent-ruby-ext-#{version}.gem" if publish_base
                +        sh "gem push pkg/concurrent-ruby-ext-#{version}-x64-mingw32.gem" if publish_base
                +        sh "gem push pkg/concurrent-ruby-ext-#{version}-x86-mingw32.gem" if publish_base
        lib/concurrent-ruby/concurrent/concurrent_ruby.jar
                Binary files /tmp/d20240814-1965-o19djf/concurrent-ruby-1.2.3/lib/concurrent-ruby/concurrent/concurrent_ruby.jar and /tmp/d20240814-1965-o19djf/concurrent-ruby-1.3.4/lib/concurrent-ruby/concurrent/concurrent_ruby.jar differ
        lib/concurrent-ruby/concurrent/executor/java_executor_service.rb
                --- /tmp/d20240814-1965-o19djf/concurrent-ruby-1.2.3/lib/concurrent-ruby/concurrent/executor/java_executor_service.rb	2024-08-14 02:02:55.582003799 +0000
                +++ /tmp/d20240814-1965-o19djf/concurrent-ruby-1.3.4/lib/concurrent-ruby/concurrent/executor/java_executor_service.rb	2024-08-14 02:02:55.602003833 +0000
                @@ -60,5 +60 @@
                -        if @executor.respond_to? :isTerminating
                -          @executor.isTerminating
                -        else
                -          false
                -        end
                +        @executor.isShutdown && !@executor.isTerminated
                @@ -68 +64 @@
                -        @executor.isShutdown || @executor.isTerminated
                +        @executor.isTerminated
        lib/concurrent-ruby/concurrent/utility/processor_counter.rb
                --- /tmp/d20240814-1965-o19djf/concurrent-ruby-1.2.3/lib/concurrent-ruby/concurrent/utility/processor_counter.rb	2024-08-14 02:02:55.590003812 +0000
                +++ /tmp/d20240814-1965-o19djf/concurrent-ruby-1.3.4/lib/concurrent-ruby/concurrent/utility/processor_counter.rb	2024-08-14 02:02:55.614003854 +0000
                @@ -13,0 +14,2 @@
                +        @cpu_quota                = Delay.new { compute_cpu_quota }
                +        @cpu_shares               = Delay.new { compute_cpu_shares }
                @@ -23,0 +26,23 @@
                +      def available_processor_count
                +        cpu_count = processor_count.to_f
                +        quota = cpu_quota
                +
                +        return cpu_count if quota.nil?
                +
                +        # cgroup cpus quotas have no limits, so they can be set to higher than the
                +        # real count of cores.
                +        if quota > cpu_count
                +          cpu_count
                +        else
                +          quota
                +        end
                +      end
                +
                +      def cpu_quota
                +        @cpu_quota.value
                +      end
                +
                +      def cpu_shares
                +        @cpu_shares.value
                +      end
                +
                @@ -51,4 +76,14 @@
                -                require 'win32ole'
                -                result_set = WIN32OLE.connect("winmgmts://").ExecQuery(
                -                  "select NumberOfCores from Win32_Processor")
                -                result_set.to_enum.collect(&:NumberOfCores).reduce(:+)
                +                # Get-CimInstance introduced in PowerShell 3 or earlier: https://learn.microsoft.com/en-us/previous-versions/powershell/module/cimcmdlets/get-ciminstance?view=powershell-3.0
                +                result = run('powershell -command "Get-CimInstance -ClassName Win32_Processor -Property NumberOfCores | Select-Object -Property NumberOfCores"')
                +                if !result || $?.exitstatus != 0
                +                  # fallback to deprecated wmic for older systems
                +                  result = run("wmic cpu get NumberOfCores")
                +                end
                +                if !result || $?.exitstatus != 0
                +                  # Bail out if both commands returned something unexpected
                +                  processor_count
                +                else
                +                  # powershell: "\nNumberOfCores\n-------------\n            4\n\n\n"
                +                  # wmic:       "NumberOfCores  \n\n4              \n\n\n\n"
                +                  result.scan(/\d+/).map(&:to_i).reduce(:+)
                +                end
                @@ -62,0 +98,39 @@
                +
                +      def run(command)
                +        IO.popen(command, &:read)
                +      rescue Errno::ENOENT
                +      end
                +
                +      def compute_cpu_quota
                +        if RbConfig::CONFIG["target_os"].include?("linux")
                +          if File.exist?("/sys/fs/cgroup/cpu.max")
                +            # cgroups v2: https://docs.kernel.org/admin-guide/cgroup-v2.html#cpu-interface-files
                +            cpu_max = File.read("/sys/fs/cgroup/cpu.max")
                +            return nil if cpu_max.start_with?("max ") # no limit
                +            max, period = cpu_max.split.map(&:to_f)
                +            max / period
                +          elsif File.exist?("/sys/fs/cgroup/cpu,cpuacct/cpu.cfs_quota_us")
                +            # cgroups v1: https://kernel.googlesource.com/pub/scm/linux/kernel/git/glommer/memcg/+/cpu_stat/Documentation/cgroups/cpu.txt
                +            max = File.read("/sys/fs/cgroup/cpu,cpuacct/cpu.cfs_quota_us").to_i
                +            # If the cpu.cfs_quota_us is -1, cgroup does not adhere to any CPU time restrictions
                +            # https://docs.kernel.org/scheduler/sched-bwc.html#management
                +            return nil if max <= 0
                +            period = File.read("/sys/fs/cgroup/cpu,cpuacct/cpu.cfs_period_us").to_f
                +            max / period
                +          end
                +        end
                +      end
                +
                +      def compute_cpu_shares
                +        if RbConfig::CONFIG["target_os"].include?("linux")
                +          if File.exist?("/sys/fs/cgroup/cpu.weight")
                +            # cgroups v2: https://docs.kernel.org/admin-guide/cgroup-v2.html#cpu-interface-files
                +            # Ref: https://github.com/kubernetes/enhancements/tree/master/keps/sig-node/2254-cgroup-v2#phase-1-convert-from-cgroups-v1-settings-to-v2
                +            weight = File.read("/sys/fs/cgroup/cpu.weight").to_f
                +            ((((weight - 1) * 262142) / 9999) + 2) / 1024
                +          elsif File.exist?("/sys/fs/cgroup/cpu/cpu.shares")
                +            # cgroups v1: https://kernel.googlesource.com/pub/scm/linux/kernel/git/glommer/memcg/+/cpu_stat/Documentation/cgroups/cpu.txt
                +            File.read("/sys/fs/cgroup/cpu/cpu.shares").to_f / 1024
                +          end
                +        end
                +      end
                @@ -78,2 +152,2 @@
                -  # occasionally poll this property." Subsequently the result will NOT be
                -  # memoized under JRuby.
                +  # occasionally poll this property." We still memoize this value once under
                +  # JRuby.
                @@ -108,0 +183,36 @@
                +  end
                +
                +  # Number of processors cores available for process scheduling.
                +  # This method takes in account the CPU quota if the process is inside a cgroup with a
                +  # dedicated CPU quota (typically Docker).
                +  # Otherwise it returns the same value as #processor_count but as a Float.
                +  #
                +  # For performance reasons the calculated value will be memoized on the first
                +  # call.
                +  #
                +  # @return [Float] number of available processors
                +  def self.available_processor_count
                +    processor_counter.available_processor_count
                +  end
                +
                +  # The maximum number of processors cores available for process scheduling.
                +  # Returns `nil` if there is no enforced limit, or a `Float` if the
                +  # process is inside a cgroup with a dedicated CPU quota (typically Docker).
                +  #
                +  # Note that nothing prevents setting a CPU quota higher than the actual number of
                +  # cores on the system.
                +  #
                +  # For performance reasons the calculated value will be memoized on the first
                +  # call.
                +  #
                +  # @return [nil, Float] Maximum number of available processors as set by a cgroup CPU quota, or nil if none set
                +  def self.cpu_quota
                +    processor_counter.cpu_quota
                +  end
                +
                +  # The CPU shares requested by the process. For performance reasons the calculated
                +  # value will be memoized on the first call.
                +  #
                +  # @return [Float, nil] CPU shares requested by the process, or nil if not set
                +  def self.cpu_shares
                +    processor_counter.cpu_shares
        lib/concurrent-ruby/concurrent/version.rb
                --- /tmp/d20240814-1965-o19djf/concurrent-ruby-1.2.3/lib/concurrent-ruby/concurrent/version.rb	2024-08-14 02:02:55.590003812 +0000
                +++ /tmp/d20240814-1965-o19djf/concurrent-ruby-1.3.4/lib/concurrent-ruby/concurrent/version.rb	2024-08-14 02:02:55.614003854 +0000
                @@ -2 +2 @@
                -  VERSION = '1.2.3'
                +  VERSION = '1.3.4'

Copy link

gem compare sentry-ruby 5.16.1 5.19.0

Compared versions: ["5.16.1", "5.19.0"]
  DIFFERENT date:
    5.16.1: 2024-01-09 00:00:00 UTC
    5.19.0: 2024-08-13 00:00:00 UTC
  DIFFERENT homepage:
    5.16.1: https://github.com/getsentry/sentry-ruby
    5.19.0: https://github.com/getsentry/sentry-ruby/tree/5.19.0/sentry-ruby
  DIFFERENT metadata:
    5.16.1: {"homepage_uri"=>"https://github.com/getsentry/sentry-ruby", "source_code_uri"=>"https://github.com/getsentry/sentry-ruby", "changelog_uri"=>"https://github.com/getsentry/sentry-ruby/blob/master/CHANGELOG.md"}
    5.19.0: {"homepage_uri"=>"https://github.com/getsentry/sentry-ruby/tree/5.19.0/sentry-ruby", "source_code_uri"=>"https://github.com/getsentry/sentry-ruby/tree/5.19.0/sentry-ruby", "changelog_uri"=>"https://github.com/getsentry/sentry-ruby/blob/5.19.0/CHANGELOG.md", "bug_tracker_uri"=>"https://github.com/getsentry/sentry-ruby/issues", "documentation_uri"=>"http://www.rubydoc.info/gems/sentry-ruby/5.19.0"}
  DIFFERENT rubygems_version:
    5.16.1: 3.1.6
    5.19.0: 3.5.11
  DIFFERENT version:
    5.16.1: 5.16.1
    5.19.0: 5.19.0
  DIFFERENT files:
    5.16.1->5.19.0:
      * Added:
            lib/sentry/attachment.rb +42/-0
            lib/sentry/faraday.rb +77/-0
            lib/sentry/graphql.rb +9/-0
            lib/sentry/interfaces/mechanism.rb +20/-0
            lib/sentry/metrics.rb +56/-0
            lib/sentry/metrics/aggregator.rb +248/-0
            lib/sentry/metrics/configuration.rb +47/-0
            lib/sentry/metrics/counter_metric.rb +25/-0
            lib/sentry/metrics/distribution_metric.rb +25/-0
            lib/sentry/metrics/gauge_metric.rb +35/-0
            lib/sentry/metrics/local_aggregator.rb +53/-0
            lib/sentry/metrics/metric.rb +19/-0
            lib/sentry/metrics/set_metric.rb +28/-0
            lib/sentry/metrics/timing.rb +43/-0
            lib/sentry/threaded_periodic_worker.rb +39/-0
            lib/sentry/utils/http_tracing.rb +41/-0
      * Changed:
            Gemfile +3/-0
            README.md +20/-10
            Rakefile +1/-1
            bin/console +1/-0
            lib/sentry-ruby.rb +34/-3
            lib/sentry/background_worker.rb +1/-1
            lib/sentry/backpressure_monitor.rb +2/-32
            lib/sentry/backtrace.rb +7/-3
            lib/sentry/check_in_event.rb +1/-1
            lib/sentry/client.rb +59/-9
            lib/sentry/configuration.rb +25/-12
            lib/sentry/cron/monitor_schedule.rb +1/-1
            lib/sentry/dsn.rb +1/-1
            lib/sentry/envelope.rb +18/-1
            lib/sentry/error_event.rb +2/-2
            lib/sentry/event.rb +13/-11
            lib/sentry/hub.rb +15/-2
            lib/sentry/integrable.rb +4/-0
            lib/sentry/interface.rb +1/-0
            lib/sentry/interfaces/exception.rb +5/-3
            lib/sentry/interfaces/request.rb +2/-2
            lib/sentry/interfaces/single_exception.rb +6/-4
            lib/sentry/interfaces/stacktrace_builder.rb +8/-0
            lib/sentry/net/http.rb +17/-38
            lib/sentry/propagation_context.rb +9/-8
            lib/sentry/puma.rb +1/-1
            lib/sentry/rack/capture_exceptions.rb +14/-2
            lib/sentry/rake.rb +3/-1
            lib/sentry/redis.rb +2/-1
            lib/sentry/scope.rb +35/-26
            lib/sentry/session.rb +2/-2
            lib/sentry/session_flusher.rb +6/-38
            lib/sentry/span.rb +40/-5
            lib/sentry/test_helper.rb +2/-1
            lib/sentry/transaction.rb +16/-14
            lib/sentry/transaction_event.rb +5/-0
            lib/sentry/transport.rb +14/-22
            lib/sentry/transport/configuration.rb +0/-1
            lib/sentry/utils/argument_checking_helper.rb +6/-0
            lib/sentry/utils/logging_helper.rb +0/-4
            lib/sentry/utils/real_ip.rb +1/-1
            lib/sentry/utils/request_id.rb +1/-1
            lib/sentry/version.rb +1/-1
            sentry-ruby.gemspec +12/-5
  DIFFERENT extra_rdoc_files:
    5.16.1->5.19.0:
      * Changed:
            README.md +20/-10
  DIFFERENT runtime dependencies:
    5.16.1->5.19.0:
      * Added:
            bigdecimal [">= 0"] (runtime)
  DIFFERENT Gemfile dependencies
    5.16.1->5.19.0:
      * Added:
            faraday [">= 0"] (runtime)

Copy link

gem compare --diff sentry-ruby 5.16.1 5.19.0

Diff too large (107210 chars)

Bumps [sentry-ruby](https://github.com/getsentry/sentry-ruby) from 5.16.1 to 5.19.0.
- [Release notes](https://github.com/getsentry/sentry-ruby/releases)
- [Changelog](https://github.com/getsentry/sentry-ruby/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-ruby@5.16.1...5.19.0)

---
updated-dependencies:
- dependency-name: sentry-ruby
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/bundler/sentry-ruby-5.19.0 branch from 41e4e8e to abb4e0a Compare September 9, 2024 05:02
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 30, 2024

Superseded by #673.

@dependabot dependabot bot closed this Sep 30, 2024
@dependabot dependabot bot deleted the dependabot/bundler/sentry-ruby-5.19.0 branch September 30, 2024 02:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies ruby Pull requests that update Ruby code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants