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.15.0 to 5.15.2 #555

Merged
merged 1 commit into from
Dec 19, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 19, 2023

Bumps sentry-ruby from 5.15.0 to 5.15.2.

Changelog

Sourced from sentry-ruby's changelog.

5.15.2

Bug Fixes

  • Fix sample_rate applying to check-in events #2203

5.15.1

Features

  • Expose configuration.background_worker_max_queue to control thread pool queue size #2195

Bug Fixes

  • Fix Sentry::Cron::MonitorCheckIns monkeypatch keyword arguments #2199
Commits

Dependabot compatibility score

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)

Bumps [sentry-ruby](https://github.com/getsentry/sentry-ruby) from 5.15.0 to 5.15.2.
- [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.15.0...5.15.2)

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies ruby Pull requests that update Ruby code labels Dec 19, 2023
Copy link

Copy link

gem compare sentry-ruby 5.15.0 5.15.2

Compared versions: ["5.15.0", "5.15.2"]
  DIFFERENT date:
    5.15.0: 2023-12-05 00:00:00 UTC
    5.15.2: 2023-12-18 00:00:00 UTC
  DIFFERENT version:
    5.15.0: 5.15.0
    5.15.2: 5.15.2
  DIFFERENT files:
    5.15.0->5.15.2:
      * Changed:
            Gemfile +2/-19
            lib/sentry/background_worker.rb +3/-1
            lib/sentry/client.rb +1/-1
            lib/sentry/configuration.rb +8/-0
            lib/sentry/cron/monitor_check_ins.rb +3/-2
            lib/sentry/version.rb +1/-1
  DIFFERENT Gemfile dependencies
    5.15.0->5.15.2:
      * Deleted
            rake ["~> 12.0"] (runtime)
            rspec ["~> 3.0"] (runtime)
            rspec-retry [">= 0"] (runtime)
            simplecov [">= 0"] (runtime)
            simplecov-cobertura ["~> 1.4"] (runtime)
            rexml [">= 0"] (runtime)
            irb [">= 0"] (runtime)
            ruby-lsp-rspec [">= 0"] (runtime)
            pry [">= 0"] (runtime)

Copy link

gem compare --diff sentry-ruby 5.15.0 5.15.2

Compared versions: ["5.15.0", "5.15.2"]
  DIFFERENT files:
    5.15.0->5.15.2:
      * Changed:
        Gemfile
                --- /tmp/d20231219-2024-433p8d/sentry-ruby-5.15.0/Gemfile	2023-12-19 03:54:05.697948006 +0000
                +++ /tmp/d20231219-2024-433p8d/sentry-ruby-5.15.2/Gemfile	2023-12-19 03:54:05.709948134 +0000
                @@ -15,3 +14,0 @@
                -gem "rake", "~> 12.0"
                -gem "rspec", "~> 3.0"
                -gem "rspec-retry"
                @@ -19,3 +15,0 @@
                -gem "simplecov"
                -gem "simplecov-cobertura", "~> 1.4"
                -gem "rexml"
                @@ -24,13 +17,0 @@
                -ruby_version = Gem::Version.new(RUBY_VERSION)
                -
                -if ruby_version >= Gem::Version.new("2.6.0")
                -  gem "debug", github: "ruby/debug", platform: :ruby
                -  gem "irb"
                -
                -  if ruby_version >= Gem::Version.new("3.0.0")
                -    gem "ruby-lsp-rspec"
                -  end
                -end
                -
                -gem "pry"
                -
                @@ -43,0 +25,2 @@
                +
                +eval_gemfile File.expand_path("../Gemfile", __dir__)
        lib/sentry/background_worker.rb
                --- /tmp/d20231219-2024-433p8d/sentry-ruby-5.15.0/lib/sentry/background_worker.rb	2023-12-19 03:54:05.701948048 +0000
                +++ /tmp/d20231219-2024-433p8d/sentry-ruby-5.15.2/lib/sentry/background_worker.rb	2023-12-19 03:54:05.709948134 +0000
                @@ -15,0 +16,2 @@
                +    DEFAULT_MAX_QUEUE = 30
                +
                @@ -17 +18,0 @@
                -      @max_queue = 30
                @@ -19,0 +21 @@
                +      @max_queue = configuration.background_worker_max_queue
        lib/sentry/client.rb
                --- /tmp/d20231219-2024-433p8d/sentry-ruby-5.15.0/lib/sentry/client.rb	2023-12-19 03:54:05.701948048 +0000
                +++ /tmp/d20231219-2024-433p8d/sentry-ruby-5.15.2/lib/sentry/client.rb	2023-12-19 03:54:05.709948134 +0000
                @@ -51 +51 @@
                -      unless event.is_a?(TransactionEvent) || configuration.sample_allowed?
                +      if event.is_a?(ErrorEvent) && !configuration.sample_allowed?
        lib/sentry/configuration.rb
                --- /tmp/d20231219-2024-433p8d/sentry-ruby-5.15.0/lib/sentry/configuration.rb	2023-12-19 03:54:05.701948048 +0000
                +++ /tmp/d20231219-2024-433p8d/sentry-ruby-5.15.2/lib/sentry/configuration.rb	2023-12-19 03:54:05.709948134 +0000
                @@ -42,0 +43,7 @@
                +    # The maximum queue size for the background worker.
                +    # Jobs will be rejected above this limit.
                +    #
                +    # Default is {BackgroundWorker::DEFAULT_MAX_QUEUE}.
                +    # @return [Integer]
                +    attr_accessor :background_worker_max_queue
                +
                @@ -331,0 +339 @@
                +      self.background_worker_max_queue = BackgroundWorker::DEFAULT_MAX_QUEUE
        lib/sentry/cron/monitor_check_ins.rb
                --- /tmp/d20231219-2024-433p8d/sentry-ruby-5.15.0/lib/sentry/cron/monitor_check_ins.rb	2023-12-19 03:54:05.701948048 +0000
                +++ /tmp/d20231219-2024-433p8d/sentry-ruby-5.15.2/lib/sentry/cron/monitor_check_ins.rb	2023-12-19 03:54:05.713948177 +0000
                @@ -7 +7 @@
                -        def perform(*args)
                +        def perform(*args, **opts)
                @@ -16 +16,2 @@
                -          ret = super
                +          # need to do this on ruby <= 2.6 sadly
                +          ret = method(:perform).super_method.arity == 0 ? super() : super
        lib/sentry/version.rb
                --- /tmp/d20231219-2024-433p8d/sentry-ruby-5.15.0/lib/sentry/version.rb	2023-12-19 03:54:05.709948134 +0000
                +++ /tmp/d20231219-2024-433p8d/sentry-ruby-5.15.2/lib/sentry/version.rb	2023-12-19 03:54:05.717948220 +0000
                @@ -4 +4 @@
                -  VERSION = "5.15.0"
                +  VERSION = "5.15.2"

@dentarg dentarg merged commit 9240907 into main Dec 19, 2023
7 checks passed
@dentarg dentarg deleted the dependabot/bundler/sentry-ruby-5.15.2 branch December 19, 2023 09:09
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.

1 participant