Skip to content

Commit 3fa6049

Browse files
author
getsentry-bot
committed
Merge branch 'release/10.8.0'
2 parents 21f0f77 + 9b74b05 commit 3fa6049

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# Changelog
22

3+
## 10.8.0
4+
5+
This release bumps the minimum Elixir requirement to 1.13, fixes a few bugs, and introduces **client reports**. Client reports will be sent to Sentry by default, but you can disable them with:
6+
7+
```elixir
8+
config :sentry,
9+
# ...,
10+
send_client_reports: false
11+
```
12+
13+
### Improvements and new features
14+
15+
- Add support for [client reports](https://develop.sentry.dev/sdk/telemetry/client-reports/) (#801) by @savhappy
16+
- Add option for generating custom cron monitor slugs (#803) by @iautom8things
17+
- Improvements to documentation
18+
- Require Elixir 1.13+ (21f0f77e) by @whatyouhide
19+
- Validate that custom HTTP clients return correct stuff (#794) by @savhappy
20+
21+
### Bug fixes
22+
23+
- Fix stacktraces with no frames (#787) by @savhappy
24+
- Special-case Ranch errors in the logger handler for OTP 25 (#818) by @whatyouhide
25+
- Few fixes to `mix sentry.send_test_event`
26+
- Handle Bandit exception when fetching peer data (#814) by @ardhitama
27+
- Support non-exception error values from Oban jobs (#807) by @savhappy
28+
329
## 10.7.1
430

531
### Various fixes & improvements

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Sentry.Mixfile do
22
use Mix.Project
33

4-
@version "10.7.1"
4+
@version "10.8.0"
55
@source_url "https://github.com/getsentry/sentry-elixir"
66

77
def project do

0 commit comments

Comments
 (0)