|
2 | 2 |
|
3 | 3 | ## 10.8.0
|
4 | 4 |
|
5 |
| -### Various fixes & improvements |
| 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 |
6 | 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 |
7 | 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 |
8 | 24 | - Special-case Ranch errors in the logger handler for OTP 25 (#818) by @whatyouhide
|
9 |
| -- Only use --check-locked if linting in CI (#816) by @whatyouhide |
10 |
| -- Use config_env/0 instead of Mix.env/0 in docs (#815) by @dvic |
| 25 | +- Few fixes to `mix sentry.send_test_event` |
11 | 26 | - Handle Bandit exception when fetching peer data (#814) by @ardhitama
|
12 |
| -- Refactor and improve docs for client reports (#810) by @whatyouhide |
13 |
| -- Update caching strategy in CI (#809) by @whatyouhide |
14 |
| -- Add support for client reports (#801) by @savhappy |
15 |
| -- Add option for generating custom cron monitor slugs (#803) by @iautom8things |
16 |
| -- Add full end-to-end Phoenix app test (#797) by @solnic |
17 |
| -- Add 10 min timeout to CI (#808) by @solnic |
18 | 27 | - Support non-exception error values from Oban jobs (#807) by @savhappy
|
19 |
| -- Remove --halt-exit-status option when running dialyzer on CI (#804) by @solnic |
20 |
| -- Fix a typo in the docs (#802) by @wladimirgramacho |
21 |
| -- Refactor maybe_log_send_result/2 (#799) by @savhappy |
22 |
| -- Fix our custom test task (#798) by @solnic |
23 |
| -- Always return Sentry.ClientError when possible (#795) by @whatyouhide |
24 |
| -- Validate that custom HTTP clients return correct stuff (#794) by @savhappy |
25 |
| -- Add specs and test for :too_many_retries (#793) by @savhappy |
26 |
| -- Update maybe_log_send_result/2 with proper error (#789) by @savhappy |
27 |
| -- Fix a typo in the README (#791) by @BobbyMcWho |
28 |
| -- Slightly re-haul how we document options (#778) by @savhappy |
29 |
| -- Actually fix empty frames in stacktraces (d79919fd) by @whatyouhide |
30 |
| -- Fix stacktraces with no frames (#787) by @savhappy |
31 | 28 |
|
32 | 29 | ## 10.7.1
|
33 | 30 |
|
|
0 commit comments