Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,24 @@
## Unreleased
## 12.0.0

#### Features
#### New features

- Support for Distributed Tracing ([957](https://github.com/getsentry/sentry-elixir/pull/957))

This requires configuring a custom propagator:

```elixir
# 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](https://github.com/getsentry/sentry-elixir/pull/897))
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think we should release with Finch being non optional:

{:finch, "~> 0.19.0"},

Can we make it optional: true first?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good point! Will update

- `:source_code_exclude_patterns` support for OTP-28.0 ([#965](https://github.com/getsentry/sentry-elixir/pull/965))
##### For people on OTP 28.1

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Sentry.Mixfile do
use Mix.Project

@version "11.0.4"
@version "12.0.0"
@source_url "https://github.com/getsentry/sentry-elixir"

def project do
Expand Down
Loading