Update sentry-ruby monorepo to v6.5.0 #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.5.0 age adoption passing confidence
sentry-ruby (source, changelog) 6.2.06.5.0 age adoption passing confidence

Release Notes

getsentry/sentry-ruby (sentry-rails)

v6.5.0

Compare Source

New Features
Bug Fixes 🐛
Internal Changes 🔧

v6.4.1

Compare Source

Bug Fixes 🐛

v6.4.0

Compare Source

Features
  • Add support for OTLP ingestion in sentry-opentelemetry (#​2853)

    Sentry now has first class OTLP ingestion capabilities.

    Sentry.init do |config|
      ## ...
      config.otlp.enabled = true
    end
    

    Under the hood, this will setup:

    • An OpenTelemetry::Exporter that will automatically set up the OTLP ingestion endpoint from your DSN
      • You can turn this off with config.otlp.setup_otlp_traces_exporter = false to setup your own exporter
    • An OTLPPropagator that ensures Distributed Tracing works
      • You can turn this off with config.otlp.setup_propagator = false
    • Trace/Span linking for all other Sentry events such as Errors, Logs, Crons and Metrics

    If you were using the SpanProcessor before, we recommend migrating over to config.otlp since it's a much simpler setup.

  • Treat Sidekiq nil retry as true (#​2864)

  • Queue time capture for Rack (#​2838)

Bug Fixes
  • Fix MetricEvent timestamp serialization to float (#​2862)
  • Fix CGI imports for ruby 4.x (#​2863)
  • Always include scope user data in telemetry (#​2866)

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.5.0/sentry-rails) ([source](https://github.com/getsentry/sentry-ruby/tree/HEAD/sentry-rails), [changelog](https://github.com/getsentry/sentry-ruby/blob/6.5.0/CHANGELOG.md)) | `6.2.0` → `6.5.0` | ![age](https://developer.mend.io/api/mc/badges/age/rubygems/sentry-rails/6.5.0?slim=true) | ![adoption](https://developer.mend.io/api/mc/badges/adoption/rubygems/sentry-rails/6.5.0?slim=true) | ![passing](https://developer.mend.io/api/mc/badges/compatibility/rubygems/sentry-rails/6.2.0/6.5.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/rubygems/sentry-rails/6.2.0/6.5.0?slim=true) | | [sentry-ruby](https://github.com/getsentry/sentry-ruby/tree/6.5.0/sentry-ruby) ([source](https://github.com/getsentry/sentry-ruby/tree/HEAD/sentry-ruby), [changelog](https://github.com/getsentry/sentry-ruby/blob/6.5.0/CHANGELOG.md)) | `6.2.0` → `6.5.0` | ![age](https://developer.mend.io/api/mc/badges/age/rubygems/sentry-ruby/6.5.0?slim=true) | ![adoption](https://developer.mend.io/api/mc/badges/adoption/rubygems/sentry-ruby/6.5.0?slim=true) | ![passing](https://developer.mend.io/api/mc/badges/compatibility/rubygems/sentry-ruby/6.2.0/6.5.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/rubygems/sentry-ruby/6.2.0/6.5.0?slim=true) | --- ### Release Notes <details> <summary>getsentry/sentry-ruby (sentry-rails)</summary> ### [`v6.5.0`](https://github.com/getsentry/sentry-ruby/releases/tag/6.5.0) [Compare Source](https://github.com/getsentry/sentry-ruby/compare/6.4.1...6.5.0) ##### New Features ✨ - (otlp) Add collector\_url option to OTLP integration by [@&#8203;sl0thentr0py](https://github.com/sl0thentr0py) in [#&#8203;2887](https://github.com/getsentry/sentry-ruby/pull/2887) - (release-detector) Prefer HEROKU\_BUILD\_COMMIT over deprecated HEROKU\_SLUG\_COMMIT by [@&#8203;ericapisani](https://github.com/ericapisani) in [#&#8203;2886](https://github.com/getsentry/sentry-ruby/pull/2886) - Implement strict trace continuation by [@&#8203;giortzisg](https://github.com/giortzisg) in [#&#8203;2872](https://github.com/getsentry/sentry-ruby/pull/2872) ##### Bug Fixes 🐛 - (rails) Set mechanism.handled based on error handling status by [@&#8203;solnic](https://github.com/solnic) in [#&#8203;2892](https://github.com/getsentry/sentry-ruby/pull/2892) - Copy event processors on Scope#dup by [@&#8203;sl0thentr0py](https://github.com/sl0thentr0py) in [#&#8203;2893](https://github.com/getsentry/sentry-ruby/pull/2893) - Map `trilogy` database adapter to `mysql` for Query Insights compatibility by [@&#8203;krismichalski](https://github.com/krismichalski) in [#&#8203;2656](https://github.com/getsentry/sentry-ruby/pull/2656) - Don't transform attributes in place in metrics by [@&#8203;sl0thentr0py](https://github.com/sl0thentr0py) in [#&#8203;2883](https://github.com/getsentry/sentry-ruby/pull/2883) ##### Internal Changes 🔧 - (transport) Handle HTTP 413 response for oversized envelopes by [@&#8203;sl0thentr0py](https://github.com/sl0thentr0py) in [#&#8203;2885](https://github.com/getsentry/sentry-ruby/pull/2885) ### [`v6.4.1`](https://github.com/getsentry/sentry-ruby/releases/tag/6.4.1) [Compare Source](https://github.com/getsentry/sentry-ruby/compare/6.4.0...6.4.1) ##### Bug Fixes 🐛 - (rails) Track request queue time in Rails middleware by [@&#8203;dingsdax](https://github.com/dingsdax) in [#&#8203;2877](https://github.com/getsentry/sentry-ruby/pull/2877) ### [`v6.4.0`](https://github.com/getsentry/sentry-ruby/releases/tag/6.4.0) [Compare Source](https://github.com/getsentry/sentry-ruby/compare/6.3.1...6.4.0) ##### Features - Add support for OTLP ingestion in `sentry-opentelemetry` ([#&#8203;2853](https://github.com/getsentry/sentry-ruby/pull/2853)) Sentry now has first class [OTLP ingestion](https://docs.sentry.io/concepts/otlp/) capabilities. ```ruby Sentry.init do |config| ## ... config.otlp.enabled = true end ``` Under the hood, this will setup: - An `OpenTelemetry::Exporter` that will automatically set up the OTLP ingestion endpoint from your DSN - You can turn this off with `config.otlp.setup_otlp_traces_exporter = false` to setup your own exporter - An `OTLPPropagator` that ensures Distributed Tracing works - You can turn this off with `config.otlp.setup_propagator = false` - Trace/Span linking for all other Sentry events such as Errors, Logs, Crons and Metrics If you were using the `SpanProcessor` before, we recommend migrating over to `config.otlp` since it's a much simpler setup. - Treat Sidekiq nil retry as true ([#&#8203;2864](https://github.com/getsentry/sentry-ruby/pull/2864)) - Queue time capture for Rack ([#&#8203;2838](https://github.com/getsentry/sentry-ruby/pull/2838)) ##### Bug Fixes - Fix `MetricEvent` timestamp serialization to float ([#&#8203;2862](https://github.com/getsentry/sentry-ruby/pull/2862)) - Fix CGI imports for ruby 4.x ([#&#8203;2863](https://github.com/getsentry/sentry-ruby/pull/2863)) - Always include scope user data in telemetry ([#&#8203;2866](https://github.com/getsentry/sentry-ruby/pull/2866)) ### [`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:eyJjcmVhdGVkSW5WZXIiOiI0Mi44MS4wIiwidXBkYXRlZEluVmVyIjoiNDMuNzMuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
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
renovate changed title from Update sentry-ruby monorepo to v6.3.1 to Update sentry-ruby monorepo to v6.4.0 2026-02-25 12:33:03 +00:00
renovate force-pushed renovate/sentry-ruby-monorepo from 5b5d7dcd6b
All checks were successful
ci/woodpecker/push/test Pipeline was successful
to 3a6ae00bfb
All checks were successful
ci/woodpecker/push/test Pipeline was successful
2026-02-25 12:33:03 +00:00
Compare
renovate changed title from Update sentry-ruby monorepo to v6.4.0 to Update sentry-ruby monorepo to v6.4.1 2026-03-02 13:02:30 +00:00
renovate force-pushed renovate/sentry-ruby-monorepo from 3a6ae00bfb
All checks were successful
ci/woodpecker/push/test Pipeline was successful
to 602ccc2e0b
All checks were successful
ci/woodpecker/push/test Pipeline was successful
2026-03-02 13:02:32 +00:00
Compare
renovate changed title from Update sentry-ruby monorepo to v6.4.1 to Update sentry-ruby monorepo to v6.5.0 2026-03-16 14:32:27 +00:00
renovate force-pushed renovate/sentry-ruby-monorepo from 602ccc2e0b
All checks were successful
ci/woodpecker/push/test Pipeline was successful
to d333b2c20f
All checks were successful
ci/woodpecker/push/test Pipeline was successful
2026-03-16 14:32:27 +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.