Update sentry-ruby monorepo to v6.3.1 #57

Open
renovate wants to merge 1 commit from renovate/sentry-ruby-monorepo into main
Collaborator

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
sentry-rails (source, changelog) 6.2.06.3.1 age adoption passing confidence
sentry-ruby (source, changelog) 6.2.06.3.1 age adoption passing confidence

Release Notes

getsentry/sentry-ruby (sentry-rails)

v6.3.1

Compare Source

Bug Fixes
  • Use ActionDispatch::ExceptionWrapper for correct HTTP status code (#​2850)
  • Add explicit dependency on logger gem to fix Ruby 4.0 warning (#​2837)
Internal
  • Add external_propagation_context support (#​2841)

v6.3.0

Compare Source

Features
  • Implement new Sentry.metrics functionality (#​2818)

    The SDK now supports Sentry's new Trace Connected Metrics product.

     Sentry.metrics.count("button.click", 1, attributes: { button_id: "submit" })
     Sentry.metrics.distribution("response.time", 120.5, unit: "millisecond")
     Sentry.metrics.gauge("cpu.usage", 75.2, unit: "percent")
    

    Metrics is enabled by default and only activates once you use the above APIs. To disable completely:

    Sentry.init do |config|
      # ...
      config.enable_metrics = false
    end
    
  • Support for tracing Sequel queries (#​2814)

    require "sentry"
    require "sentry/sequel"
    
    Sentry.init do |config|
      config.enabled_patches << :sequel
    end
    
    DB = Sequel.sqlite
    DB.extension(:sentry)
    
  • Add support for OpenTelemetry messaging/queue system spans (#​2685)

  • Add support for config.std_lib_logger_filter proc (#​2829)

    Sentry.init do |config|
      config.std_lib_logger_filter = proc do |logger, message, severity|
        # Only send ERROR and above messages
        severity == :error || severity == :fatal
      end
    
      config.enabled_patches = [:std_lib_logger]
    end
    
Bug Fixes
  • Handle empty frames case gracefully with local vars (#​2807)
  • Handle more extra attribute types when using extra attributes for structured logging (#​2815)
    # This now works too and the nested hash is dumped to JSON string
    Sentry.logger.info("Hello World", extra: { today: Date.today, user_id: user.id })
    
  • Prevent SDK crash when SDK logging fails (#​2817)
Internal
  • Unify Logs and Metrics implementations (#​2826)
  • Unify LogEventBuffer and MetricEventBuffer logic (#​2830)
  • Add maximum limits on LogEventBuffer (1k) and MetricEventBuffer (10k) for protection from memory blowup (#​2831)
  • Lazily start LogEventBuffer and MetricEventBuffer threads (#​2832)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Adoption](https://docs.renovatebot.com/merge-confidence/) | [Passing](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---|---|---| | [sentry-rails](https://github.com/getsentry/sentry-ruby/tree/6.3.1/sentry-rails) ([source](https://github.com/getsentry/sentry-ruby/tree/HEAD/sentry-rails), [changelog](https://github.com/getsentry/sentry-ruby/blob/6.3.1/CHANGELOG.md)) | `6.2.0` → `6.3.1` | ![age](https://developer.mend.io/api/mc/badges/age/rubygems/sentry-rails/6.3.1?slim=true) | ![adoption](https://developer.mend.io/api/mc/badges/adoption/rubygems/sentry-rails/6.3.1?slim=true) | ![passing](https://developer.mend.io/api/mc/badges/compatibility/rubygems/sentry-rails/6.2.0/6.3.1?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/rubygems/sentry-rails/6.2.0/6.3.1?slim=true) | | [sentry-ruby](https://github.com/getsentry/sentry-ruby/tree/6.3.1/sentry-ruby) ([source](https://github.com/getsentry/sentry-ruby/tree/HEAD/sentry-ruby), [changelog](https://github.com/getsentry/sentry-ruby/blob/6.3.1/CHANGELOG.md)) | `6.2.0` → `6.3.1` | ![age](https://developer.mend.io/api/mc/badges/age/rubygems/sentry-ruby/6.3.1?slim=true) | ![adoption](https://developer.mend.io/api/mc/badges/adoption/rubygems/sentry-ruby/6.3.1?slim=true) | ![passing](https://developer.mend.io/api/mc/badges/compatibility/rubygems/sentry-ruby/6.2.0/6.3.1?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/rubygems/sentry-ruby/6.2.0/6.3.1?slim=true) | --- ### Release Notes <details> <summary>getsentry/sentry-ruby (sentry-rails)</summary> ### [`v6.3.1`](https://github.com/getsentry/sentry-ruby/releases/tag/6.3.1) [Compare Source](https://github.com/getsentry/sentry-ruby/compare/6.3.0...6.3.1) ##### Bug Fixes - Use `ActionDispatch::ExceptionWrapper` for correct HTTP status code ([#&#8203;2850](https://github.com/getsentry/sentry-ruby/pull/2850)) - Add explicit dependency on logger gem to fix Ruby 4.0 warning ([#&#8203;2837](https://github.com/getsentry/sentry-ruby/pull/2837)) ##### Internal - Add external\_propagation\_context support ([#&#8203;2841](https://github.com/getsentry/sentry-ruby/pull/2841)) ### [`v6.3.0`](https://github.com/getsentry/sentry-ruby/releases/tag/6.3.0) [Compare Source](https://github.com/getsentry/sentry-ruby/compare/6.2.0...6.3.0) ##### Features - Implement new `Sentry.metrics` functionality ([#&#8203;2818](https://github.com/getsentry/sentry-ruby/pull/2818)) The SDK now supports Sentry's new [Trace Connected Metrics](https://docs.sentry.io/product/explore/metrics/) product. ```ruby Sentry.metrics.count("button.click", 1, attributes: { button_id: "submit" }) Sentry.metrics.distribution("response.time", 120.5, unit: "millisecond") Sentry.metrics.gauge("cpu.usage", 75.2, unit: "percent") ``` Metrics is enabled by default and only activates once you use the above APIs. To disable completely: ```ruby Sentry.init do |config| # ... config.enable_metrics = false end ``` - Support for tracing `Sequel` queries ([#&#8203;2814](https://github.com/getsentry/sentry-ruby/pull/2814)) ```ruby require "sentry" require "sentry/sequel" Sentry.init do |config| config.enabled_patches << :sequel end DB = Sequel.sqlite DB.extension(:sentry) ``` - Add support for OpenTelemetry messaging/queue system spans ([#&#8203;2685](https://github.com/getsentry/sentry-ruby/pull/2685)) - Add support for `config.std_lib_logger_filter` proc ([#&#8203;2829](https://github.com/getsentry/sentry-ruby/pull/2829)) ```ruby Sentry.init do |config| config.std_lib_logger_filter = proc do |logger, message, severity| # Only send ERROR and above messages severity == :error || severity == :fatal end config.enabled_patches = [:std_lib_logger] end ``` ##### Bug Fixes - Handle empty frames case gracefully with local vars ([#&#8203;2807](https://github.com/getsentry/sentry-ruby/pull/2807)) - Handle more extra attribute types when using `extra` attributes for structured logging ([#&#8203;2815](https://github.com/getsentry/sentry-ruby/pull/2815)) ```ruby # This now works too and the nested hash is dumped to JSON string Sentry.logger.info("Hello World", extra: { today: Date.today, user_id: user.id }) ``` - Prevent SDK crash when SDK logging fails ([#&#8203;2817](https://github.com/getsentry/sentry-ruby/pull/2817)) ##### Internal - Unify Logs and Metrics implementations ([#&#8203;2826](https://github.com/getsentry/sentry-ruby/pull/2826)) - Unify LogEventBuffer and MetricEventBuffer logic ([#&#8203;2830](https://github.com/getsentry/sentry-ruby/pull/2830)) - Add maximum limits on LogEventBuffer (1k) and MetricEventBuffer (10k) for protection from memory blowup ([#&#8203;2831](https://github.com/getsentry/sentry-ruby/pull/2831)) - Lazily start LogEventBuffer and MetricEventBuffer threads ([#&#8203;2832](https://github.com/getsentry/sentry-ruby/pull/2832)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi44MS4wIiwidXBkYXRlZEluVmVyIjoiNDMuNS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Update sentry-ruby monorepo to v6.3.0
All checks were successful
ci/woodpecker/push/test Pipeline was successful
9ab751264e
renovate changed title from Update sentry-ruby monorepo to v6.3.0 to Update sentry-ruby monorepo to v6.3.1 2026-02-11 15:32:18 +00:00
renovate force-pushed renovate/sentry-ruby-monorepo from 9ab751264e
All checks were successful
ci/woodpecker/push/test Pipeline was successful
to 5b5d7dcd6b
All checks were successful
ci/woodpecker/push/test Pipeline was successful
2026-02-11 15:32:18 +00:00
Compare
All checks were successful
ci/woodpecker/push/test Pipeline was successful
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/sentry-ruby-monorepo:renovate/sentry-ruby-monorepo
git switch renovate/sentry-ruby-monorepo

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch main
git merge --no-ff renovate/sentry-ruby-monorepo
git switch renovate/sentry-ruby-monorepo
git rebase main
git switch main
git merge --ff-only renovate/sentry-ruby-monorepo
git switch renovate/sentry-ruby-monorepo
git rebase main
git switch main
git merge --no-ff renovate/sentry-ruby-monorepo
git switch main
git merge --squash renovate/sentry-ruby-monorepo
git switch main
git merge --ff-only renovate/sentry-ruby-monorepo
git switch main
git merge renovate/sentry-ruby-monorepo
git push origin main
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
casper/bsky_handle_provider!57
No description provided.