Commit 6eac5e4
authored
chore(deps): bump sentry-ruby from 5.28.1 to 6.0.0 (#1121)
Bumps [sentry-ruby](https://github.com/getsentry/sentry-ruby) from
5.28.1 to 6.0.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-ruby/blob/master/CHANGELOG.md">sentry-ruby's
changelog</a>.</em></p>
<blockquote>
<h2>6.0.0</h2>
<h3>Breaking Changes</h3>
<ul>
<li>Drop support for rubies below 2.7 <a
href="https://redirect.github.com/getsentry/sentry-ruby/pull/2743">#2743</a>
<ul>
<li>Drop support for Rails below 5.2.0</li>
<li>Drop support for Sidekiq below 5.0</li>
</ul>
</li>
<li>Remove deprecated <code>config.async</code> <a
href="https://redirect.github.com/getsentry/sentry-ruby/pull/1894">#1894</a></li>
<li>Remove deprecated <code>Sentry::Metrics</code> and
<code>config.metrics</code> and all metrics related code (<a
href="https://redirect.github.com/getsentry/sentry-ruby/pull/2729">#2729</a>)</li>
<li>Remove deprecated
<code>config.capture_exception_frame_locals</code>, use
<code>include_local_variables</code> instead (<a
href="https://redirect.github.com/getsentry/sentry-ruby/pull/2730">#2730</a>)</li>
<li>Remove deprecated <code>config.enable_tracing</code>, use
<code>config.traces_sample_rate = 1.0</code> instead (<a
href="https://redirect.github.com/getsentry/sentry-ruby/pull/2731">#2731</a>)</li>
<li>Remove deprecated <code>config.logger=</code>, use
<code>config.sdk_logger=</code> instead (<a
href="https://redirect.github.com/getsentry/sentry-ruby/pull/2732">#2732</a>)</li>
<li><code>Sentry.logger</code> now always points to the
<code>StructuredLogger</code> (<a
href="https://redirect.github.com/getsentry/sentry-ruby/pull/2752">#2752</a>)</li>
<li>Remove deprecated
<code>Sentry::Rails::Tracing::ActionControllerSubscriber</code> (<a
href="https://redirect.github.com/getsentry/sentry-ruby/pull/2733">#2733</a>)</li>
<li>Remove deprecated <code>Event#configuration</code> (<a
href="https://redirect.github.com/getsentry/sentry-ruby/pull/2740">#2740</a>)</li>
<li>Remove deprecated <code>Sentry::Client#generate_sentry_trace</code>
and <code>Sentry::Client#generate_baggage</code> (<a
href="https://redirect.github.com/getsentry/sentry-ruby/pull/2741">#2741</a>)</li>
<li>Remove <code>Transaction</code> deprecations (<a
href="https://redirect.github.com/getsentry/sentry-ruby/pull/2736">#2736</a>)
<ul>
<li>Remove deprecated constant
<code>Sentry::Transaction::SENTRY_TRACE_REGEXP</code>, use
<code>Sentry::PropagationContext::SENTRY_TRACE_REGEXP</code>
instead</li>
<li>Remove deprecated method
<code>Sentry::Transaction.from_sentry_trace</code>, use
<code>Sentry.continue_trace</code> instead</li>
<li>Remove deprecated method
<code>Sentry::Transaction.extract_sentry_trace</code>, use
<code>Sentry::PropagationContext.extract_sentry_trace</code>
instead</li>
<li>Remove deprecated attribute
<code>Sentry::Transaction.configuration</code></li>
<li>Remove deprecated attribute
<code>Sentry::Transaction.hub</code></li>
<li>Remove deprecated argument <code>hub</code> to
<code>Sentry::Transaction.finish</code></li>
<li>Remove deprecated argument <code>hub</code> to
<code>Sentry::Transaction#initialize</code> (<a
href="https://redirect.github.com/getsentry/sentry-ruby/pull/2739">#2739</a>)</li>
</ul>
</li>
<li>Remove <code>:monotonic_active_support_logger</code> from
<code>config.breadcrumbs_logger</code> (<a
href="https://redirect.github.com/getsentry/sentry-ruby/pull/2717">#2717</a>)</li>
<li>Migrate from to_hash to to_h (<a
href="https://redirect.github.com/getsentry/sentry-ruby/pull/2351">#2351</a>)</li>
<li>Add <code>before_send_check_in</code> for applying to
<code>CheckInEvent</code> (<a
href="https://redirect.github.com/getsentry/sentry-ruby/pull/2703">#2703</a>)</li>
<li>Returning a hash from <code>before_send</code> and
<code>before_send_transaction</code> is no longer supported and will
drop the event.</li>
<li><code>config.enabled_environments</code> now defaults to
<code>nil</code> instead of <code>[]</code> for sending to all
environments (<a
href="https://redirect.github.com/getsentry/sentry-ruby/pull/2716">#2716</a>)</li>
<li>Requests which have response status codes in the inclusive ranges
<code>[(301..303), (305..399), (401..404)]</code> will no longer create
transactions by default. See
<code>config.trace_ignore_status_codes</code> below to control what gets
traced.</li>
<li>Stacktrace truncation for oversized events now takes 500 frames on
each side instead of 250.</li>
</ul>
<h3>Features</h3>
<ul>
<li>
<p>Add <code>config.trace_ignore_status_codes</code> to control which
response codes to ignore for tracing (<a
href="https://redirect.github.com/getsentry/sentry-ruby/pull/2725">#2725</a>)</p>
<p>You can pass in an Array of individual status codes or ranges of
status codes.</p>
<pre lang="ruby"><code>Sentry.init do |config|
# ...
# will ignore 404, 501, 502, 503
config.trace_ignore_status_codes = [404, (501..503)]
end
</code></pre>
</li>
<li>
<p>Add <code>config.profiles_sample_interval</code> to control sampling
frequency (<a
href="https://redirect.github.com/getsentry/sentry-ruby/pull/2745">#2745</a>)</p>
<ul>
<li>Both <code>stackprof</code> and <code>vernier</code> now get sampled
at a default frequency of 101 Hz.</li>
</ul>
</li>
<li>
<p>Request body reading checks for <code>:rewind</code> to match Rack 3
behavior. (<a
href="https://redirect.github.com/getsentry/sentry-ruby/pull/2754">#2754</a>)</p>
</li>
</ul>
<h3>Internal</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/getsentry/sentry-ruby/commit/ecdcac07500cc85d375edf8dc399f7a65e286e72"><code>ecdcac0</code></a>
release: 6.0.0</li>
<li><a
href="https://github.com/getsentry/sentry-ruby/commit/a1bd7e2020e6065287dd91dec3f9817c334a996d"><code>a1bd7e2</code></a>
6.0 major (<a
href="https://redirect.github.com/getsentry/sentry-ruby/issues/2352">#2352</a>)</li>
<li>See full diff in <a
href="https://github.com/getsentry/sentry-ruby/compare/5.28.1...6.0.0">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
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-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
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)
</details>1 file changed
+4
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
731 | 731 | | |
732 | 732 | | |
733 | 733 | | |
734 | | - | |
735 | | - | |
736 | | - | |
737 | | - | |
| 734 | + | |
| 735 | + | |
| 736 | + | |
| 737 | + | |
738 | 738 | | |
739 | 739 | | |
740 | 740 | | |
| |||
0 commit comments