-
Notifications
You must be signed in to change notification settings - Fork 1
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.21.0 #675
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
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/d20241008-2042-w0vr2n/concurrent-ruby-1.2.3/CHANGELOG.md 2024-10-08 02:07:18.384316242 +0000
+++ /tmp/d20241008-2042-w0vr2n/concurrent-ruby-1.3.4/CHANGELOG.md 2024-10-08 02:07:18.407316305 +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/d20241008-2042-w0vr2n/concurrent-ruby-1.2.3/Gemfile 2024-10-08 02:07:18.384316242 +0000
+++ /tmp/d20241008-2042-w0vr2n/concurrent-ruby-1.3.4/Gemfile 2024-10-08 02:07:18.407316305 +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/d20241008-2042-w0vr2n/concurrent-ruby-1.2.3/Rakefile 2024-10-08 02:07:18.384316242 +0000
+++ /tmp/d20241008-2042-w0vr2n/concurrent-ruby-1.3.4/Rakefile 2024-10-08 02:07:18.408316308 +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/d20241008-2042-w0vr2n/concurrent-ruby-1.2.3/lib/concurrent-ruby/concurrent/concurrent_ruby.jar and /tmp/d20241008-2042-w0vr2n/concurrent-ruby-1.3.4/lib/concurrent-ruby/concurrent/concurrent_ruby.jar differ
lib/concurrent-ruby/concurrent/executor/java_executor_service.rb
--- /tmp/d20241008-2042-w0vr2n/concurrent-ruby-1.2.3/lib/concurrent-ruby/concurrent/executor/java_executor_service.rb 2024-10-08 02:07:18.398316280 +0000
+++ /tmp/d20241008-2042-w0vr2n/concurrent-ruby-1.3.4/lib/concurrent-ruby/concurrent/executor/java_executor_service.rb 2024-10-08 02:07:18.421316343 +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/d20241008-2042-w0vr2n/concurrent-ruby-1.2.3/lib/concurrent-ruby/concurrent/utility/processor_counter.rb 2024-10-08 02:07:18.406316302 +0000
+++ /tmp/d20241008-2042-w0vr2n/concurrent-ruby-1.3.4/lib/concurrent-ruby/concurrent/utility/processor_counter.rb 2024-10-08 02:07:18.430316368 +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/d20241008-2042-w0vr2n/concurrent-ruby-1.2.3/lib/concurrent-ruby/concurrent/version.rb 2024-10-08 02:07:18.406316302 +0000
+++ /tmp/d20241008-2042-w0vr2n/concurrent-ruby-1.3.4/lib/concurrent-ruby/concurrent/version.rb 2024-10-08 02:07:18.430316368 +0000
@@ -2 +2 @@
- VERSION = '1.2.3'
+ VERSION = '1.3.4' |
gem compare sentry-ruby 5.16.1 5.21.0 Compared versions: ["5.16.1", "5.21.0"]
DIFFERENT date:
5.16.1: 2024-01-09 00:00:00 UTC
5.21.0: 2024-10-07 00:00:00 UTC
DIFFERENT homepage:
5.16.1: https://github.com/getsentry/sentry-ruby
5.21.0: https://github.com/getsentry/sentry-ruby/tree/5.21.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.21.0: {"homepage_uri"=>"https://github.com/getsentry/sentry-ruby/tree/5.21.0/sentry-ruby", "source_code_uri"=>"https://github.com/getsentry/sentry-ruby/tree/5.21.0/sentry-ruby", "changelog_uri"=>"https://github.com/getsentry/sentry-ruby/blob/5.21.0/CHANGELOG.md", "bug_tracker_uri"=>"https://github.com/getsentry/sentry-ruby/issues", "documentation_uri"=>"http://www.rubydoc.info/gems/sentry-ruby/5.21.0"}
DIFFERENT rubygems_version:
5.16.1: 3.1.6
5.21.0: 3.5.16
DIFFERENT version:
5.16.1: 5.16.1
5.21.0: 5.21.0
DIFFERENT files:
5.16.1->5.21.0:
* Added:
lib/sentry/attachment.rb +40/-0
lib/sentry/envelope/item.rb +88/-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/profiler/helpers.rb +46/-0
lib/sentry/threaded_periodic_worker.rb +39/-0
lib/sentry/utils/env_helper.rb +21/-0
lib/sentry/utils/http_tracing.rb +41/-0
lib/sentry/vernier/output.rb +89/-0
lib/sentry/vernier/profiler.rb +125/-0
* Changed:
Gemfile +6/-0
README.md +20/-10
Rakefile +3/-1
bin/console +2/-0
lib/sentry-ruby.rb +38/-6
lib/sentry/background_worker.rb +1/-1
lib/sentry/backpressure_monitor.rb +2/-32
lib/sentry/backtrace.rb +10/-8
lib/sentry/baggage.rb +7/-7
lib/sentry/breadcrumb/sentry_logger.rb +6/-6
lib/sentry/check_in_event.rb +5/-5
lib/sentry/client.rb +61/-11
lib/sentry/configuration.rb +77/-31
lib/sentry/core_ext/object/deep_dup.rb +1/-1
lib/sentry/cron/monitor_check_ins.rb +3/-1
lib/sentry/cron/monitor_config.rb +1/-1
lib/sentry/cron/monitor_schedule.rb +1/-1
lib/sentry/dsn.rb +4/-4
lib/sentry/envelope.rb +2/-68
lib/sentry/error_event.rb +2/-2
lib/sentry/event.rb +20/-18
lib/sentry/hub.rb +23/-3
lib/sentry/integrable.rb +4/-0
lib/sentry/interface.rb +1/-0
lib/sentry/interfaces/exception.rb +5/-3
lib/sentry/interfaces/request.rb +7/-7
lib/sentry/interfaces/single_exception.rb +9/-7
lib/sentry/interfaces/stacktrace.rb +3/-1
lib/sentry/interfaces/stacktrace_builder.rb +23/-2
lib/sentry/logger.rb +1/-1
lib/sentry/net/http.rb +18/-39
lib/sentry/profiler.rb +25/-56
lib/sentry/propagation_context.rb +10/-9
lib/sentry/puma.rb +1/-1
lib/sentry/rack.rb +2/-2
lib/sentry/rack/capture_exceptions.rb +16/-4
lib/sentry/rake.rb +4/-2
lib/sentry/redis.rb +2/-1
lib/sentry/release_detector.rb +4/-4
lib/sentry/scope.rb +36/-26
lib/sentry/session.rb +2/-2
lib/sentry/session_flusher.rb +7/-39
lib/sentry/span.rb +46/-5
lib/sentry/test_helper.rb +5/-2
lib/sentry/transaction.rb +19/-17
lib/sentry/transaction_event.rb +6/-2
lib/sentry/transport.rb +18/-26
lib/sentry/transport/configuration.rb +0/-1
lib/sentry/transport/http_transport.rb +12/-12
lib/sentry/utils/argument_checking_helper.rb +6/-0
lib/sentry/utils/logging_helper.rb +0/-4
lib/sentry/utils/real_ip.rb +2/-2
lib/sentry/utils/request_id.rb +1/-1
lib/sentry/version.rb +1/-1
sentry-ruby-core.gemspec +3/-1
sentry-ruby.gemspec +15/-6
DIFFERENT extra_rdoc_files:
5.16.1->5.21.0:
* Changed:
README.md +20/-10
DIFFERENT runtime dependencies:
5.16.1->5.21.0:
* Added:
bigdecimal [">= 0"] (runtime)
DIFFERENT Gemfile dependencies
5.16.1->5.21.0:
* Added:
faraday [">= 0"] (runtime) |
|
dependabot
bot
force-pushed
the
dependabot/bundler/sentry-ruby-5.21.0
branch
3 times, most recently
from
October 20, 2024 21:39
8a306f6
to
ea8cbbb
Compare
Bumps [sentry-ruby](https://github.com/getsentry/sentry-ruby) from 5.16.1 to 5.21.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.21.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
bot
force-pushed
the
dependabot/bundler/sentry-ruby-5.21.0
branch
from
October 20, 2024 21:42
ea8cbbb
to
9c56a4f
Compare
#677 will fix the test fail here (we fail due to octokit/octokit.rb#1701) |
The new line read Initializing the Sentry background worker with 4 threads
Not sure it was, found 2e3bcbf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bumps sentry-ruby from 5.16.1 to 5.21.0.
Changelog
Sourced from sentry-ruby's changelog.
... (truncated)
Commits
d56c2bb
release: 5.21.05b1b558
Consistent string freezing (#2422)8dc3d2d
Experimental support for multi-threaded profiling using Vernier (#2372)a070e08
Generalize size limits based on envelope item type (#2421)84bf2cf
release: 5.20.1d96e8e1
Ignore rubocop file in spec files (#2420)34ba320
release: 5.20.0af8fcdd
Prevent Hub from having nil scope and client (#2402)152eb5e
fix: Unable to use sentry when URI contains non-ascii symbols on Net::HTTP tr...0c875e4
Skip concurrent threaded test on jruby (#2415)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually 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)