Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 16, 2026

Bumps the sentry group with 2 updates: sentry-rails and sentry-ruby.

Updates sentry-rails from 6.2.0 to 6.3.0

Changelog

Sourced from sentry-rails's changelog.

6.3.0

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

... (truncated)

Commits

Updates sentry-ruby from 6.2.0 to 6.3.0

Changelog

Sourced from sentry-ruby's changelog.

6.3.0

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

... (truncated)

Commits
  • babf7aa release: 6.3.0
  • 8c43650 Enable metrics by default (#2835)
  • 9cd6a06 Lazily start TelemetryEventBuffer threads (#2832)
  • 8db45ed Max drop limit for TelemetryEventBuffer after which we completely drop events...
  • a354683 Unify LogEventBuffer and MetricEventBuffer logic (#2830)
  • 8b8bad5 feat(std_lib_logger): add support for filtering (#2829)
  • 846c2ba Unify Logs and Metrics implementations (#2826)
  • c11a499 fix: prevent SDK crash when SDK logging fails (#2817)
  • 854f4ca Handle more extra attribute types when logging (#2815)
  • 4fcb941 Implement new Sentry.metrics functionality (#2818)
  • Additional commits viewable in compare view

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the sentry group with 2 updates: [sentry-rails](https://github.com/getsentry/sentry-ruby) and [sentry-ruby](https://github.com/getsentry/sentry-ruby).


Updates `sentry-rails` from 6.2.0 to 6.3.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@6.2.0...6.3.0)

Updates `sentry-ruby` from 6.2.0 to 6.3.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@6.2.0...6.3.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code labels Jan 16, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file ruby Pull requests that update Ruby code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant