Skip to content

Update dependency sentry to v12#1834

Open
renovate[bot] wants to merge 1 commit intodevelopfrom
renovate/demo-sentry-12.x
Open

Update dependency sentry to v12#1834
renovate[bot] wants to merge 1 commit intodevelopfrom
renovate/demo-sentry-12.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 25, 2026

This PR contains the following updates:

Package Type Update Change
sentry (source) prod major ~> 11.0~> 12.0

Release Notes

getsentry/sentry-elixir (sentry)

v12.0.0

Compare Source

Logs & Telemetry Processor

Support for Structured Logs is here! 🎉 To enable:

config :sentry,
  # your config...
  enable_logs: true # <- add this!

Log events are sent to Sentry using the new TelemetryProcessor backend. You can enable it for other types of events via configuration:

config :sentry,
  # your config...
  enable_logs: true,
  telemetry_processor_categories: [:log, :error, :check_in, :transaction] # <- add this

This will become the default backend eventually, please try it out and report any issues!

You can learn more about the Telemetry Processor in our official documentation.

Related Pull Requests
Other new features
  • Support for Distributed Tracing (957)
  • Support for LiveView spans captured under single trace root (#​977)
  • Add should_report_error_callback option to Oban.ErrorReporter for flexible error reporting logic (#​832)
  • Handle HTTP 413 responses for oversized envelopes (#​982)
Bug Fixes
  • Wrong app_name used by Igniter in prod.exs (#​972)

    This requires configuring a custom propagator:

    # Configure OpenTelemetry to use Sentry propagator for distributed tracing
    config :opentelemetry,
      text_map_propagators: [
        :trace_context,
        :baggage,
        Sentry.OpenTelemetry.Propagator
      ]
Various improvements
  • Switch default HTTP client from Hackney to Finch (#​897)

  • :source_code_exclude_patterns support for OTP-28.0 (#​965)

    For people on OTP 28.1

    All you need is to use ~r/foo/E instead of ~r/foo/ in your config files. For example:

    config :sentry,
      enable_source_code_context: true,
      root_source_code_paths: [File.cwd!()],
      source_code_exclude_patterns: [~r/_build/E, ~r/deps/E, ~r/priv/E, ~r/test/E]
    For people on OTP 28.0

    You can convert your regexps for source_code_exclude_patterns config to strings:

    config :sentry,
      enable_source_code_context: true,
      root_source_code_paths: [File.cwd!()],
      source_code_exclude_patterns: ["/_build/", "/deps/", "/priv/", "/test/"]

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 this update again.


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

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added demo Changes and features added to backpex demo application dependencies Pull requests that update a dependency file elixir Pull requests that update Elixir code ignore-for-release Should not appear in releas notes labels Feb 25, 2026
@renovate renovate bot requested a review from Flo0807 February 25, 2026 20:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

demo Changes and features added to backpex demo application dependencies Pull requests that update a dependency file elixir Pull requests that update Elixir code ignore-for-release Should not appear in releas notes

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants