Skip to content
Merged
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
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,40 @@
# Changelog

## Unreleased

### Features

- Trace connected metrics ([#3450](https://github.com/getsentry/sentry-dart/pull/3450))
- This feature is enabled by default.
- To send metrics use the following APIs:
- `Sentry.metrics.gauge(...)`
- `Sentry.metrics.count(...)`
- `Sentry.metrics.distribution(...)`
- For more details read the [Flutter metrics documentation](https://docs.sentry.io/platforms/dart/guides/flutter/metrics/).
- Add `captureNativeFailedRequests` option for iOS/macOS ([#3472](https://github.com/getsentry/sentry-dart/pull/3472))
- This option allows controlling native HTTP error capturing independently from `captureFailedRequests`.
- When `null` (the default), it falls back to `captureFailedRequests` for backwards compatibility.
- Set to `false` to disable native failed request capturing while keeping Dart-side capturing enabled.

### Fixes

- Catch client exceptions in HttpTransport.send ([#3490](https://github.com/getsentry/sentry-dart/pull/3490))

### Dependencies

- Bump Android SDK from v8.28.0 to v8.30.0 ([#3451](https://github.com/getsentry/sentry-dart/pull/3451))
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8300)
- [diff](https://github.com/getsentry/sentry-java/compare/8.28.0...8.30.0)

<details>
<summary><b>Internal Changes</b></summary>

- Refactor Logging API to be consistent with Metrics ([#3463](https://github.com/getsentry/sentry-dart/pull/3463))
- Remove deprecated `beforeMetricCallback` from options ([#3484](https://github.com/getsentry/sentry-dart/pull/3450))
- Add span factory to allow swappable span backends in integrations ([#3488](https://github.com/getsentry/sentry-dart/pull/3450))
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

Same here, is this relevant for SDK users?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

Updated it to be collapsed by default (same as in JS changelogs)


</details>

## 9.11.0-beta.2

### Fixes
Expand Down