-
-
Notifications
You must be signed in to change notification settings - Fork 284
Sync JNI branch with 9.14.0 #3542
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
3f47ea3
695a030
51520fc
ea06d23
96fefbf
d789735
c41dfe2
13b8895
e3f3ea1
9e2dc30
ffb3fef
55ba4de
e5ae2a6
dc53d48
2f63d89
1661d67
9821ba4
c002f00
f579250
0265ce5
862fe42
2bcb18b
d2356d0
02d3df3
8403e81
7f626a2
e174634
584a4b7
044525d
bb4f1e6
2044293
388c7e1
6e0abbc
dd9cba6
1adf565
6275fbd
a2c8611
5238eef
47e5157
b6df2e3
ccf0795
a909995
628d808
c6bf794
caef694
15eee80
8bfae64
78a22ee
1ce780b
a34fde0
d096f79
53356d8
4e14113
dfb673f
a920b0f
98b3399
cfca825
838a4f6
66e2de3
ccb4ef6
1777727
b469e31
50d0559
3135a81
4cec133
c6897c1
d052aef
78c3c07
7022813
f541fae
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| name: Changelog Preview | ||
| on: | ||
| pull_request: | ||
| types: | ||
| - opened | ||
| - synchronize | ||
| - reopened | ||
| - edited | ||
| - labeled | ||
| - unlabeled | ||
| permissions: | ||
| contents: write | ||
| pull-requests: write | ||
|
|
||
| jobs: | ||
| changelog-preview: | ||
| uses: getsentry/craft/.github/workflows/changelog-preview.yml@v2 | ||
| secrets: inherit | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,5 +1,32 @@ | ||||||
| # Changelog | ||||||
|
|
||||||
| ## 9.14.0 | ||||||
|
|
||||||
| ### Features | ||||||
|
|
||||||
| - Add `enableTombstone` option for improved native crash reporting on Android 12+ ([#3526](https://github.com/getsentry/sentry-dart/pull/3526)) | ||||||
| - When enabled, uses Android's `ApplicationExitInfo.REASON_CRASH_NATIVE` to capture native crashes with more detailed thread information | ||||||
| - Disabled by default | ||||||
|
|
||||||
| ### Fixes | ||||||
|
|
||||||
| - Dont guard user attributes behind `sendDefaultPii` for logs and metrics ([#3524](https://github.com/getsentry/sentry-dart/pull/3524)) | ||||||
|
||||||
| - Dont guard user attributes behind `sendDefaultPii` for logs and metrics ([#3524](https://github.com/getsentry/sentry-dart/pull/3524)) | |
| - Don't guard user attributes behind `sendDefaultPii` for logs and metrics ([#3524](https://github.com/getsentry/sentry-dart/pull/3524)) |
Copilot
AI
Feb 27, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The "Internal Changes" section appears to be missing the opening <details> tag: there is a <summary> followed by a closing </details>, which breaks the Markdown/HTML structure. Please add the opening <details> before the <summary> (consistent with previous versions) or remove the stray closing tag.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| version = 3.38.7 | ||
| version = 3.41.1 | ||
| repo = https://github.com/flutter/flutter |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| /// The SDK version reported to Sentry.io in the submitted events. | ||
| const String sdkVersion = '9.13.0'; | ||
| const String sdkVersion = '9.14.0'; | ||
|
|
||
| /// The package name reported to Sentry.io in the submitted events. | ||
| const String packageName = 'pub:sentry_dio'; |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| /// The SDK version reported to Sentry.io in the submitted events. | ||
| const String sdkVersion = '9.13.0'; | ||
| const String sdkVersion = '9.14.0'; | ||
|
|
||
| /// The package name reported to Sentry.io in the submitted events. | ||
| const String packageName = 'pub:sentry_drift'; |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| /// The SDK version reported to Sentry.io in the submitted events. | ||
| const String sdkVersion = '9.13.0'; | ||
| const String sdkVersion = '9.14.0'; | ||
|
|
||
| /// The package name reported to Sentry.io in the submitted events. | ||
| const String packageName = 'pub:sentry_file'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The YAML indentation under
pull_request.typesis invalid: the- opened/- synchronizeentries must be indented undertypes:. As written, this workflow may fail to parse and won't run.