Skip to content

Bump sentry-rails, sentry-ruby and rails#35

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/bundler/multi-76f018d154
Open

Bump sentry-rails, sentry-ruby and rails#35
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/bundler/multi-76f018d154

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot bot commented on behalf of github Mar 31, 2026

Bumps sentry-rails, sentry-ruby and rails. These dependencies needed to be updated together.
Updates sentry-rails from 5.28.1 to 6.5.0

Changelog

Sourced from sentry-rails's changelog.

6.5.0

New Features ✨

Bug Fixes 🐛

Internal Changes 🔧

6.4.1

Bug Fixes 🐛

6.4.0

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.

... (truncated)

Commits
  • a34b047 release: 6.5.0
  • a1c5282 fix(rails): set mechanism.handled based on error handling status (#2892)
  • cf9e45c fix: Map trilogy database adapter to mysql for Query Insights compatibili...
  • a640799 release: 6.4.1
  • 66c2ad1 fix(rails): Track request queue time in Rails middleware (#2877)
  • 38b827d release: 6.4.0
  • 783250e fix(rails): use ActionDispatch::ExceptionWrapper for correct HTTP status co...
  • babf7aa release: 6.3.0
  • 854f4ca Handle more extra attribute types when logging (#2815)
  • 9ce51e3 Automatic collection of Sequel queries (#2814)
  • Additional commits viewable in compare view

Updates sentry-ruby from 5.28.1 to 6.5.0

Changelog

Sourced from sentry-ruby's changelog.

6.5.0

New Features ✨

Bug Fixes 🐛

Internal Changes 🔧

6.4.1

Bug Fixes 🐛

6.4.0

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.

... (truncated)

Commits
  • a34b047 release: 6.5.0
  • d61d271 fix: Copy event processors on Scope#dup (#2893)
  • 8205acb fix(release-detector): Prefer HEROKU_BUILD_COMMIT over deprecated HEROKU_SLUG...
  • 2c1c8b7 feat(transport): Handle HTTP 413 response for oversized envelopes (#2885)
  • 5685885 fix: Don't transform attributes in place in metrics (#2883)
  • d8352b6 test: fix flaky request timing tests (#2882)
  • cfcab4b feat: Implement strict trace continuation (#2872)
  • a640799 release: 6.4.1
  • 66c2ad1 fix(rails): Track request queue time in Rails middleware (#2877)
  • 38b827d release: 6.4.0
  • Additional commits viewable in compare view

Updates rails from 8.1.2 to 8.1.3

Release notes

Sourced from rails's releases.

8.1.3

Active Support

  • Fix JSONGemCoderEncoder to correctly serialize custom object hash keys.

    When hash keys are custom objects whose as_json returns a Hash, the encoder now calls to_s on the original key object instead of on the as_json result.

    Before: hash = {CustomKey.new(123) => "value"} hash.to_json # => {"{:id=>123}":"value"}

    After: hash.to_json # => {"custom_123":"value"}

    Dan Sharp

  • Fix inflections to better handle overlapping acronyms.

    ActiveSupport::Inflector.inflections(:en) do |inflect|
      inflect.acronym "USD"
      inflect.acronym "USDC"
    end
    "USDC".underscore # => "usdc"

    Said Kaldybaev

  • Silence Dalli 4.0+ warning when using ActiveSupport::Cache::MemCacheStore.

    zzak

Active Model

  • Fix Ruby 4.0 delegator warning when calling inspect on attributes.

    Hammad Khan

  • Fix NoMethodError when deserialising Type::Integer objects marshalled under Rails 8.0.

    The performance optimisation that replaced @range with @max/@min broke Marshal compatibility. Objects serialised under 8.0 (with @range) and deserialised under 8.1 (expecting @max/@min) would crash with undefined method '<=' for nil because Marshal.load restores instance variables without calling initialize.

... (truncated)

Commits
  • fa8f081 Preparing for 8.1.3 release
  • 63cef3d Merge branch '8-1-sec' into 8-1-stable
  • 1db4b89 Preparing for 8.1.2.1 release
  • 1c7d1cf Update changelog
  • e91694b Update CHANGELOG (8.1 only)
  • 6752711 Fix XSS in debug exceptions copy-to-clipboard
  • 63f5ad8 Skip blank attribute names in Action View tag helpers
  • 8c9676b Prevent glob injection in ActiveStorage DiskService#delete_prefixed
  • 9b06fbc Prevent path traversal in ActiveStorage DiskService
  • ec1a0e2 Improve performance of NumberToDelimitedConverter
  • 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 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-rails](https://github.com/getsentry/sentry-ruby), [sentry-ruby](https://github.com/getsentry/sentry-ruby) and [rails](https://github.com/rails/rails). These dependencies needed to be updated together.

Updates `sentry-rails` from 5.28.1 to 6.5.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.28.1...6.5.0)

Updates `sentry-ruby` from 5.28.1 to 6.5.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.28.1...6.5.0)

Updates `rails` from 8.1.2 to 8.1.3
- [Release notes](https://github.com/rails/rails/releases)
- [Commits](rails/rails@v8.1.2...v8.1.3)

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

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 Mar 31, 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.

0 participants