Skip to content
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

chore: flutter symbol collector CLI tool #1673

Merged
merged 48 commits into from Oct 30, 2023
Merged

Conversation

vaind
Copy link
Collaborator

@vaind vaind commented Oct 11, 2023

Collect Flutter debug symbols and upload them to Sentry for symbolication.

closes #1613

This PR adds a dart command line app that is intended to be run from CI to collect and upload Flutter symbols from Flutter's gcloud storage bucket to Sentry's symbol-collector. This way, users will have automatic symbolication of Flutter Framework stack frames (assuming they have the builtin Sentry debug servers enabled)

Note: Debug images for all stable Flutter versions since v3.0.0 have already been uploaded to Sentry symbol server and are being used in production. This PR adds a tool and CI job to keep them updated with new versions periodically.

@codecov
Copy link

codecov bot commented Oct 11, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

📢 Thoughts on this report? Let us know!.

@vaind vaind force-pushed the feat/flutter-symbol-upload branch 7 times, most recently from bf123cf to 0035dd4 Compare October 13, 2023 15:41
@kuhnroyal
Copy link
Contributor

Would that work for On-Prem Sentry as well?

@vaind vaind force-pushed the feat/flutter-symbol-upload branch 2 times, most recently from 298fc34 to 7d03210 Compare October 24, 2023 20:15
@github-actions
Copy link
Contributor

github-actions bot commented Oct 24, 2023

Android Performance metrics 🚀

  Plain With Sentry Diff
Startup time 378.10 ms 457.92 ms 79.82 ms
Size 6.27 MiB 7.20 MiB 958.73 KiB

Baseline results on branch: main

Startup times

Revision Plain With Sentry Diff
48e79fd 354.22 ms 391.46 ms 37.24 ms
c9d3212 301.34 ms 361.58 ms 60.24 ms
8e133ad 360.08 ms 402.82 ms 42.74 ms
7ade5af 341.04 ms 386.84 ms 45.80 ms
aed5947 295.70 ms 348.18 ms 52.48 ms
8ced2dc 295.58 ms 336.49 ms 40.91 ms
453e1bc 320.41 ms 372.73 ms 52.32 ms
280ab9f 316.46 ms 372.98 ms 56.52 ms
d883d62 330.15 ms 378.48 ms 48.33 ms
ebfead1 298.44 ms 374.28 ms 75.84 ms

App size

Revision Plain With Sentry Diff
48e79fd 5.94 MiB 6.95 MiB 1.01 MiB
c9d3212 6.16 MiB 7.14 MiB 1010.90 KiB
8e133ad 6.06 MiB 7.03 MiB 990.29 KiB
7ade5af 5.94 MiB 6.95 MiB 1.01 MiB
aed5947 5.94 MiB 6.96 MiB 1.02 MiB
8ced2dc 6.06 MiB 7.03 MiB 990.29 KiB
453e1bc 5.94 MiB 6.95 MiB 1.01 MiB
280ab9f 6.16 MiB 7.14 MiB 1010.85 KiB
d883d62 6.15 MiB 7.13 MiB 999.97 KiB
ebfead1 6.06 MiB 7.03 MiB 989.24 KiB

Previous results on branch: feat/flutter-symbol-upload

Startup times

Revision Plain With Sentry Diff
7d03210 353.57 ms 432.81 ms 79.24 ms

App size

Revision Plain With Sentry Diff
7d03210 6.27 MiB 7.20 MiB 956.49 KiB

@github-actions
Copy link
Contributor

github-actions bot commented Oct 24, 2023

iOS Performance metrics 🚀

  Plain With Sentry Diff
Startup time 1243.55 ms 1267.43 ms 23.88 ms
Size 8.28 MiB 9.34 MiB 1.06 MiB

Baseline results on branch: main

Startup times

Revision Plain With Sentry Diff
9f9f94f 1268.33 ms 1284.73 ms 16.41 ms
69670c9 1269.18 ms 1288.69 ms 19.51 ms
ffae3e3 1215.82 ms 1238.49 ms 22.67 ms
754cdbe 1261.67 ms 1280.88 ms 19.20 ms
6a40d32 1253.50 ms 1266.49 ms 12.99 ms
55cc6ef 1271.92 ms 1281.04 ms 9.12 ms
ddc97ad 1228.02 ms 1232.61 ms 4.59 ms
abcdba3 1257.31 ms 1283.49 ms 26.18 ms
4efee31 1270.33 ms 1285.75 ms 15.42 ms
a1a1545 1270.85 ms 1289.82 ms 18.96 ms

App size

Revision Plain With Sentry Diff
9f9f94f 8.15 MiB 9.15 MiB 1020.76 KiB
69670c9 8.10 MiB 9.08 MiB 1004.49 KiB
ffae3e3 8.28 MiB 9.33 MiB 1.05 MiB
754cdbe 8.29 MiB 9.37 MiB 1.08 MiB
6a40d32 8.29 MiB 9.37 MiB 1.08 MiB
55cc6ef 8.10 MiB 9.18 MiB 1.08 MiB
ddc97ad 8.29 MiB 9.37 MiB 1.08 MiB
abcdba3 8.15 MiB 9.12 MiB 989.76 KiB
4efee31 8.15 MiB 9.12 MiB 991.35 KiB
a1a1545 8.16 MiB 9.17 MiB 1.01 MiB

Previous results on branch: feat/flutter-symbol-upload

Startup times

Revision Plain With Sentry Diff
7d03210 1208.37 ms 1229.88 ms 21.51 ms

App size

Revision Plain With Sentry Diff
7d03210 8.28 MiB 9.34 MiB 1.05 MiB

@vaind
Copy link
Collaborator Author

vaind commented Oct 25, 2023

Would that work for On-Prem Sentry as well?

No, that won't work with on-premise installation without a lot of setup. The tool in this PR only collects symbols and than uses another tool Symbol Collector to upload symbols to a symbol server connected to Sentry.io
I think, for on premise, you're better off with just downloading the flutter symbols (you can adapt this PR's tool to do that without uploading) and then use sentry-cli to upload symbols to your project.

@vaind vaind force-pushed the feat/flutter-symbol-upload branch 4 times, most recently from b5dd51e to e7a20f3 Compare October 26, 2023 09:38
@vaind vaind marked this pull request as ready for review October 26, 2023 09:42
@bruno-garcia
Copy link
Member

Would that work for On-Prem Sentry as well?

This is uploading to Sentry's internal symbols server (SaaS).
The automation done in this PR would work, but it's using https://github.com/getsentry/symbol-collector which writes to GCS and you'd need to host yourself.

Alternatively you could change this to upload to a different format of symbol server: https://docs.sentry.io/platforms/flutter/data-management/debug-files/symbol-servers/

Self Hosted Sentry will hit any configured symbol server. There are different ways in how you collect symbols and what symbol server you host.

Copy link
Contributor

@buenaflor buenaflor left a comment

Choose a reason for hiding this comment

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

I've added 1 or 2 minor comments but overall LGTM, nice! 👍

@vaind vaind merged commit 0eb0b26 into main Oct 30, 2023
69 of 70 checks passed
@vaind vaind deleted the feat/flutter-symbol-upload branch October 30, 2023 11:14
@github-actions
Copy link
Contributor

Fails
🚫 Please consider adding a changelog entry for the next release.

Instructions and example for changelog

Please add an entry to CHANGELOG.md to the "Unreleased" section. Make sure the entry includes this PR's number.

Example:

## Unreleased

- flutter symbol collector CLI tool ([#1673](https://github.com/getsentry/sentry-dart/pull/1673))

If none of the above apply, you can opt out of this check by adding #skip-changelog to the PR description.

Generated by 🚫 dangerJS against 0d8652b

buenaflor added a commit that referenced this pull request Jan 31, 2024
* ci: update actions (#1617)

* Add tests for the Android and iOS plugin  (#1587)

* Normalize `data` properties of `SentryUser` and `Breadcrumb` before sending over method channel (#1591)

* chore(deps): update Cocoa SDK to v8.11.0 (#1626)

Co-authored-by: GitHub <noreply@github.com>

* Tracing without performance (#1621)

* implement propagationContext

* remove sampled and parentSpanId for now

* update changelog

* fix build error

* create new propagation context on startTransaction if tracing is disabled

* remove print

* propagate trace for http requests

* add tracing client test

* fix tests

* format

* fix compile

* tests

* fix analysis score

* fix analysis score

* fix compilation

* fix score

* fix score

* fix score

* fix score

* update tests

* [starfish] add attributes to db spans data (#1629)

* add db attibutes to spans

* change variable names

* update changelog

* update changelog

* update tests

* update imports

* update tests

* remove unused import

* couple dbName to db instance

* format

* use path pub

* don't set dbName to null when db close() is called

* [starfish] add http.request.method attribute to http spans (#1633)

* add http.request.method to http spans

* update changelog

* Fix Android & iOS CI issues (#1627)

* Disable scope sync for cloned scopes (#1628)

* chore: update flutter/scripts/update-android.sh to 6.29.0 (#1630)

Co-authored-by: GitHub <noreply@github.com>

* Discard empty stack frames (#1625)

* Introduce workflow dispatch action for`format` & `fix --apply` (#1575)

* feat/refactor: add cocoa FFI binding (#1631)

* refactor: move native code to its own directory (#1638)

* Log SDK errors to the console if the log level is `fatal` even if `debug` is disabled (#1635)

* Fix autoPerformanceTracingEnabled flag in andorid plugin (#1640)

* Add Sampling Decision to Trace Envelope Header (#1639)

* add sampled flag

* fmt

* update changelog

* redo fmt

* fix tests

* chore: update metrics/flutter.properties to 3.13.3 (#1632)

Co-authored-by: GitHub <noreply@github.com>

* fix: add missing FFI depdendency (#1642)

* release: 7.10.1

* ci: macos integration test (#1645)

* fix: generated cocoa bindings (#1648)

* Update uuid (#1647)

Co-authored-by: Ivan Dlugos <6349682+vaind@users.noreply.github.com>

* chore(deps): update Cocoa SDK to v8.12.0 (#1650)

Co-authored-by: GitHub <noreply@github.com>

* Breadcrumbs for file I/O operations (#1649)

* ci: don't run CI on markdown updates (#1651)

* chore(deps): update Flutter SDK (metrics) to v3.13.6 (#1659)

* chore: update metrics/flutter.properties to 3.13.6

* Update flutter.properties

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: Stefano <stefano.siano@sentry.io>

* chore: update flutter/scripts/update-android.sh to 6.30.0 (#1660)

* chore: update flutter/scripts/update-cocoa.sh to 8.13.0 (#1655)

* Generate class diagrams (#1646)

* Rename `options.devMode` to `options.automatedTestMode` (#1664)

* chore: update flutter/scripts/update-cocoa.sh to 8.13.1 (#1677)

Co-authored-by: GitHub <noreply@github.com>

* chore: update flutter/scripts/update-android.sh to 6.31.0 (#1676)

* chore: update metrics/flutter.properties to 3.13.7 (#1674)

Co-authored-by: GitHub <noreply@github.com>

* Add dependabot (#1670)

* Bump codecov/codecov-action from 3.1.1 to 3.1.4 (#1680)

* chore: update flutter/scripts/update-android.sh to 6.32.0 (#1688)

Co-authored-by: GitHub <noreply@github.com>

* chore(deps): update Cocoa SDK to v8.14.2 (#1691)

* chore: update flutter/scripts/update-cocoa.sh to 8.14.2

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore: update changelog (#1699)

* Update changelog

* release: 7.11.0

* Bump lints from 2.1.1 to 3.0.0 in /sqflite (#1697)

Bumps [lints](https://github.com/dart-lang/lints) from 2.1.1 to 3.0.0.
- [Release notes](https://github.com/dart-lang/lints/releases)
- [Changelog](https://github.com/dart-lang/lints/blob/main/CHANGELOG.md)
- [Commits](dart-lang/lints@v2.1.1...v3.0.0)

---
updated-dependencies:
- dependency-name: lints
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump lints from 2.1.1 to 3.0.0 in /logging (#1696)

Bumps [lints](https://github.com/dart-lang/lints) from 2.1.1 to 3.0.0.
- [Release notes](https://github.com/dart-lang/lints/releases)
- [Changelog](https://github.com/dart-lang/lints/blob/main/CHANGELOG.md)
- [Commits](dart-lang/lints@v2.1.1...v3.0.0)

---
updated-dependencies:
- dependency-name: lints
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump lints from 2.1.1 to 3.0.0 in /file (#1694)

Bumps [lints](https://github.com/dart-lang/lints) from 2.1.1 to 3.0.0.
- [Release notes](https://github.com/dart-lang/lints/releases)
- [Changelog](https://github.com/dart-lang/lints/blob/main/CHANGELOG.md)
- [Commits](dart-lang/lints@v2.1.1...v3.0.0)

---
updated-dependencies:
- dependency-name: lints
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump lints from 2.1.1 to 3.0.0 in /dio (#1693)

Bumps [lints](https://github.com/dart-lang/lints) from 2.1.1 to 3.0.0.
- [Release notes](https://github.com/dart-lang/lints/releases)
- [Changelog](https://github.com/dart-lang/lints/blob/main/CHANGELOG.md)
- [Commits](dart-lang/lints@v2.1.1...v3.0.0)

---
updated-dependencies:
- dependency-name: lints
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: profiling for iOS/macOS (#1611)

Co-authored-by: Bruno Garcia <bruno@brunogarcia.com>
Co-authored-by: Denis Andrašec <denrase@gmail.com>
Co-authored-by: Stefano <stefano.siano91@gmail.com>

* chore: update metrics/flutter.properties to 3.13.9 (#1702)

* chore: log warning if both tracesSampleRate and tracesSampler are set (#1701)

* Log warning if both tracesSampleRate and tracesSampler are set

* Update CHANGELOG

* Update log

* Update CHANGELOG

* chore: flutter symbol collector CLI tool (#1673)

* release: 7.12.0

* Add `SentryNavigatorObserver` current route to `event.app.contexts.viewNames` (#1545)

* fix: coverage not ignoring generated binding.dart (#1707)

* Remove coverage for binding.dart

* Breadcrumbs for database operations (#1656)

* Bump actions/checkout from 3 to 4 (#1683)

Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump ScaCap/action-ktlint from 1.7.1 to 1.8.0 (#1681)

Bumps [ScaCap/action-ktlint](https://github.com/scacap/action-ktlint) from 1.7.1 to 1.8.0.
- [Release notes](https://github.com/scacap/action-ktlint/releases)
- [Commits](ScaCap/action-ktlint@2cf245b...0ff81ef)

---
updated-dependencies:
- dependency-name: ScaCap/action-ktlint
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump styfle/cancel-workflow-action from 0.11.0 to 0.12.0 (#1682)

Bumps [styfle/cancel-workflow-action](https://github.com/styfle/cancel-workflow-action) from 0.11.0 to 0.12.0.
- [Release notes](https://github.com/styfle/cancel-workflow-action/releases)
- [Commits](styfle/cancel-workflow-action@b173b6e...01ce38b)

---
updated-dependencies:
- dependency-name: styfle/cancel-workflow-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Stefano <stefano.siano@sentry.io>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* Bump dart-lang/setup-dart from 1.3.0 to 1.6.0 (#1692)

Bumps [dart-lang/setup-dart](https://github.com/dart-lang/setup-dart) from 1.3.0 to 1.6.0.
- [Release notes](https://github.com/dart-lang/setup-dart/releases)
- [Changelog](https://github.com/dart-lang/setup-dart/blob/main/CHANGELOG.md)
- [Commits](dart-lang/setup-dart@6a218f2...b64355a)

---
updated-dependencies:
- dependency-name: dart-lang/setup-dart
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore: update flutter/scripts/update-android.sh to 6.33.0 (#1710)

Co-authored-by: GitHub <noreply@github.com>

* build(deps): bump subosito/flutter-action from 2.10.0 to 2.12.0 (#1711)

Bumps [subosito/flutter-action](https://github.com/subosito/flutter-action) from 2.10.0 to 2.12.0.
- [Release notes](https://github.com/subosito/flutter-action/releases)
- [Commits](subosito/flutter-action@48cafc2...2783a3f)

---
updated-dependencies:
- dependency-name: subosito/flutter-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Add `attachScreenshotOnlyWhenResumed` to options (#1700)

* chore: update flutter/scripts/update-android.sh to 6.33.1 (#1713)

Co-authored-by: GitHub <noreply@github.com>

* chore: update flutter/scripts/update-cocoa.sh to 8.15.0 (#1712)

Co-authored-by: GitHub <noreply@github.com>

* chore: update flutter/scripts/update-cocoa.sh to 8.15.1 (#1714)

Co-authored-by: GitHub <noreply@github.com>

* fix: unsupported types with expando (#1690)

* Support string, int, double and bool as throwable for expando

* Rename the test file and move it to utils folder{

* Remvoe ffi import

* Update changelog

* Try other url for dio pubspec doc url

* Change doc url of logging pubspec

* Remove unnecessary code

* Update naming

* Rename

* chore: update flutter/scripts/update-cocoa.sh to 8.15.2 (#1717)

Co-authored-by: GitHub <noreply@github.com>

* Parse message field in `PlatformException.message` (#1716)

* Parse message field

* changelog

* Update CHANGELOG.md

* Bump natiginfo/action-detekt-all from 1.21.0 to 1.23.1 (#1684)

* Bump natiginfo/action-detekt-all from 1.21.0 to 1.23.1

Bumps [natiginfo/action-detekt-all](https://github.com/natiginfo/action-detekt-all) from 1.21.0 to 1.23.1.
- [Release notes](https://github.com/natiginfo/action-detekt-all/releases)
- [Commits](natiginfo/action-detekt-all@e01de6f...be3c187)

---
updated-dependencies:
- dependency-name: natiginfo/action-detekt-all
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix braces

* Add missing trailing comma

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump natiginfo/action-detekt-all from 1.23.1 to 1.23.3 (#1722)

Bumps [natiginfo/action-detekt-all](https://github.com/natiginfo/action-detekt-all) from 1.23.1 to 1.23.3.
- [Release notes](https://github.com/natiginfo/action-detekt-all/releases)
- [Commits](natiginfo/action-detekt-all@be3c187...68eb02d)

---
updated-dependencies:
- dependency-name: natiginfo/action-detekt-all
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Remove renderer on Dart:io platforms (#1723)

* Remove renderer on dart:io platforms

* Tests + changelog

* Update CHANGELOG.md

* Fix tests

* fix more tests

* feat: drift apm (#1709)

* draft impl

* improve code

* Add open span

* Refactor to extend lazy database

* Update

* SentryTransactionExecutor

* Implement tracing batch and transactions

* Update tests

* update changelog

* Formatting

* Update workflows

* Update deps

* Fix analyze issues

* Format

* Add example

* Update descriptions

* Fix deps

* Update run commands

* Update workflow

* Update example

* Update workflow

* Format

* Fix dart analyze

* Try changing deps

* Add to craft

* Change to flutter test

* Revert flutter test mock

* change dir manually

* download and extract sqlite.dll for windows

* Try downloading sqlite3

* set up dart

* fix path to file

* use pub get

* Use flutter pub get

* fix

* skip windows test

* fix analyze

* fix drift.yml

* format

* Remove redundant test

* Remove debug print

* update trace origin

* Improvements

* Improvements

* Add to flutter example

* fix: setting the correct locale to contexts with navigatorKey (#1724)

* Add localization with navigatorKey

* Update CHANGELOG

* Update tests

* Update tests

* Format

* Remove unused import

* Apply review improvements

* Update CHANGELOG

* APM for hive (#1672)

* setup sentry hive library

* Add SentryBox with first test

* test added spans

* Add sentry hive impl

* introduce base box to avoid duplication

* implement lazy box test

* expose sentry hive and updata documentation

* add hive to flutter example app

* test throwing in base_box, cleanup

* test lazy box error cases

* test sentry hive impl failures

* run fix & format

* fix test failure race condition

* add hive workflow, update other workflows

* add changelog entry

* remove path+provider from dev_dependencies

* add coverage dev dependency

* fix deprecation warnings

* fix changelog

* move span wrapping on own class to avoid duplication

* add sentry box collection

* test added spans, fix imports

* test throwing code

* fix changelog

* change dbSystem value

* change db system

* remove unneccessary async & await

* Fix analyze

* Formatting

* Add changelog symlink

* Ignore hive coverage

* Create symlink for dartdoc_options

---------

Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* release: 7.13.0

* Fixes release of drift & hive (#1729)

* Add integrations

* Readd changelog

* Add drift and hive to bump versions

* Formatting and analyze

* Update CHANGELOG and fix test

* Update changelog

* fix analyze issue

* release: 7.13.1

* Fix formatting and analyze ci issues (#1733)

* Fix analysis

* Update readme

* run format

* Add drift and hive as craft registry target (#1731)

* Add drift and hive as registry target

* build(deps): bump dart-lang/setup-dart from 1.3.0 to 1.6.0 (#1743)

Bumps [dart-lang/setup-dart](https://github.com/dart-lang/setup-dart) from 1.3.0 to 1.6.0.
- [Release notes](https://github.com/dart-lang/setup-dart/releases)
- [Changelog](https://github.com/dart-lang/setup-dart/blob/main/CHANGELOG.md)
- [Commits](dart-lang/setup-dart@v1.3...b64355a)

---
updated-dependencies:
- dependency-name: dart-lang/setup-dart
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update Android SDK to v6.34.0 (#1746)

* chore: update flutter/scripts/update-android.sh to 6.34.0

* Update CHANGELOG

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* deps: update `package_info_plus` constraints (#1749)

* Update constraints

* Update CHANGELOG

* release: 7.13.2

* build(deps): bump codecov/codecov-action from 3.1.1 to 3.1.4 (#1742)

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3.1.1 to 3.1.4.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](codecov/codecov-action@v3.1.1...eaaf4be)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump styfle/cancel-workflow-action from 0.11.0 to 0.12.0 (#1741)

Bumps [styfle/cancel-workflow-action](https://github.com/styfle/cancel-workflow-action) from 0.11.0 to 0.12.0.
- [Release notes](https://github.com/styfle/cancel-workflow-action/releases)
- [Commits](styfle/cancel-workflow-action@0.11.0...01ce38b)

---
updated-dependencies:
- dependency-name: styfle/cancel-workflow-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump actions/checkout from 3 to 4 (#1740)

Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump VeryGoodOpenSource/very_good_coverage (#1739)

Bumps [VeryGoodOpenSource/very_good_coverage](https://github.com/verygoodopensource/very_good_coverage) from 2.1.0 to 2.2.0.
- [Release notes](https://github.com/verygoodopensource/very_good_coverage/releases)
- [Changelog](https://github.com/VeryGoodOpenSource/very_good_coverage/blob/main/CHANGELOG.md)
- [Commits](VeryGoodOpenSource/very_good_coverage@e5c91bc...3b47542)

---
updated-dependencies:
- dependency-name: VeryGoodOpenSource/very_good_coverage
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore: update scripts/update-symbol-collector.sh to 1.13.0 (#1737)

Co-authored-by: GitHub <noreply@github.com>

* chore: update scripts/update-symbol-collector.sh to 1.13.0 (#1754)

Co-authored-by: GitHub <noreply@github.com>

* Add option to opt out of fatal level for automatically collected errors (#1738)

* build(deps): bump natiginfo/action-detekt-all from 1.23.3 to 1.23.4 (#1758)

Bumps [natiginfo/action-detekt-all](https://github.com/natiginfo/action-detekt-all) from 1.23.3 to 1.23.4.
- [Release notes](https://github.com/natiginfo/action-detekt-all/releases)
- [Commits](natiginfo/action-detekt-all@68eb02d...1349d3d)

---
updated-dependencies:
- dependency-name: natiginfo/action-detekt-all
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update Cocoa SDK to v8.17.0 (#1761)

* chore: update flutter/scripts/update-cocoa.sh to 8.17.0

* Apply format

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump subosito/flutter-action from 2.10.0 to 2.12.0 (#1759)

Bumps [subosito/flutter-action](https://github.com/subosito/flutter-action) from 2.10.0 to 2.12.0.
- [Release notes](https://github.com/subosito/flutter-action/releases)
- [Commits](subosito/flutter-action@v2.10.0...2783a3f)

---
updated-dependencies:
- dependency-name: subosito/flutter-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore: update metrics/flutter.properties to 3.16.1 (#1760)

Co-authored-by: GitHub <noreply@github.com>

* fix(example): web obfuscation not working (#1766)

* Add debug_meta to all events (#1756)

* load_image_list_integration now appends debug_meta info to all non-transaction events with a stacktrace, instead of checking for Exception existence

* chore: Update README to include drift and hive (#1735)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: getsentry-bot <bot@sentry.io>
Co-authored-by: Denis Andrašec <denrase@gmail.com>

* chore: update metrics/flutter.properties to 3.16.2 (#1769)

Co-authored-by: GitHub <noreply@github.com>

* chore(deps): update Cocoa SDK to v8.17.1 (#1771)

* chore: update flutter/scripts/update-cocoa.sh to 8.17.1

* Formatting

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* Add `Hive` breadcrumbs (#1773)

* improvements(example): fix router navigation issue and add improvements (#1767)

* Change http url and add route navigation observer example

* Remove comment

* Improve sample

* Format

* Add padding

* Fix analyze issues

* build(deps): bump actions/setup-java from 3 to 4 (#1772)

Bumps [actions/setup-java](https://github.com/actions/setup-java) from 3 to 4.
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](actions/setup-java@v3...v4)

---
updated-dependencies:
- dependency-name: actions/setup-java
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* docs: add new package release process (#1734)

* add docs

* Add flutter example step

* Add analyze info

* Update

* Update new-package-release-checklist.md

* fix(ci): compile error in example using flutter beta channel (#1783)

* fix ci

* chore(deps): update Cocoa SDK to v8.17.2 (#1787)

* chore: update flutter/scripts/update-cocoa.sh to 8.17.2

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore: update flutter/scripts/update-android.sh to 7.0.0 (#1768)

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* release: 7.14.0

* Add `ConnectivityIntegration` for web (#1765)

* Fix changelog (#1791)

* build(deps): bump actions/upload-artifact from 3 to 4 (#1789)

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* APM for isar (#1726)

* Bump flutter_lints from 2.0.3 to 3.0.0 in /flutter (#1698)

* Bump flutter_lints from 2.0.3 to 3.0.0 in /flutter

Bumps [flutter_lints](https://github.com/flutter/packages/tree/main/packages) from 2.0.3 to 3.0.0.
- [Release notes](https://github.com/flutter/packages/releases)
- [Commits](https://github.com/flutter/packages/commits/pigeon-v3.0.0/packages)

---
updated-dependencies:
- dependency-name: flutter_lints
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Satisfy analyzer

* Satisfy dart analyzer

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore: update metrics/flutter.properties to 3.16.5 (#1793)

Co-authored-by: GitHub <noreply@github.com>

* Bump lints from 2.1.1 to 3.0.0 in /dart (#1695)

* Bump lints from 2.1.1 to 3.0.0 in /dart

Bumps [lints](https://github.com/dart-lang/lints) from 2.1.1 to 3.0.0.
- [Release notes](https://github.com/dart-lang/lints/releases)
- [Changelog](https://github.com/dart-lang/lints/blob/main/CHANGELOG.md)
- [Commits](dart-lang/lints@v2.1.1...v3.0.0)

---
updated-dependencies:
- dependency-name: lints
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* update

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump reactivecircus/android-emulator-runner (#1779)

Bumps [reactivecircus/android-emulator-runner](https://github.com/reactivecircus/android-emulator-runner) from 2.28.0 to 2.29.0.
- [Release notes](https://github.com/reactivecircus/android-emulator-runner/releases)
- [Changelog](https://github.com/ReactiveCircus/android-emulator-runner/blob/main/CHANGELOG.md)
- [Commits](ReactiveCircus/android-emulator-runner@d94c3fb...99a4aac)

---
updated-dependencies:
- dependency-name: reactivecircus/android-emulator-runner
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump subosito/flutter-action from 2.10.0 to 2.12.0 (#1796)

Bumps [subosito/flutter-action](https://github.com/subosito/flutter-action) from 2.10.0 to 2.12.0.
- [Release notes](https://github.com/subosito/flutter-action/releases)
- [Commits](subosito/flutter-action@v2.10.0...2783a3f)

---
updated-dependencies:
- dependency-name: subosito/flutter-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: spotlight support (#1786)

* Implement spotlight support (screenshots are currently disabled and removed from the envelope)

* build(deps): bump VeryGoodOpenSource/very_good_coverage (#1795)

Bumps [VeryGoodOpenSource/very_good_coverage](https://github.com/verygoodopensource/very_good_coverage) from 2.1.0 to 2.2.0.
- [Release notes](https://github.com/verygoodopensource/very_good_coverage/releases)
- [Changelog](https://github.com/VeryGoodOpenSource/very_good_coverage/blob/main/CHANGELOG.md)
- [Commits](VeryGoodOpenSource/very_good_coverage@v2.1.0...3b47542)

---
updated-dependencies:
- dependency-name: VeryGoodOpenSource/very_good_coverage
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump actions/setup-java from 3 to 4 (#1797)

Bumps [actions/setup-java](https://github.com/actions/setup-java) from 3 to 4.
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](actions/setup-java@v3...v4)

---
updated-dependencies:
- dependency-name: actions/setup-java
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update Path Filters (#1763)

* Add app flavor to `flutter_context` (#1799)

* Add app flavor

* fix changelog

* chore(deps): update Android SDK to v7.1.0 (#1788)

* chore: update flutter/scripts/update-android.sh to 7.1.0

* Fix app start

* format

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* Add isar breadcrumbs (#1800)

* chore: update flutter/scripts/update-cocoa.sh to 8.18.0 (#1803)

Co-authored-by: GitHub <noreply@github.com>

* Add `beforeScreenshotCallback` to `SentryFlutterOptions` (#1805)

* fix typo in docs (#1816)

* chore: update metrics/flutter.properties to 3.16.7 (#1814)

Co-authored-by: GitHub <noreply@github.com>

* Add support for `readTransaction` in `sqflite` (#1819)

* ci: disable some tests temporarily (#1835)

* release: 7.15.0

* Accept `Map<String, dynamic>` in `Hint` class (#1807)

* build(deps): bump actions/cache from 3 to 4 (#1833)

Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3...v4)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* proper changelog

* fix

* pin version

* format ktlint

* fix ktlint

* fix ktlint

* fix ktlint

* update detekt baseline

* build(deps): bump dart-lang/setup-dart from 1.6.0 to 1.6.1 (#1817)

Bumps [dart-lang/setup-dart](https://github.com/dart-lang/setup-dart) from 1.6.0 to 1.6.1.
- [Release notes](https://github.com/dart-lang/setup-dart/releases)
- [Changelog](https://github.com/dart-lang/setup-dart/blob/main/CHANGELOG.md)
- [Commits](dart-lang/setup-dart@b64355a...ca7e6fe)

---
updated-dependencies:
- dependency-name: dart-lang/setup-dart
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore(deps): update Flutter SDK (metrics) to v3.16.8 (#1825)

* chore: update metrics/flutter.properties to 3.16.8

* update path

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* feat: tracing without performance for dio (#1837)

* feat: tracing without performance for dio

* chore: update CHANGELOG.md

* chore: reenable testing sentry-dart on windows (#1838)

* enable windows again

* test with chrome

* test with chrome

* reenable windows test

* chore: add isar to craft (#1843)

* add isar

* Update Changelog

* chore(deps): update Cocoa SDK to v8.19.0 (#1844)

* chore: update flutter/scripts/update-cocoa.sh to 8.19.0
---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* feat: Add sentry widget that includes other sentry widgets (#1846)

* add sentry widget

* Update CHANGELOG.md

* Update CHANGELOG.md

* build(deps): bump styfle/cancel-workflow-action from 0.12.0 to 0.12.1 (#1849)

Bumps [styfle/cancel-workflow-action](https://github.com/styfle/cancel-workflow-action) from 0.12.0 to 0.12.1.
- [Release notes](https://github.com/styfle/cancel-workflow-action/releases)
- [Commits](styfle/cancel-workflow-action@01ce38b...85880fa)

---
updated-dependencies:
- dependency-name: styfle/cancel-workflow-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump reactivecircus/android-emulator-runner (#1848)

Bumps [reactivecircus/android-emulator-runner](https://github.com/reactivecircus/android-emulator-runner) from 2.29.0 to 2.30.1.
- [Release notes](https://github.com/reactivecircus/android-emulator-runner/releases)
- [Changelog](https://github.com/ReactiveCircus/android-emulator-runner/blob/main/CHANGELOG.md)
- [Commits](ReactiveCircus/android-emulator-runner@99a4aac...6b0df4b)

---
updated-dependencies:
- dependency-name: reactivecircus/android-emulator-runner
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump codecov/codecov-action from 3.1.4 to 3.1.5 (#1850)

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3.1.4 to 3.1.5.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](codecov/codecov-action@eaaf4be...4fe8c5f)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore(deps): update Android SDK to v7.2.0 (#1815)

* chore: update flutter/scripts/update-android.sh to 7.2.0

* Update podfile

* Update podfile

* Update deployment target

* update

* update

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore(deps): update Flutter SDK (metrics) to v3.16.9 (#1847)

* chore: update metrics/flutter.properties to 3.16.9

* update

* update

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore(deps): update Symbol collector CLI to v1.14.0 (#1827)

* chore: update scripts/update-symbol-collector.sh to 1.14.0

* update

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* Update CHANGELOG.md (#1845)

* chore: update flutter/scripts/update-android.sh to 7.3.0 (#1852)

Co-authored-by: GitHub <noreply@github.com>

* release: 7.16.0

* Update CHANGELOG.md

* Update .craft.yml

* Update resources in readme

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Ivan Dlugos <6349682+vaind@users.noreply.github.com>
Co-authored-by: Denis Andrašec <denrase@gmail.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: getsentry-bot <bot@sentry.io>
Co-authored-by: getsentry-bot <bot@getsentry.com>
Co-authored-by: Jonas Uekötter <ueman@users.noreply.github.com>
Co-authored-by: Stefano <stefano.siano@sentry.io>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Bruno Garcia <bruno@brunogarcia.com>
Co-authored-by: Stefano <stefano.siano91@gmail.com>
Co-authored-by: Oleg Magomedov <69794332+smart7even@users.noreply.github.com>
Co-authored-by: Igor Khramtsov <igor.khramtsov@proton.me>
buenaflor added a commit that referenced this pull request Feb 7, 2024
* ci: update actions (#1617)

* Add tests for the Android and iOS plugin  (#1587)

* Normalize `data` properties of `SentryUser` and `Breadcrumb` before sending over method channel (#1591)

* chore(deps): update Cocoa SDK to v8.11.0 (#1626)

Co-authored-by: GitHub <noreply@github.com>

* Tracing without performance (#1621)

* implement propagationContext

* remove sampled and parentSpanId for now

* update changelog

* fix build error

* create new propagation context on startTransaction if tracing is disabled

* remove print

* propagate trace for http requests

* add tracing client test

* fix tests

* format

* fix compile

* tests

* fix analysis score

* fix analysis score

* fix compilation

* fix score

* fix score

* fix score

* fix score

* update tests

* [starfish] add attributes to db spans data (#1629)

* add db attibutes to spans

* change variable names

* update changelog

* update changelog

* update tests

* update imports

* update tests

* remove unused import

* couple dbName to db instance

* format

* use path pub

* don't set dbName to null when db close() is called

* [starfish] add http.request.method attribute to http spans (#1633)

* add http.request.method to http spans

* update changelog

* Fix Android & iOS CI issues (#1627)

* Disable scope sync for cloned scopes (#1628)

* chore: update flutter/scripts/update-android.sh to 6.29.0 (#1630)

Co-authored-by: GitHub <noreply@github.com>

* Discard empty stack frames (#1625)

* Introduce workflow dispatch action for`format` & `fix --apply` (#1575)

* feat/refactor: add cocoa FFI binding (#1631)

* refactor: move native code to its own directory (#1638)

* Log SDK errors to the console if the log level is `fatal` even if `debug` is disabled (#1635)

* Fix autoPerformanceTracingEnabled flag in andorid plugin (#1640)

* Add Sampling Decision to Trace Envelope Header (#1639)

* add sampled flag

* fmt

* update changelog

* redo fmt

* fix tests

* chore: update metrics/flutter.properties to 3.13.3 (#1632)

Co-authored-by: GitHub <noreply@github.com>

* fix: add missing FFI depdendency (#1642)

* release: 7.10.1

* ci: macos integration test (#1645)

* fix: generated cocoa bindings (#1648)

* Update uuid (#1647)

Co-authored-by: Ivan Dlugos <6349682+vaind@users.noreply.github.com>

* chore(deps): update Cocoa SDK to v8.12.0 (#1650)

Co-authored-by: GitHub <noreply@github.com>

* Breadcrumbs for file I/O operations (#1649)

* ci: don't run CI on markdown updates (#1651)

* chore(deps): update Flutter SDK (metrics) to v3.13.6 (#1659)

* chore: update metrics/flutter.properties to 3.13.6

* Update flutter.properties

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: Stefano <stefano.siano@sentry.io>

* chore: update flutter/scripts/update-android.sh to 6.30.0 (#1660)

* chore: update flutter/scripts/update-cocoa.sh to 8.13.0 (#1655)

* Generate class diagrams (#1646)

* Rename `options.devMode` to `options.automatedTestMode` (#1664)

* chore: update flutter/scripts/update-cocoa.sh to 8.13.1 (#1677)

Co-authored-by: GitHub <noreply@github.com>

* chore: update flutter/scripts/update-android.sh to 6.31.0 (#1676)

* chore: update metrics/flutter.properties to 3.13.7 (#1674)

Co-authored-by: GitHub <noreply@github.com>

* Add dependabot (#1670)

* Bump codecov/codecov-action from 3.1.1 to 3.1.4 (#1680)

* chore: update flutter/scripts/update-android.sh to 6.32.0 (#1688)

Co-authored-by: GitHub <noreply@github.com>

* chore(deps): update Cocoa SDK to v8.14.2 (#1691)

* chore: update flutter/scripts/update-cocoa.sh to 8.14.2

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore: update changelog (#1699)

* Update changelog

* release: 7.11.0

* Bump lints from 2.1.1 to 3.0.0 in /sqflite (#1697)

Bumps [lints](https://github.com/dart-lang/lints) from 2.1.1 to 3.0.0.
- [Release notes](https://github.com/dart-lang/lints/releases)
- [Changelog](https://github.com/dart-lang/lints/blob/main/CHANGELOG.md)
- [Commits](dart-lang/lints@v2.1.1...v3.0.0)

---
updated-dependencies:
- dependency-name: lints
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump lints from 2.1.1 to 3.0.0 in /logging (#1696)

Bumps [lints](https://github.com/dart-lang/lints) from 2.1.1 to 3.0.0.
- [Release notes](https://github.com/dart-lang/lints/releases)
- [Changelog](https://github.com/dart-lang/lints/blob/main/CHANGELOG.md)
- [Commits](dart-lang/lints@v2.1.1...v3.0.0)

---
updated-dependencies:
- dependency-name: lints
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump lints from 2.1.1 to 3.0.0 in /file (#1694)

Bumps [lints](https://github.com/dart-lang/lints) from 2.1.1 to 3.0.0.
- [Release notes](https://github.com/dart-lang/lints/releases)
- [Changelog](https://github.com/dart-lang/lints/blob/main/CHANGELOG.md)
- [Commits](dart-lang/lints@v2.1.1...v3.0.0)

---
updated-dependencies:
- dependency-name: lints
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump lints from 2.1.1 to 3.0.0 in /dio (#1693)

Bumps [lints](https://github.com/dart-lang/lints) from 2.1.1 to 3.0.0.
- [Release notes](https://github.com/dart-lang/lints/releases)
- [Changelog](https://github.com/dart-lang/lints/blob/main/CHANGELOG.md)
- [Commits](dart-lang/lints@v2.1.1...v3.0.0)

---
updated-dependencies:
- dependency-name: lints
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: profiling for iOS/macOS (#1611)

Co-authored-by: Bruno Garcia <bruno@brunogarcia.com>
Co-authored-by: Denis Andrašec <denrase@gmail.com>
Co-authored-by: Stefano <stefano.siano91@gmail.com>

* chore: update metrics/flutter.properties to 3.13.9 (#1702)

* chore: log warning if both tracesSampleRate and tracesSampler are set (#1701)

* Log warning if both tracesSampleRate and tracesSampler are set

* Update CHANGELOG

* Update log

* Update CHANGELOG

* chore: flutter symbol collector CLI tool (#1673)

* release: 7.12.0

* Add `SentryNavigatorObserver` current route to `event.app.contexts.viewNames` (#1545)

* fix: coverage not ignoring generated binding.dart (#1707)

* Remove coverage for binding.dart

* Breadcrumbs for database operations (#1656)

* Bump actions/checkout from 3 to 4 (#1683)

Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump ScaCap/action-ktlint from 1.7.1 to 1.8.0 (#1681)

Bumps [ScaCap/action-ktlint](https://github.com/scacap/action-ktlint) from 1.7.1 to 1.8.0.
- [Release notes](https://github.com/scacap/action-ktlint/releases)
- [Commits](ScaCap/action-ktlint@2cf245b...0ff81ef)

---
updated-dependencies:
- dependency-name: ScaCap/action-ktlint
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump styfle/cancel-workflow-action from 0.11.0 to 0.12.0 (#1682)

Bumps [styfle/cancel-workflow-action](https://github.com/styfle/cancel-workflow-action) from 0.11.0 to 0.12.0.
- [Release notes](https://github.com/styfle/cancel-workflow-action/releases)
- [Commits](styfle/cancel-workflow-action@b173b6e...01ce38b)

---
updated-dependencies:
- dependency-name: styfle/cancel-workflow-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Stefano <stefano.siano@sentry.io>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* Bump dart-lang/setup-dart from 1.3.0 to 1.6.0 (#1692)

Bumps [dart-lang/setup-dart](https://github.com/dart-lang/setup-dart) from 1.3.0 to 1.6.0.
- [Release notes](https://github.com/dart-lang/setup-dart/releases)
- [Changelog](https://github.com/dart-lang/setup-dart/blob/main/CHANGELOG.md)
- [Commits](dart-lang/setup-dart@6a218f2...b64355a)

---
updated-dependencies:
- dependency-name: dart-lang/setup-dart
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore: update flutter/scripts/update-android.sh to 6.33.0 (#1710)

Co-authored-by: GitHub <noreply@github.com>

* build(deps): bump subosito/flutter-action from 2.10.0 to 2.12.0 (#1711)

Bumps [subosito/flutter-action](https://github.com/subosito/flutter-action) from 2.10.0 to 2.12.0.
- [Release notes](https://github.com/subosito/flutter-action/releases)
- [Commits](subosito/flutter-action@48cafc2...2783a3f)

---
updated-dependencies:
- dependency-name: subosito/flutter-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Add `attachScreenshotOnlyWhenResumed` to options (#1700)

* chore: update flutter/scripts/update-android.sh to 6.33.1 (#1713)

Co-authored-by: GitHub <noreply@github.com>

* chore: update flutter/scripts/update-cocoa.sh to 8.15.0 (#1712)

Co-authored-by: GitHub <noreply@github.com>

* chore: update flutter/scripts/update-cocoa.sh to 8.15.1 (#1714)

Co-authored-by: GitHub <noreply@github.com>

* fix: unsupported types with expando (#1690)

* Support string, int, double and bool as throwable for expando

* Rename the test file and move it to utils folder{

* Remvoe ffi import

* Update changelog

* Try other url for dio pubspec doc url

* Change doc url of logging pubspec

* Remove unnecessary code

* Update naming

* Rename

* chore: update flutter/scripts/update-cocoa.sh to 8.15.2 (#1717)

Co-authored-by: GitHub <noreply@github.com>

* Parse message field in `PlatformException.message` (#1716)

* Parse message field

* changelog

* Update CHANGELOG.md

* Bump natiginfo/action-detekt-all from 1.21.0 to 1.23.1 (#1684)

* Bump natiginfo/action-detekt-all from 1.21.0 to 1.23.1

Bumps [natiginfo/action-detekt-all](https://github.com/natiginfo/action-detekt-all) from 1.21.0 to 1.23.1.
- [Release notes](https://github.com/natiginfo/action-detekt-all/releases)
- [Commits](natiginfo/action-detekt-all@e01de6f...be3c187)

---
updated-dependencies:
- dependency-name: natiginfo/action-detekt-all
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix braces

* Add missing trailing comma

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump natiginfo/action-detekt-all from 1.23.1 to 1.23.3 (#1722)

Bumps [natiginfo/action-detekt-all](https://github.com/natiginfo/action-detekt-all) from 1.23.1 to 1.23.3.
- [Release notes](https://github.com/natiginfo/action-detekt-all/releases)
- [Commits](natiginfo/action-detekt-all@be3c187...68eb02d)

---
updated-dependencies:
- dependency-name: natiginfo/action-detekt-all
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Remove renderer on Dart:io platforms (#1723)

* Remove renderer on dart:io platforms

* Tests + changelog

* Update CHANGELOG.md

* Fix tests

* fix more tests

* feat: drift apm (#1709)

* draft impl

* improve code

* Add open span

* Refactor to extend lazy database

* Update

* SentryTransactionExecutor

* Implement tracing batch and transactions

* Update tests

* update changelog

* Formatting

* Update workflows

* Update deps

* Fix analyze issues

* Format

* Add example

* Update descriptions

* Fix deps

* Update run commands

* Update workflow

* Update example

* Update workflow

* Format

* Fix dart analyze

* Try changing deps

* Add to craft

* Change to flutter test

* Revert flutter test mock

* change dir manually

* download and extract sqlite.dll for windows

* Try downloading sqlite3

* set up dart

* fix path to file

* use pub get

* Use flutter pub get

* fix

* skip windows test

* fix analyze

* fix drift.yml

* format

* Remove redundant test

* Remove debug print

* update trace origin

* Improvements

* Improvements

* Add to flutter example

* fix: setting the correct locale to contexts with navigatorKey (#1724)

* Add localization with navigatorKey

* Update CHANGELOG

* Update tests

* Update tests

* Format

* Remove unused import

* Apply review improvements

* Update CHANGELOG

* APM for hive (#1672)

* setup sentry hive library

* Add SentryBox with first test

* test added spans

* Add sentry hive impl

* introduce base box to avoid duplication

* implement lazy box test

* expose sentry hive and updata documentation

* add hive to flutter example app

* test throwing in base_box, cleanup

* test lazy box error cases

* test sentry hive impl failures

* run fix & format

* fix test failure race condition

* add hive workflow, update other workflows

* add changelog entry

* remove path+provider from dev_dependencies

* add coverage dev dependency

* fix deprecation warnings

* fix changelog

* move span wrapping on own class to avoid duplication

* add sentry box collection

* test added spans, fix imports

* test throwing code

* fix changelog

* change dbSystem value

* change db system

* remove unneccessary async & await

* Fix analyze

* Formatting

* Add changelog symlink

* Ignore hive coverage

* Create symlink for dartdoc_options

---------

Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* release: 7.13.0

* Fixes release of drift & hive (#1729)

* Add integrations

* Readd changelog

* Add drift and hive to bump versions

* Formatting and analyze

* Update CHANGELOG and fix test

* Update changelog

* fix analyze issue

* release: 7.13.1

* Fix formatting and analyze ci issues (#1733)

* Fix analysis

* Update readme

* run format

* Add drift and hive as craft registry target (#1731)

* Add drift and hive as registry target

* build(deps): bump dart-lang/setup-dart from 1.3.0 to 1.6.0 (#1743)

Bumps [dart-lang/setup-dart](https://github.com/dart-lang/setup-dart) from 1.3.0 to 1.6.0.
- [Release notes](https://github.com/dart-lang/setup-dart/releases)
- [Changelog](https://github.com/dart-lang/setup-dart/blob/main/CHANGELOG.md)
- [Commits](dart-lang/setup-dart@v1.3...b64355a)

---
updated-dependencies:
- dependency-name: dart-lang/setup-dart
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update Android SDK to v6.34.0 (#1746)

* chore: update flutter/scripts/update-android.sh to 6.34.0

* Update CHANGELOG

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* deps: update `package_info_plus` constraints (#1749)

* Update constraints

* Update CHANGELOG

* release: 7.13.2

* build(deps): bump codecov/codecov-action from 3.1.1 to 3.1.4 (#1742)

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3.1.1 to 3.1.4.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](codecov/codecov-action@v3.1.1...eaaf4be)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump styfle/cancel-workflow-action from 0.11.0 to 0.12.0 (#1741)

Bumps [styfle/cancel-workflow-action](https://github.com/styfle/cancel-workflow-action) from 0.11.0 to 0.12.0.
- [Release notes](https://github.com/styfle/cancel-workflow-action/releases)
- [Commits](styfle/cancel-workflow-action@0.11.0...01ce38b)

---
updated-dependencies:
- dependency-name: styfle/cancel-workflow-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump actions/checkout from 3 to 4 (#1740)

Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump VeryGoodOpenSource/very_good_coverage (#1739)

Bumps [VeryGoodOpenSource/very_good_coverage](https://github.com/verygoodopensource/very_good_coverage) from 2.1.0 to 2.2.0.
- [Release notes](https://github.com/verygoodopensource/very_good_coverage/releases)
- [Changelog](https://github.com/VeryGoodOpenSource/very_good_coverage/blob/main/CHANGELOG.md)
- [Commits](VeryGoodOpenSource/very_good_coverage@e5c91bc...3b47542)

---
updated-dependencies:
- dependency-name: VeryGoodOpenSource/very_good_coverage
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore: update scripts/update-symbol-collector.sh to 1.13.0 (#1737)

Co-authored-by: GitHub <noreply@github.com>

* chore: update scripts/update-symbol-collector.sh to 1.13.0 (#1754)

Co-authored-by: GitHub <noreply@github.com>

* Add option to opt out of fatal level for automatically collected errors (#1738)

* build(deps): bump natiginfo/action-detekt-all from 1.23.3 to 1.23.4 (#1758)

Bumps [natiginfo/action-detekt-all](https://github.com/natiginfo/action-detekt-all) from 1.23.3 to 1.23.4.
- [Release notes](https://github.com/natiginfo/action-detekt-all/releases)
- [Commits](natiginfo/action-detekt-all@68eb02d...1349d3d)

---
updated-dependencies:
- dependency-name: natiginfo/action-detekt-all
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update Cocoa SDK to v8.17.0 (#1761)

* chore: update flutter/scripts/update-cocoa.sh to 8.17.0

* Apply format

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump subosito/flutter-action from 2.10.0 to 2.12.0 (#1759)

Bumps [subosito/flutter-action](https://github.com/subosito/flutter-action) from 2.10.0 to 2.12.0.
- [Release notes](https://github.com/subosito/flutter-action/releases)
- [Commits](subosito/flutter-action@v2.10.0...2783a3f)

---
updated-dependencies:
- dependency-name: subosito/flutter-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore: update metrics/flutter.properties to 3.16.1 (#1760)

Co-authored-by: GitHub <noreply@github.com>

* fix(example): web obfuscation not working (#1766)

* Add debug_meta to all events (#1756)

* load_image_list_integration now appends debug_meta info to all non-transaction events with a stacktrace, instead of checking for Exception existence

* chore: Update README to include drift and hive (#1735)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: getsentry-bot <bot@sentry.io>
Co-authored-by: Denis Andrašec <denrase@gmail.com>

* chore: update metrics/flutter.properties to 3.16.2 (#1769)

Co-authored-by: GitHub <noreply@github.com>

* chore(deps): update Cocoa SDK to v8.17.1 (#1771)

* chore: update flutter/scripts/update-cocoa.sh to 8.17.1

* Formatting

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* Add `Hive` breadcrumbs (#1773)

* improvements(example): fix router navigation issue and add improvements (#1767)

* Change http url and add route navigation observer example

* Remove comment

* Improve sample

* Format

* Add padding

* Fix analyze issues

* build(deps): bump actions/setup-java from 3 to 4 (#1772)

Bumps [actions/setup-java](https://github.com/actions/setup-java) from 3 to 4.
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](actions/setup-java@v3...v4)

---
updated-dependencies:
- dependency-name: actions/setup-java
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* docs: add new package release process (#1734)

* add docs

* Add flutter example step

* Add analyze info

* Update

* Update new-package-release-checklist.md

* fix(ci): compile error in example using flutter beta channel (#1783)

* fix ci

* chore(deps): update Cocoa SDK to v8.17.2 (#1787)

* chore: update flutter/scripts/update-cocoa.sh to 8.17.2

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore: update flutter/scripts/update-android.sh to 7.0.0 (#1768)

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* release: 7.14.0

* Add `ConnectivityIntegration` for web (#1765)

* Fix changelog (#1791)

* build(deps): bump actions/upload-artifact from 3 to 4 (#1789)

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* APM for isar (#1726)

* Bump flutter_lints from 2.0.3 to 3.0.0 in /flutter (#1698)

* Bump flutter_lints from 2.0.3 to 3.0.0 in /flutter

Bumps [flutter_lints](https://github.com/flutter/packages/tree/main/packages) from 2.0.3 to 3.0.0.
- [Release notes](https://github.com/flutter/packages/releases)
- [Commits](https://github.com/flutter/packages/commits/pigeon-v3.0.0/packages)

---
updated-dependencies:
- dependency-name: flutter_lints
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Satisfy analyzer

* Satisfy dart analyzer

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore: update metrics/flutter.properties to 3.16.5 (#1793)

Co-authored-by: GitHub <noreply@github.com>

* Bump lints from 2.1.1 to 3.0.0 in /dart (#1695)

* Bump lints from 2.1.1 to 3.0.0 in /dart

Bumps [lints](https://github.com/dart-lang/lints) from 2.1.1 to 3.0.0.
- [Release notes](https://github.com/dart-lang/lints/releases)
- [Changelog](https://github.com/dart-lang/lints/blob/main/CHANGELOG.md)
- [Commits](dart-lang/lints@v2.1.1...v3.0.0)

---
updated-dependencies:
- dependency-name: lints
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* update

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump reactivecircus/android-emulator-runner (#1779)

Bumps [reactivecircus/android-emulator-runner](https://github.com/reactivecircus/android-emulator-runner) from 2.28.0 to 2.29.0.
- [Release notes](https://github.com/reactivecircus/android-emulator-runner/releases)
- [Changelog](https://github.com/ReactiveCircus/android-emulator-runner/blob/main/CHANGELOG.md)
- [Commits](ReactiveCircus/android-emulator-runner@d94c3fb...99a4aac)

---
updated-dependencies:
- dependency-name: reactivecircus/android-emulator-runner
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump subosito/flutter-action from 2.10.0 to 2.12.0 (#1796)

Bumps [subosito/flutter-action](https://github.com/subosito/flutter-action) from 2.10.0 to 2.12.0.
- [Release notes](https://github.com/subosito/flutter-action/releases)
- [Commits](subosito/flutter-action@v2.10.0...2783a3f)

---
updated-dependencies:
- dependency-name: subosito/flutter-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: spotlight support (#1786)

* Implement spotlight support (screenshots are currently disabled and removed from the envelope)

* build(deps): bump VeryGoodOpenSource/very_good_coverage (#1795)

Bumps [VeryGoodOpenSource/very_good_coverage](https://github.com/verygoodopensource/very_good_coverage) from 2.1.0 to 2.2.0.
- [Release notes](https://github.com/verygoodopensource/very_good_coverage/releases)
- [Changelog](https://github.com/VeryGoodOpenSource/very_good_coverage/blob/main/CHANGELOG.md)
- [Commits](VeryGoodOpenSource/very_good_coverage@v2.1.0...3b47542)

---
updated-dependencies:
- dependency-name: VeryGoodOpenSource/very_good_coverage
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump actions/setup-java from 3 to 4 (#1797)

Bumps [actions/setup-java](https://github.com/actions/setup-java) from 3 to 4.
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](actions/setup-java@v3...v4)

---
updated-dependencies:
- dependency-name: actions/setup-java
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update Path Filters (#1763)

* Add app flavor to `flutter_context` (#1799)

* Add app flavor

* fix changelog

* chore(deps): update Android SDK to v7.1.0 (#1788)

* chore: update flutter/scripts/update-android.sh to 7.1.0

* Fix app start

* format

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* Add isar breadcrumbs (#1800)

* chore: update flutter/scripts/update-cocoa.sh to 8.18.0 (#1803)

Co-authored-by: GitHub <noreply@github.com>

* Add `beforeScreenshotCallback` to `SentryFlutterOptions` (#1805)

* fix typo in docs (#1816)

* chore: update metrics/flutter.properties to 3.16.7 (#1814)

Co-authored-by: GitHub <noreply@github.com>

* Add support for `readTransaction` in `sqflite` (#1819)

* ci: disable some tests temporarily (#1835)

* release: 7.15.0

* Accept `Map<String, dynamic>` in `Hint` class (#1807)

* build(deps): bump actions/cache from 3 to 4 (#1833)

Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3...v4)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump dart-lang/setup-dart from 1.6.0 to 1.6.1 (#1817)

Bumps [dart-lang/setup-dart](https://github.com/dart-lang/setup-dart) from 1.6.0 to 1.6.1.
- [Release notes](https://github.com/dart-lang/setup-dart/releases)
- [Changelog](https://github.com/dart-lang/setup-dart/blob/main/CHANGELOG.md)
- [Commits](dart-lang/setup-dart@b64355a...ca7e6fe)

---
updated-dependencies:
- dependency-name: dart-lang/setup-dart
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore(deps): update Flutter SDK (metrics) to v3.16.8 (#1825)

* chore: update metrics/flutter.properties to 3.16.8

* update path

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* feat: tracing without performance for dio (#1837)

* feat: tracing without performance for dio

* chore: update CHANGELOG.md

* chore: reenable testing sentry-dart on windows (#1838)

* enable windows again

* test with chrome

* test with chrome

* reenable windows test

* chore: add isar to craft (#1843)

* add isar

* Update Changelog

* chore(deps): update Cocoa SDK to v8.19.0 (#1844)

* chore: update flutter/scripts/update-cocoa.sh to 8.19.0
---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* feat: Add sentry widget that includes other sentry widgets (#1846)

* add sentry widget

* Update CHANGELOG.md

* Update CHANGELOG.md

* build(deps): bump styfle/cancel-workflow-action from 0.12.0 to 0.12.1 (#1849)

Bumps [styfle/cancel-workflow-action](https://github.com/styfle/cancel-workflow-action) from 0.12.0 to 0.12.1.
- [Release notes](https://github.com/styfle/cancel-workflow-action/releases)
- [Commits](styfle/cancel-workflow-action@01ce38b...85880fa)

---
updated-dependencies:
- dependency-name: styfle/cancel-workflow-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump reactivecircus/android-emulator-runner (#1848)

Bumps [reactivecircus/android-emulator-runner](https://github.com/reactivecircus/android-emulator-runner) from 2.29.0 to 2.30.1.
- [Release notes](https://github.com/reactivecircus/android-emulator-runner/releases)
- [Changelog](https://github.com/ReactiveCircus/android-emulator-runner/blob/main/CHANGELOG.md)
- [Commits](ReactiveCircus/android-emulator-runner@99a4aac...6b0df4b)

---
updated-dependencies:
- dependency-name: reactivecircus/android-emulator-runner
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump codecov/codecov-action from 3.1.4 to 3.1.5 (#1850)

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3.1.4 to 3.1.5.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](codecov/codecov-action@eaaf4be...4fe8c5f)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore(deps): update Android SDK to v7.2.0 (#1815)

* chore: update flutter/scripts/update-android.sh to 7.2.0

* Update podfile

* Update podfile

* Update deployment target

* update

* update

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore(deps): update Flutter SDK (metrics) to v3.16.9 (#1847)

* chore: update metrics/flutter.properties to 3.16.9

* update

* update

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore(deps): update Symbol collector CLI to v1.14.0 (#1827)

* chore: update scripts/update-symbol-collector.sh to 1.14.0

* update

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* Update CHANGELOG.md (#1845)

* chore: update flutter/scripts/update-android.sh to 7.3.0 (#1852)

Co-authored-by: GitHub <noreply@github.com>

* release: 7.16.0

* chore(sample): Upgrade SAGP to v4.2.0 in the flutter example app (#1860)

* build(deps): bump dart-lang/setup-dart from 1.6.1 to 1.6.2 (#1864)

Bumps [dart-lang/setup-dart](https://github.com/dart-lang/setup-dart) from 1.6.1 to 1.6.2.
- [Release notes](https://github.com/dart-lang/setup-dart/releases)
- [Changelog](https://github.com/dart-lang/setup-dart/blob/main/CHANGELOG.md)
- [Commits](dart-lang/setup-dart@ca7e6fe...fedb126)

---
updated-dependencies:
- dependency-name: dart-lang/setup-dart
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update Cocoa SDK to v8.20.0 (#1856)

* chore: update flutter/scripts/update-cocoa.sh to 8.20.0

* format

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump natiginfo/action-detekt-all from 1.23.4 to 1.23.5 (#1862)

Bumps [natiginfo/action-detekt-all](https://github.com/natiginfo/action-detekt-all) from 1.23.4 to 1.23.5.
- [Release notes](https://github.com/natiginfo/action-detekt-all/releases)
- [Commits](natiginfo/action-detekt-all@1349d3d...60495f2)

---
updated-dependencies:
- dependency-name: natiginfo/action-detekt-all
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump codecov/codecov-action from 3.1.5 to 4.0.1 (#1863)

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3.1.5 to 4.0.1.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](codecov/codecov-action@4fe8c5f...e0b68c6)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore(android): Remove dead code, cold start bool is now always present (#1861)

* chore(android): Remove dead code, cold start bool is now always present

* Update CHANGELOG.md

---------

Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore: update scripts/update-symbol-collector.sh to 1.15.0 (#1853)

Co-authored-by: GitHub <noreply@github.com>

* build(deps): bump gradle/gradle-build-action from 2 to 3 (#1851)

* build(deps): bump gradle/gradle-build-action from 2 to 3

Bumps [gradle/gradle-build-action](https://github.com/gradle/gradle-build-action) from 2 to 3.
- [Release notes](https://github.com/gradle/gradle-build-action/releases)
- [Commits](gradle/gradle-build-action@v2...v3)

---
updated-dependencies:
- dependency-name: gradle/gradle-build-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update flutter_test.yml

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore: update scripts/update-symbol-collector.sh to 1.15.0 (#1869)

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* merge main into release/8.0.0

* update

* update

* update

* update

* fix: remove Flutter dep from Drift integration (#1867)

* Remove Flutter dep

* Update CHANGELOG

* Remove unused import

* fix

* fix

* fix

* Update flutter_test.yml

* Update CHANGELOG.md

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Ivan Dlugos <6349682+vaind@users.noreply.github.com>
Co-authored-by: Denis Andrašec <denrase@gmail.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: getsentry-bot <bot@sentry.io>
Co-authored-by: getsentry-bot <bot@getsentry.com>
Co-authored-by: Jonas Uekötter <ueman@users.noreply.github.com>
Co-authored-by: Stefano <stefano.siano@sentry.io>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Bruno Garcia <bruno@brunogarcia.com>
Co-authored-by: Stefano <stefano.siano91@gmail.com>
Co-authored-by: Oleg Magomedov <69794332+smart7even@users.noreply.github.com>
Co-authored-by: Igor Khramtsov <igor.khramtsov@proton.me>
Co-authored-by: Kryštof Woldřich <31292499+krystofwoldrich@users.noreply.github.com>
buenaflor added a commit that referenced this pull request Apr 19, 2024
* Mark exceptions not handled by user as `handled: false` (#1535)

* Refrain from overwriting the span status for unfinished spans (#1577)

* update changelog

* Do not leak extensions of external classes (#1576)

* Make `hint` non-nullable in `BeforeSendCallback`, `BeforeBreadcrumbCall` and `EventProcessor` (#1574)

* Load Device Contexts from Sentry Java (#1616)

* Set ip_address to {{auto}} by default, even if sendDefaultPII is disabled (#1665)

* chore: merge main into v8 branch (#1841)

* ci: update actions (#1617)

* Add tests for the Android and iOS plugin  (#1587)

* Normalize `data` properties of `SentryUser` and `Breadcrumb` before sending over method channel (#1591)

* chore(deps): update Cocoa SDK to v8.11.0 (#1626)

Co-authored-by: GitHub <noreply@github.com>

* Tracing without performance (#1621)

* implement propagationContext

* remove sampled and parentSpanId for now

* update changelog

* fix build error

* create new propagation context on startTransaction if tracing is disabled

* remove print

* propagate trace for http requests

* add tracing client test

* fix tests

* format

* fix compile

* tests

* fix analysis score

* fix analysis score

* fix compilation

* fix score

* fix score

* fix score

* fix score

* update tests

* [starfish] add attributes to db spans data (#1629)

* add db attibutes to spans

* change variable names

* update changelog

* update changelog

* update tests

* update imports

* update tests

* remove unused import

* couple dbName to db instance

* format

* use path pub

* don't set dbName to null when db close() is called

* [starfish] add http.request.method attribute to http spans (#1633)

* add http.request.method to http spans

* update changelog

* Fix Android & iOS CI issues (#1627)

* Disable scope sync for cloned scopes (#1628)

* chore: update flutter/scripts/update-android.sh to 6.29.0 (#1630)

Co-authored-by: GitHub <noreply@github.com>

* Discard empty stack frames (#1625)

* Introduce workflow dispatch action for`format` & `fix --apply` (#1575)

* feat/refactor: add cocoa FFI binding (#1631)

* refactor: move native code to its own directory (#1638)

* Log SDK errors to the console if the log level is `fatal` even if `debug` is disabled (#1635)

* Fix autoPerformanceTracingEnabled flag in andorid plugin (#1640)

* Add Sampling Decision to Trace Envelope Header (#1639)

* add sampled flag

* fmt

* update changelog

* redo fmt

* fix tests

* chore: update metrics/flutter.properties to 3.13.3 (#1632)

Co-authored-by: GitHub <noreply@github.com>

* fix: add missing FFI depdendency (#1642)

* release: 7.10.1

* ci: macos integration test (#1645)

* fix: generated cocoa bindings (#1648)

* Update uuid (#1647)

Co-authored-by: Ivan Dlugos <6349682+vaind@users.noreply.github.com>

* chore(deps): update Cocoa SDK to v8.12.0 (#1650)

Co-authored-by: GitHub <noreply@github.com>

* Breadcrumbs for file I/O operations (#1649)

* ci: don't run CI on markdown updates (#1651)

* chore(deps): update Flutter SDK (metrics) to v3.13.6 (#1659)

* chore: update metrics/flutter.properties to 3.13.6

* Update flutter.properties

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: Stefano <stefano.siano@sentry.io>

* chore: update flutter/scripts/update-android.sh to 6.30.0 (#1660)

* chore: update flutter/scripts/update-cocoa.sh to 8.13.0 (#1655)

* Generate class diagrams (#1646)

* Rename `options.devMode` to `options.automatedTestMode` (#1664)

* chore: update flutter/scripts/update-cocoa.sh to 8.13.1 (#1677)

Co-authored-by: GitHub <noreply@github.com>

* chore: update flutter/scripts/update-android.sh to 6.31.0 (#1676)

* chore: update metrics/flutter.properties to 3.13.7 (#1674)

Co-authored-by: GitHub <noreply@github.com>

* Add dependabot (#1670)

* Bump codecov/codecov-action from 3.1.1 to 3.1.4 (#1680)

* chore: update flutter/scripts/update-android.sh to 6.32.0 (#1688)

Co-authored-by: GitHub <noreply@github.com>

* chore(deps): update Cocoa SDK to v8.14.2 (#1691)

* chore: update flutter/scripts/update-cocoa.sh to 8.14.2

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore: update changelog (#1699)

* Update changelog

* release: 7.11.0

* Bump lints from 2.1.1 to 3.0.0 in /sqflite (#1697)

Bumps [lints](https://github.com/dart-lang/lints) from 2.1.1 to 3.0.0.
- [Release notes](https://github.com/dart-lang/lints/releases)
- [Changelog](https://github.com/dart-lang/lints/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dart-lang/lints/compare/v2.1.1...v3.0.0)

---
updated-dependencies:
- dependency-name: lints
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump lints from 2.1.1 to 3.0.0 in /logging (#1696)

Bumps [lints](https://github.com/dart-lang/lints) from 2.1.1 to 3.0.0.
- [Release notes](https://github.com/dart-lang/lints/releases)
- [Changelog](https://github.com/dart-lang/lints/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dart-lang/lints/compare/v2.1.1...v3.0.0)

---
updated-dependencies:
- dependency-name: lints
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump lints from 2.1.1 to 3.0.0 in /file (#1694)

Bumps [lints](https://github.com/dart-lang/lints) from 2.1.1 to 3.0.0.
- [Release notes](https://github.com/dart-lang/lints/releases)
- [Changelog](https://github.com/dart-lang/lints/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dart-lang/lints/compare/v2.1.1...v3.0.0)

---
updated-dependencies:
- dependency-name: lints
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump lints from 2.1.1 to 3.0.0 in /dio (#1693)

Bumps [lints](https://github.com/dart-lang/lints) from 2.1.1 to 3.0.0.
- [Release notes](https://github.com/dart-lang/lints/releases)
- [Changelog](https://github.com/dart-lang/lints/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dart-lang/lints/compare/v2.1.1...v3.0.0)

---
updated-dependencies:
- dependency-name: lints
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: profiling for iOS/macOS (#1611)

Co-authored-by: Bruno Garcia <bruno@brunogarcia.com>
Co-authored-by: Denis Andrašec <denrase@gmail.com>
Co-authored-by: Stefano <stefano.siano91@gmail.com>

* chore: update metrics/flutter.properties to 3.13.9 (#1702)

* chore: log warning if both tracesSampleRate and tracesSampler are set (#1701)

* Log warning if both tracesSampleRate and tracesSampler are set

* Update CHANGELOG

* Update log

* Update CHANGELOG

* chore: flutter symbol collector CLI tool (#1673)

* release: 7.12.0

* Add `SentryNavigatorObserver` current route to `event.app.contexts.viewNames` (#1545)

* fix: coverage not ignoring generated binding.dart (#1707)

* Remove coverage for binding.dart

* Breadcrumbs for database operations (#1656)

* Bump actions/checkout from 3 to 4 (#1683)

Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump ScaCap/action-ktlint from 1.7.1 to 1.8.0 (#1681)

Bumps [ScaCap/action-ktlint](https://github.com/scacap/action-ktlint) from 1.7.1 to 1.8.0.
- [Release notes](https://github.com/scacap/action-ktlint/releases)
- [Commits](https://github.com/scacap/action-ktlint/compare/2cf245b99bc91f73bc4c96a3d9d57bb5da3533ae...0ff81efa49425bd0df46caabd8005aafdc8f2cf2)

---
updated-dependencies:
- dependency-name: ScaCap/action-ktlint
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump styfle/cancel-workflow-action from 0.11.0 to 0.12.0 (#1682)

Bumps [styfle/cancel-workflow-action](https://github.com/styfle/cancel-workflow-action) from 0.11.0 to 0.12.0.
- [Release notes](https://github.com/styfle/cancel-workflow-action/releases)
- [Commits](https://github.com/styfle/cancel-workflow-action/compare/b173b6ec0100793626c2d9e6b90435061f4fc3e5...01ce38bf961b4e243a6342cbade0dbc8ba3f0432)

---
updated-dependencies:
- dependency-name: styfle/cancel-workflow-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Stefano <stefano.siano@sentry.io>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* Bump dart-lang/setup-dart from 1.3.0 to 1.6.0 (#1692)

Bumps [dart-lang/setup-dart](https://github.com/dart-lang/setup-dart) from 1.3.0 to 1.6.0.
- [Release notes](https://github.com/dart-lang/setup-dart/releases)
- [Changelog](https://github.com/dart-lang/setup-dart/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dart-lang/setup-dart/compare/6a218f2413a3e78e9087f638a238f6b40893203d...b64355ae6ca0b5d484f0106a033dd1388965d06d)

---
updated-dependencies:
- dependency-name: dart-lang/setup-dart
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore: update flutter/scripts/update-android.sh to 6.33.0 (#1710)

Co-authored-by: GitHub <noreply@github.com>

* build(deps): bump subosito/flutter-action from 2.10.0 to 2.12.0 (#1711)

Bumps [subosito/flutter-action](https://github.com/subosito/flutter-action) from 2.10.0 to 2.12.0.
- [Release notes](https://github.com/subosito/flutter-action/releases)
- [Commits](https://github.com/subosito/flutter-action/compare/48cafc24713cca54bbe03cdc3a423187d413aafa...2783a3f08e1baf891508463f8c6653c258246225)

---
updated-dependencies:
- dependency-name: subosito/flutter-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Add `attachScreenshotOnlyWhenResumed` to options (#1700)

* chore: update flutter/scripts/update-android.sh to 6.33.1 (#1713)

Co-authored-by: GitHub <noreply@github.com>

* chore: update flutter/scripts/update-cocoa.sh to 8.15.0 (#1712)

Co-authored-by: GitHub <noreply@github.com>

* chore: update flutter/scripts/update-cocoa.sh to 8.15.1 (#1714)

Co-authored-by: GitHub <noreply@github.com>

* fix: unsupported types with expando (#1690)

* Support string, int, double and bool as throwable for expando

* Rename the test file and move it to utils folder{

* Remvoe ffi import

* Update changelog

* Try other url for dio pubspec doc url

* Change doc url of logging pubspec

* Remove unnecessary code

* Update naming

* Rename

* chore: update flutter/scripts/update-cocoa.sh to 8.15.2 (#1717)

Co-authored-by: GitHub <noreply@github.com>

* Parse message field in `PlatformException.message` (#1716)

* Parse message field

* changelog

* Update CHANGELOG.md

* Bump natiginfo/action-detekt-all from 1.21.0 to 1.23.1 (#1684)

* Bump natiginfo/action-detekt-all from 1.21.0 to 1.23.1

Bumps [natiginfo/action-detekt-all](https://github.com/natiginfo/action-detekt-all) from 1.21.0 to 1.23.1.
- [Release notes](https://github.com/natiginfo/action-detekt-all/releases)
- [Commits](https://github.com/natiginfo/action-detekt-all/compare/e01de6ff0eef7c24131e8a133bf598cfac6ceeab...be3c18799c7c392b2f41a674beed9ced7ae2f21b)

---
updated-dependencies:
- dependency-name: natiginfo/action-detekt-all
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix braces

* Add missing trailing comma

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump natiginfo/action-detekt-all from 1.23.1 to 1.23.3 (#1722)

Bumps [natiginfo/action-detekt-all](https://github.com/natiginfo/action-detekt-all) from 1.23.1 to 1.23.3.
- [Release notes](https://github.com/natiginfo/action-detekt-all/releases)
- [Commits](https://github.com/natiginfo/action-detekt-all/compare/be3c18799c7c392b2f41a674beed9ced7ae2f21b...68eb02dd9f2c2686d5026f5957756064424261a9)

---
updated-dependencies:
- dependency-name: natiginfo/action-detekt-all
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Remove renderer on Dart:io platforms (#1723)

* Remove renderer on dart:io platforms

* Tests + changelog

* Update CHANGELOG.md

* Fix tests

* fix more tests

* feat: drift apm (#1709)

* draft impl

* improve code

* Add open span

* Refactor to extend lazy database

* Update

* SentryTransactionExecutor

* Implement tracing batch and transactions

* Update tests

* update changelog

* Formatting

* Update workflows

* Update deps

* Fix analyze issues

* Format

* Add example

* Update descriptions

* Fix deps

* Update run commands

* Update workflow

* Update example

* Update workflow

* Format

* Fix dart analyze

* Try changing deps

* Add to craft

* Change to flutter test

* Revert flutter test mock

* change dir manually

* download and extract sqlite.dll for windows

* Try downloading sqlite3

* set up dart

* fix path to file

* use pub get

* Use flutter pub get

* fix

* skip windows test

* fix analyze

* fix drift.yml

* format

* Remove redundant test

* Remove debug print

* update trace origin

* Improvements

* Improvements

* Add to flutter example

* fix: setting the correct locale to contexts with navigatorKey (#1724)

* Add localization with navigatorKey

* Update CHANGELOG

* Update tests

* Update tests

* Format

* Remove unused import

* Apply review improvements

* Update CHANGELOG

* APM for hive (#1672)

* setup sentry hive library

* Add SentryBox with first test

* test added spans

* Add sentry hive impl

* introduce base box to avoid duplication

* implement lazy box test

* expose sentry hive and updata documentation

* add hive to flutter example app

* test throwing in base_box, cleanup

* test lazy box error cases

* test sentry hive impl failures

* run fix & format

* fix test failure race condition

* add hive workflow, update other workflows

* add changelog entry

* remove path+provider from dev_dependencies

* add coverage dev dependency

* fix deprecation warnings

* fix changelog

* move span wrapping on own class to avoid duplication

* add sentry box collection

* test added spans, fix imports

* test throwing code

* fix changelog

* change dbSystem value

* change db system

* remove unneccessary async & await

* Fix analyze

* Formatting

* Add changelog symlink

* Ignore hive coverage

* Create symlink for dartdoc_options

---------

Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* release: 7.13.0

* Fixes release of drift & hive (#1729)

* Add integrations

* Readd changelog

* Add drift and hive to bump versions

* Formatting and analyze

* Update CHANGELOG and fix test

* Update changelog

* fix analyze issue

* release: 7.13.1

* Fix formatting and analyze ci issues (#1733)

* Fix analysis

* Update readme

* run format

* Add drift and hive as craft registry target (#1731)

* Add drift and hive as registry target

* build(deps): bump dart-lang/setup-dart from 1.3.0 to 1.6.0 (#1743)

Bumps [dart-lang/setup-dart](https://github.com/dart-lang/setup-dart) from 1.3.0 to 1.6.0.
- [Release notes](https://github.com/dart-lang/setup-dart/releases)
- [Changelog](https://github.com/dart-lang/setup-dart/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dart-lang/setup-dart/compare/v1.3...b64355ae6ca0b5d484f0106a033dd1388965d06d)

---
updated-dependencies:
- dependency-name: dart-lang/setup-dart
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update Android SDK to v6.34.0 (#1746)

* chore: update flutter/scripts/update-android.sh to 6.34.0

* Update CHANGELOG

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* deps: update `package_info_plus` constraints (#1749)

* Update constraints

* Update CHANGELOG

* release: 7.13.2

* build(deps): bump codecov/codecov-action from 3.1.1 to 3.1.4 (#1742)

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3.1.1 to 3.1.4.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/codecov/codecov-action/compare/v3.1.1...eaaf4bedf32dbdc6b720b63067d99c4d77d6047d)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump styfle/cancel-workflow-action from 0.11.0 to 0.12.0 (#1741)

Bumps [styfle/cancel-workflow-action](https://github.com/styfle/cancel-workflow-action) from 0.11.0 to 0.12.0.
- [Release notes](https://github.com/styfle/cancel-workflow-action/releases)
- [Commits](https://github.com/styfle/cancel-workflow-action/compare/0.11.0...01ce38bf961b4e243a6342cbade0dbc8ba3f0432)

---
updated-dependencies:
- dependency-name: styfle/cancel-workflow-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump actions/checkout from 3 to 4 (#1740)

Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump VeryGoodOpenSource/very_good_coverage (#1739)

Bumps [VeryGoodOpenSource/very_good_coverage](https://github.com/verygoodopensource/very_good_coverage) from 2.1.0 to 2.2.0.
- [Release notes](https://github.com/verygoodopensource/very_good_coverage/releases)
- [Changelog](https://github.com/VeryGoodOpenSource/very_good_coverage/blob/main/CHANGELOG.md)
- [Commits](https://github.com/verygoodopensource/very_good_coverage/compare/e5c91bc7ce9843e87c800b3bcafdfb86fbe28491...3b475421464c564c0714d92ce02742bd81fa9eda)

---
updated-dependencies:
- dependency-name: VeryGoodOpenSource/very_good_coverage
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore: update scripts/update-symbol-collector.sh to 1.13.0 (#1737)

Co-authored-by: GitHub <noreply@github.com>

* chore: update scripts/update-symbol-collector.sh to 1.13.0 (#1754)

Co-authored-by: GitHub <noreply@github.com>

* Add option to opt out of fatal level for automatically collected errors (#1738)

* build(deps): bump natiginfo/action-detekt-all from 1.23.3 to 1.23.4 (#1758)

Bumps [natiginfo/action-detekt-all](https://github.com/natiginfo/action-detekt-all) from 1.23.3 to 1.23.4.
- [Release notes](https://github.com/natiginfo/action-detekt-all/releases)
- [Commits](https://github.com/natiginfo/action-detekt-all/compare/68eb02dd9f2c2686d5026f5957756064424261a9...1349d3d957cba64d7b6b2752ef874d1e03e402a2)

---
updated-dependencies:
- dependency-name: natiginfo/action-detekt-all
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update Cocoa SDK to v8.17.0 (#1761)

* chore: update flutter/scripts/update-cocoa.sh to 8.17.0

* Apply format

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump subosito/flutter-action from 2.10.0 to 2.12.0 (#1759)

Bumps [subosito/flutter-action](https://github.com/subosito/flutter-action) from 2.10.0 to 2.12.0.
- [Release notes](https://github.com/subosito/flutter-action/releases)
- [Commits](https://github.com/subosito/flutter-action/compare/v2.10.0...2783a3f08e1baf891508463f8c6653c258246225)

---
updated-dependencies:
- dependency-name: subosito/flutter-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore: update metrics/flutter.properties to 3.16.1 (#1760)

Co-authored-by: GitHub <noreply@github.com>

* fix(example): web obfuscation not working (#1766)

* Add debug_meta to all events (#1756)

* load_image_list_integration now appends debug_meta info to all non-transaction events with a stacktrace, instead of checking for Exception existence

* chore: Update README to include drift and hive (#1735)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: getsentry-bot <bot@sentry.io>
Co-authored-by: Denis Andrašec <denrase@gmail.com>

* chore: update metrics/flutter.properties to 3.16.2 (#1769)

Co-authored-by: GitHub <noreply@github.com>

* chore(deps): update Cocoa SDK to v8.17.1 (#1771)

* chore: update flutter/scripts/update-cocoa.sh to 8.17.1

* Formatting

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* Add `Hive` breadcrumbs (#1773)

* improvements(example): fix router navigation issue and add improvements (#1767)

* Change http url and add route navigation observer example

* Remove comment

* Improve sample

* Format

* Add padding

* Fix analyze issues

* build(deps): bump actions/setup-java from 3 to 4 (#1772)

Bumps [actions/setup-java](https://github.com/actions/setup-java) from 3 to 4.
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](https://github.com/actions/setup-java/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/setup-java
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* docs: add new package release process (#1734)

* add docs

* Add flutter example step

* Add analyze info

* Update

* Update new-package-release-checklist.md

* fix(ci): compile error in example using flutter beta channel (#1783)

* fix ci

* chore(deps): update Cocoa SDK to v8.17.2 (#1787)

* chore: update flutter/scripts/update-cocoa.sh to 8.17.2

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore: update flutter/scripts/update-android.sh to 7.0.0 (#1768)

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* release: 7.14.0

* Add `ConnectivityIntegration` for web (#1765)

* Fix changelog (#1791)

* build(deps): bump actions/upload-artifact from 3 to 4 (#1789)

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* APM for isar (#1726)

* Bump flutter_lints from 2.0.3 to 3.0.0 in /flutter (#1698)

* Bump flutter_lints from 2.0.3 to 3.0.0 in /flutter

Bumps [flutter_lints](https://github.com/flutter/packages/tree/main/packages) from 2.0.3 to 3.0.0.
- [Release notes](https://github.com/flutter/packages/releases)
- [Commits](https://github.com/flutter/packages/commits/pigeon-v3.0.0/packages)

---
updated-dependencies:
- dependency-name: flutter_lints
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Satisfy analyzer

* Satisfy dart analyzer

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore: update metrics/flutter.properties to 3.16.5 (#1793)

Co-authored-by: GitHub <noreply@github.com>

* Bump lints from 2.1.1 to 3.0.0 in /dart (#1695)

* Bump lints from 2.1.1 to 3.0.0 in /dart

Bumps [lints](https://github.com/dart-lang/lints) from 2.1.1 to 3.0.0.
- [Release notes](https://github.com/dart-lang/lints/releases)
- [Changelog](https://github.com/dart-lang/lints/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dart-lang/lints/compare/v2.1.1...v3.0.0)

---
updated-dependencies:
- dependency-name: lints
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* update

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump reactivecircus/android-emulator-runner (#1779)

Bumps [reactivecircus/android-emulator-runner](https://github.com/reactivecircus/android-emulator-runner) from 2.28.0 to 2.29.0.
- [Release notes](https://github.com/reactivecircus/android-emulator-runner/releases)
- [Changelog](https://github.com/ReactiveCircus/android-emulator-runner/blob/main/CHANGELOG.md)
- [Commits](https://github.com/reactivecircus/android-emulator-runner/compare/d94c3fbe4fe6a29e4a5ba47c12fb47677c73656b...99a4aac18b4df9b3af66c4a1f04c1f23fa10c270)

---
updated-dependencies:
- dependency-name: reactivecircus/android-emulator-runner
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump subosito/flutter-action from 2.10.0 to 2.12.0 (#1796)

Bumps [subosito/flutter-action](https://github.com/subosito/flutter-action) from 2.10.0 to 2.12.0.
- [Release notes](https://github.com/subosito/flutter-action/releases)
- [Commits](https://github.com/subosito/flutter-action/compare/v2.10.0...2783a3f08e1baf891508463f8c6653c258246225)

---
updated-dependencies:
- dependency-name: subosito/flutter-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: spotlight support (#1786)

* Implement spotlight support (screenshots are currently disabled and removed from the envelope)

* build(deps): bump VeryGoodOpenSource/very_good_coverage (#1795)

Bumps [VeryGoodOpenSource/very_good_coverage](https://github.com/verygoodopensource/very_good_coverage) from 2.1.0 to 2.2.0.
- [Release notes](https://github.com/verygoodopensource/very_good_coverage/releases)
- [Changelog](https://github.com/VeryGoodOpenSource/very_good_coverage/blob/main/CHANGELOG.md)
- [Commits](https://github.com/verygoodopensource/very_good_coverage/compare/v2.1.0...3b475421464c564c0714d92ce02742bd81fa9eda)

---
updated-dependencies:
- dependency-name: VeryGoodOpenSource/very_good_coverage
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump actions/setup-java from 3 to 4 (#1797)

Bumps [actions/setup-java](https://github.com/actions/setup-java) from 3 to 4.
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](https://github.com/actions/setup-java/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/setup-java
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update Path Filters (#1763)

* Add app flavor to `flutter_context` (#1799)

* Add app flavor

* fix changelog

* chore(deps): update Android SDK to v7.1.0 (#1788)

* chore: update flutter/scripts/update-android.sh to 7.1.0

* Fix app start

* format

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* Add isar breadcrumbs (#1800)

* chore: update flutter/scripts/update-cocoa.sh to 8.18.0 (#1803)

Co-authored-by: GitHub <noreply@github.com>

* Add `beforeScreenshotCallback` to `SentryFlutterOptions` (#1805)

* fix typo in docs (#1816)

* chore: update metrics/flutter.properties to 3.16.7 (#1814)

Co-authored-by: GitHub <noreply@github.com>

* Add support for `readTransaction` in `sqflite` (#1819)

* ci: disable some tests temporarily (#1835)

* release: 7.15.0

* Accept `Map<String, dynamic>` in `Hint` class (#1807)

* build(deps): bump actions/cache from 3 to 4 (#1833)

Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* proper changelog

* fix

* pin version

* format ktlint

* fix ktlint

* fix ktlint

* fix ktlint

* update detekt baseline

* build(deps): bump dart-lang/setup-dart from 1.6.0 to 1.6.1 (#1817)

Bumps [dart-lang/setup-dart](https://github.com/dart-lang/setup-dart) from 1.6.0 to 1.6.1.
- [Release notes](https://github.com/dart-lang/setup-dart/releases)
- [Changelog](https://github.com/dart-lang/setup-dart/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dart-lang/setup-dart/compare/b64355ae6ca0b5d484f0106a033dd1388965d06d...ca7e6fee45ffbd82b555a7ebfc236d2c86439f5b)

---
updated-dependencies:
- dependency-name: dart-lang/setup-dart
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore(deps): update Flutter SDK (metrics) to v3.16.8 (#1825)

* chore: update metrics/flutter.properties to 3.16.8

* update path

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* feat: tracing without performance for dio (#1837)

* feat: tracing without performance for dio

* chore: update CHANGELOG.md

* chore: reenable testing sentry-dart on windows (#1838)

* enable windows again

* test with chrome

* test with chrome

* reenable windows test

* chore: add isar to craft (#1843)

* add isar

* Update Changelog

* chore(deps): update Cocoa SDK to v8.19.0 (#1844)

* chore: update flutter/scripts/update-cocoa.sh to 8.19.0
---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* feat: Add sentry widget that includes other sentry widgets (#1846)

* add sentry widget

* Update CHANGELOG.md

* Update CHANGELOG.md

* build(deps): bump styfle/cancel-workflow-action from 0.12.0 to 0.12.1 (#1849)

Bumps [styfle/cancel-workflow-action](https://github.com/styfle/cancel-workflow-action) from 0.12.0 to 0.12.1.
- [Release notes](https://github.com/styfle/cancel-workflow-action/releases)
- [Commits](https://github.com/styfle/cancel-workflow-action/compare/01ce38bf961b4e243a6342cbade0dbc8ba3f0432...85880fa0301c86cca9da44039ee3bb12d3bedbfa)

---
updated-dependencies:
- dependency-name: styfle/cancel-workflow-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump reactivecircus/android-emulator-runner (#1848)

Bumps [reactivecircus/android-emulator-runner](https://github.com/reactivecircus/android-emulator-runner) from 2.29.0 to 2.30.1.
- [Release notes](https://github.com/reactivecircus/android-emulator-runner/releases)
- [Changelog](https://github.com/ReactiveCircus/android-emulator-runner/blob/main/CHANGELOG.md)
- [Commits](https://github.com/reactivecircus/android-emulator-runner/compare/99a4aac18b4df9b3af66c4a1f04c1f23fa10c270...6b0df4b0efb23bb0ec63d881db79aefbc976e4b2)

---
updated-dependencies:
- dependency-name: reactivecircus/android-emulator-runner
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* build(deps): bump codecov/codecov-action from 3.1.4 to 3.1.5 (#1850)

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3.1.4 to 3.1.5.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/codecov/codecov-action/compare/eaaf4bedf32dbdc6b720b63067d99c4d77d6047d...4fe8c5f003fae66aa5ebb77cfd3e7bfbbda0b6b0)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore(deps): update Android SDK to v7.2.0 (#1815)

* chore: update flutter/scripts/update-android.sh to 7.2.0

* Update podfile

* Update podfile

* Update deployment target

* update

* update

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore(deps): update Flutter SDK (metrics) to v3.16.9 (#1847)

* chore: update metrics/flutter.properties to 3.16.9

* update

* update

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore(deps): update Symbol collector CLI to v1.14.0 (#1827)

* chore: update scripts/update-symbol-collector.sh to 1.14.0

* update

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* Update CHANGELOG.md (#1845)

* chore: update flutter/scripts/update-android.sh to 7.3.0 (#1852)

Co-authored-by: GitHub <noreply@github.com>

* release: 7.16.0

* Update CHANGELOG.md

* Update .craft.yml

* Update resources in readme

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Ivan Dlugos <6349682+vaind@users.noreply.github.com>
Co-authored-by: Denis Andrašec <denrase@gmail.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: getsentry-bot <bot@sentry.io>
Co-authored-by: getsentry-bot <bot@getsentry.com>
Co-authored-by: Jonas Uekötter <ueman@users.noreply.github.com>
Co-authored-by: Stefano <stefano.siano@sentry.io>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Bruno Garcia <bruno@brunogarcia.com>
Co-authored-by: Stefano <stefano.siano91@gmail.com>
Co-authored-by: Oleg Magomedov <69794332+smart7even@users.noreply.github.com>
Co-authored-by: Igor Khramtsov <igor.khramtsov@proton.me>

* chore(v8): update to min ios version 12 (#1821)

* update to min ios version 12

* Update CHANGELOG

* Update CHANGELOG

* Update CHANGELOG

* Re-enable iOS flutter integration test

* Update CHANGELOG

* v8 prep: merge main into 8.0.0 branch (#1871)

* ci: update actions (#1617)

* Add tests for the Android and iOS plugin  (#1587)

* Normalize `data` properties of `SentryUser` and `Breadcrumb` before sending over method channel (#1591)

* chore(deps): update Cocoa SDK to v8.11.0 (#1626)

Co-authored-by: GitHub <noreply@github.com>

* Tracing without performance (#1621)

* implement propagationContext

* remove sampled and parentSpanId for now

* update changelog

* fix build error

* create new propagation context on startTransaction if tracing is disabled

* remove print

* propagate trace for http requests

* add tracing client test

* fix tests

* format

* fix compile

* tests

* fix analysis score

* fix analysis score

* fix compilation

* fix score

* fix score

* fix score

* fix score

* update tests

* [starfish] add attributes to db spans data (#1629)

* add db attibutes to spans

* change variable names

* update changelog

* update changelog

* update tests

* update imports

* update tests

* remove unused import

* couple dbName to db instance

* format

* use path pub

* don't set dbName to null when db close() is called

* [starfish] add http.request.method attribute to http spans (#1633)

* add http.request.method to http spans

* update changelog

* Fix Android & iOS CI issues (#1627)

* Disable scope sync for cloned scopes (#1628)

* chore: update flutter/scripts/update-android.sh to 6.29.0 (#1630)

Co-authored-by: GitHub <noreply@github.com>

* Discard empty stack frames (#1625)

* Introduce workflow dispatch action for`format` & `fix --apply` (#1575)

* feat/refactor: add cocoa FFI binding (#1631)

* refactor: move native code to its own directory (#1638)

* Log SDK errors to the console if the log level is `fatal` even if `debug` is disabled (#1635)

* Fix autoPerformanceTracingEnabled flag in andorid plugin (#1640)

* Add Sampling Decision to Trace Envelope Header (#1639)

* add sampled flag

* fmt

* update changelog

* redo fmt

* fix tests

* chore: update metrics/flutter.properties to 3.13.3 (#1632)

Co-authored-by: GitHub <noreply@github.com>

* fix: add missing FFI depdendency (#1642)

* release: 7.10.1

* ci: macos integration test (#1645)

* fix: generated cocoa bindings (#1648)

* Update uuid (#1647)

Co-authored-by: Ivan Dlugos <6349682+vaind@users.noreply.github.com>

* chore(deps): update Cocoa SDK to v8.12.0 (#1650)

Co-authored-by: GitHub <noreply@github.com>

* Breadcrumbs for file I/O operations (#1649)

* ci: don't run CI on markdown updates (#1651)

* chore(deps): update Flutter SDK (metrics) to v3.13.6 (#1659)

* chore: update metrics/flutter.properties to 3.13.6

* Update flutter.properties

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: Stefano <stefano.siano@sentry.io>

* chore: update flutter/scripts/update-android.sh to 6.30.0 (#1660)

* chore: update flutter/scripts/update-cocoa.sh to 8.13.0 (#1655)

* Generate class diagrams (#1646)

* Rename `options.devMode` to `options.automatedTestMode` (#1664)

* chore: update flutter/scripts/update-cocoa.sh to 8.13.1 (#1677)

Co-authored-by: GitHub <noreply@github.com>

* chore: update flutter/scripts/update-android.sh to 6.31.0 (#1676)

* chore: update metrics/flutter.properties to 3.13.7 (#1674)

Co-authored-by: GitHub <noreply@github.com>

* Add dependabot (#1670)

* Bump codecov/codecov-action from 3.1.1 to 3.1.4 (#1680)

* chore: update flutter/scripts/update-android.sh to 6.32.0 (#1688)

Co-authored-by: GitHub <noreply@github.com>

* chore(deps): update Cocoa SDK to v8.14.2 (#1691)

* chore: update flutter/scripts/update-cocoa.sh to 8.14.2

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore: update changelog (#1699)

* Update changelog

* release: 7.11.0

* Bump lints from 2.1.1 to 3.0.0 in /sqflite (#1697)

Bumps [lints](https://github.com/dart-lang/lints) from 2.1.1 to 3.0.0.
- [Release notes](https://github.com/dart-lang/lints/releases)
- [Changelog](https://github.com/dart-lang/lints/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dart-lang/lints/compare/v2.1.1...v3.0.0)

---
updated-dependencies:
- dependency-name: lints
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump lints from 2.1.1 to 3.0.0 in /logging (#1696)

Bumps [lints](https://github.com/dart-lang/lints) from 2.1.1 to 3.0.0.
- [Release notes](https://github.com/dart-lang/lints/releases)
- [Changelog](https://github.com/dart-lang/lints/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dart-lang/lints/compare/v2.1.1...v3.0.0)

---
updated-dependencies:
- dependency-name: lints
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump lints from 2.1.1 to 3.0.0 in /file (#1694)

Bumps [lints](https://github.com/dart-lang/lints) from 2.1.1 to 3.0.0.
- [Release notes](https://github.com/dart-lang/lints/releases)
- [Changelog](https://github.com/dart-lang/lints/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dart-lang/lints/compare/v2.1.1...v3.0.0)

---
updated-dependencies:
- dependency-name: lints
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump lints from 2.1.1 to 3.0.0 in /dio (#1693)

Bumps [lints](https://github.com/dart-lang/lints) from 2.1.1 to 3.0.0.
- [Release notes](https://github.com/dart-lang/lints/releases)
- [Changelog](https://github.com/dart-lang/lints/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dart-lang/lints/compare/v2.1.1...v3.0.0)

---
updated-dependencies:
- dependency-name: lints
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat: profiling for iOS/macOS (#1611)

Co-authored-by: Bruno Garcia <bruno@brunogarcia.com>
Co-authored-by: Denis Andrašec <denrase@gmail.com>
Co-authored-by: Stefano <stefano.siano91@gmail.com>

* chore: update metrics/flutter.properties to 3.13.9 (#1702)

* chore: log warning if both tracesSampleRate and tracesSampler are set (#1701)

* Log warning if both tracesSampleRate and tracesSampler are set

* Update CHANGELOG

* Update log

* Update CHANGELOG

* chore: flutter symbol collector CLI tool (#1673)

* release: 7.12.0

* Add `SentryNavigatorObserver` current route to `event.app.contexts.viewNames` (#1545)

* fix: coverage not ignoring generated binding.dart (#1707)

* Remove coverage for binding.dart

* Breadcrumbs for database operations (#1656)

* Bump actions/checkout from 3 to 4 (#1683)

Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump ScaCap/action-ktlint from 1.7.1 to 1.8.0 (#1681)

Bumps [ScaCap/action-ktlint](https://github.com/scacap/action-ktlint) from 1.7.1 to 1.8.0.
- [Release notes](https://github.com/scacap/action-ktlint/releases)
- [Commits](https://github.com/scacap/action-ktlint/compare/2cf245b99bc91f73bc4c96a3d9d57bb5da3533ae...0ff81efa49425bd0df46caabd8005aafdc8f2cf2)

---
updated-dependencies:
- dependency-name: ScaCap/action-ktlint
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump styfle/cancel-workflow-action from 0.11.0 to 0.12.0 (#1682)

Bumps [styfle/cancel-workflow-action](https://github.com/styfle/cancel-workflow-action) from 0.11.0 to 0.12.0.
- [Release notes](https://github.com/styfle/cancel-workflow-action/releases)
- [Commits](https://github.com/styfle/cancel-workflow-action/compare/b173b6ec0100793626c2d9e6b90435061f4fc3e5...01ce38bf961b4e243a6342cbade0dbc8ba3f0432)

---
updated-dependencies:
- dependency-name: styfle/cancel-workflow-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Stefano <stefano.siano@sentry.io>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* Bump dart-lang/setup-dart from 1.3.0 to 1.6.0 (#1692)

Bumps [dart-lang/setup-dart](https://github.com/dart-lang/setup-dart) from 1.3.0 to 1.6.0.
- [Release notes](https://github.com/dart-lang/setup-dart/releases)
- [Changelog](https://github.com/dart-lang/setup-dart/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dart-lang/setup-dart/compare/6a218f2413a3e78e9087f638a238f6b40893203d...b64355ae6ca0b5d484f0106a033dd1388965d06d)

---
updated-dependencies:
- dependency-name: dart-lang/setup-dart
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore: update flutter/scripts/update-android.sh to 6.33.0 (#1710)

Co-authored-by: GitHub <noreply@github.com>

* build(deps): bump subosito/flutter-action from 2.10.0 to 2.12.0 (#1711)

Bumps [subosito/flutter-action](https://github.com/subosito/flutter-action) from 2.10.0 to 2.12.0.
- [Release notes](https://github.com/subosito/flutter-action/releases)
- [Commits](https://github.com/subosito/flutter-action/compare/48cafc24713cca54bbe03cdc3a423187d413aafa...2783a3f08e1baf891508463f8c6653c258246225)

---
updated-dependencies:
- dependency-name: subosito/flutter-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Add `attachScreenshotOnlyWhenResumed` to options (#1700)

* chore: update flutter/scripts/update-android.sh to 6.33.1 (#1713)

Co-authored-by: GitHub <noreply@github.com>

* chore: update flutter/scripts/update-cocoa.sh to 8.15.0 (#1712)

Co-authored-by: GitHub <noreply@github.com>

* chore: update flutter/scripts/update-cocoa.sh to 8.15.1 (#1714)

Co-authored-by: GitHub <noreply@github.com>

* fix: unsupported types with expando (#1690)

* Support string, int, double and bool as throwable for expando

* Rename the test file and move it to utils folder{

* Remvoe ffi import

* Update changelog

* Try other url for dio pubspec doc url

* Change doc url of logging pubspec

* Remove unnecessary code

* Update naming

* Rename

* chore: update flutter/scripts/update-cocoa.sh to 8.15.2 (#1717)

Co-authored-by: GitHub <noreply@github.com>

* Parse message field in `PlatformException.message` (#1716)

* Parse message field

* changelog

* Update CHANGELOG.md

* Bump natiginfo/action-detekt-all from 1.21.0 to 1.23.1 (#1684)

* Bump natiginfo/action-detekt-all from 1.21.0 to 1.23.1

Bumps [natiginfo/action-detekt-all](https://github.com/natiginfo/action-detekt-all) from 1.21.0 to 1.23.1.
- [Release notes](https://github.com/natiginfo/action-detekt-all/releases)
- [Commits](https://github.com/natiginfo/action-detekt-all/compare/e01de6ff0eef7c24131e8a133bf598cfac6ceeab...be3c18799c7c392b2f41a674beed9ced7ae2f21b)

---
updated-dependencies:
- dependency-name: natiginfo/action-detekt-all
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix braces

* Add missing trailing comma

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump natiginfo/action-detekt-all from 1.23.1 to 1.23.3 (#1722)

Bumps [natiginfo/action-detekt-all](https://github.com/natiginfo/action-detekt-all) from 1.23.1 to 1.23.3.
- [Release notes](https://github.com/natiginfo/action-detekt-all/releases)
- [Commits](https://github.com/natiginfo/action-detekt-all/compare/be3c18799c7c392b2f41a674beed9ced7ae2f21b...68eb02dd9f2c2686d5026f5957756064424261a9)

---
updated-dependencies:
- dependency-name: natiginfo/action-detekt-all
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Remove renderer on Dart:io platforms (#1723)

* Remove renderer on dart:io platforms

* Tests + changelog

* Update CHANGELOG.md

* Fix tests

* fix more tests

* feat: drift apm (#1709)

* draft impl

* improve code

* Add open span

* Refactor to extend lazy database

* Update

* SentryTransactionExecutor

* Implement tracing batch and transactions

* Update tests

* update changelog

* Formatting

* Update workflows

* Update deps

* Fix analyze issues

* Format

* Add example

* Update descriptions

* Fix deps

* Update run commands

* Update workflow

* Update example

* Update workflow

* Format

* Fix dart analyze

* Try changing deps

* Add to craft

* Change to flutter test

* Revert flutter test mock

* change dir manually

* download and extract sqlite.dll for windows

* Try downloading sqlite3

* set up dart

* fix path to file

* use pub get

* Use flutter pub get

* fix

* skip windows test

* fix analyze

* fix drift.yml

* format

* Remove redundant test

* Remove debug print

* update trace origin

* Improvements

* Improvements

* Add to flutter example

* fix: setting the correct locale to contexts with navigatorKey (#1724)

* Add localization with navigatorKey

* Update CHANGELOG

* Update tests

* Update tests

* Format

* Remove unused import

* Apply review improvements

* Update CHANGELOG

* APM for hive (#1672)

* setup sentry hive library

* Add SentryBox with first test

* test added spans

* Add sentry hive impl

* introduce base box to avoid duplication

* implement lazy box test

* expose sentry hive and updata documentation

* add hive to flutter example app

* test throwing in base_box, cleanup

* test lazy box error cases

* test sentry hive impl failures

* run fix & format

* fix test failure race condition

* add hive workflow, update other workflows

* add changelog entry

* remove path+provider from dev_dependencies

* add coverage dev dependency

* fix deprecation warnings

* fix changelog

* move span wrapping on own class to avoid duplication

* add sentry box collection

* test added spans, fix imports

* test throwing code

* fix changelog

* change dbSystem value

* change db system

* remove unneccessary async & await

* Fix analyze

* Formatting

* Add changelog symlink

* Ignore hive coverage

* Create symlink for dartdoc_options

---------

Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* release: 7.13.0

* Fixes release of drift & hive (#1729)

* Add integrations

* Readd changelog

* Add drift and hive to bump versions

* Formatting and analyze

* Update CHANGELOG and fix test

* Update changelog

* fix analyze issue

* release: 7.13.1

* Fix formatting and analyze ci issues (#1733)

* Fix analysis

* Update readme

* run format

* Add drift and hive as craft registry target (#1731)

* Add drift and hive as registry target

* build(deps): bump dart-lang/setup-dart from 1.3.0 to 1.6.0 (#1743)

Bumps [dart-lang/setup-dart](https://github.com/dart-lang/setup-dart) from 1.3.0 to 1.6.0.
- [Release notes](https://github.com/dart-lang/setup-dart/releases)
- [Changelog](https://github.com/dart-lang/setup-dart/blob/main/CHANGELOG.md)
- [Commits](https://github.com/dart-lang/setup-dart/compare/v1.3...b64355ae6ca0b5d484f0106a033dd1388965d06d)

---
updated-dependencies:
- dependency-name: dart-lang/setup-dart
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update Android SDK to v6.34.0 (#1746)

* chore: update flutter/scripts/update-android.sh to 6.34.0

* Update CHANGELOG

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* deps: update `package_info_plus` constraints (#1749)

* Update constraints

* Update CHANGELOG

* release: 7.13.2

* build(deps): bump codecov/codecov-action from 3.1.1 to 3.1.4 (#1742)

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3.1.1 to 3.1.4.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/codecov/codecov-action/compare/v3.1.1...eaaf4bedf32dbdc6b720b63067d99c4d77d6047d)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump styfle/cancel-workflow-action from 0.11.0 to 0.12.0 (#1741)

Bumps [styfle/cancel-workflow-action](https://github.com/styfle/cancel-workflow-action) from 0.11.0 to 0.12.0.
- [Release notes](https://github.com/styfle/cancel-workflow-action/releases)
- [Commits](https://github.com/styfle/cancel-workflow-action/compare/0.11.0...01ce38bf961b4e243a6342cbade0dbc8ba3f0432)

---
updated-dependencies:
- dependency-name: styfle/cancel-workflow-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump actions/checkout from 3 to 4 (#1740)

Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump VeryGoodOpenSource/very_good_coverage (#1739)

Bumps [VeryGoodOpenSource/very_good_coverage](https://github.com/verygoodopensource/very_good_coverage) from 2.1.0 to 2.2.0.
- [Release notes](https://github.com/verygoodopensource/very_good_coverage/releases)
- [Changelog](https://github.com/VeryGoodOpenSource/very_good_coverage/blob/main/CHANGELOG.md)
- [Commits](https://github.com/verygoodopensource/very_good_coverage/compare/e5c91bc7ce9843e87c800b3bcafdfb86fbe28491...3b475421464c564c0714d92ce02742bd81fa9eda)

---
updated-dependencies:
- dependency-name: VeryGoodOpenSource/very_good_coverage
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore: update scripts/update-symbol-collector.sh to 1.13.0 (#1737)

Co-authored-by: GitHub <noreply@github.com>

* chore: update scripts/update-symbol-collector.sh to 1.13.0 (#1754)

Co-authored-by: GitHub <noreply@github.com>

* Add option to opt out of fatal level for automatically collected errors (#1738)

* build(deps): bump natiginfo/action-detekt-all from 1.23.3 to 1.23.4 (#1758)

Bumps [natiginfo/action-detekt-all](https://github.com/natiginfo/action-detekt-all) from 1.23.3 to 1.23.4.
- [Release notes](https://github.com/natiginfo/action-detekt-all/releases)
- [Commits](https://github.com/natiginfo/action-detekt-all/compare/68eb02dd9f2c2686d5026f5957756064424261a9...1349d3d957cba64d7b6b2752ef874d1e03e402a2)

---
updated-dependencies:
- dependency-name: natiginfo/action-detekt-all
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): update Cocoa SDK to v8.17.0 (#1761)

* chore: update flutter/scripts/update-cocoa.sh to 8.17.0

* Apply format

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* build(deps): bump subosito/flutter-action from 2.10.0 to 2.12.0 (#1759)

Bumps [subosito/flutter-action](https://github.com/subosito/flutter-action) from 2.10.0 to 2.12.0.
- [Release notes](https://github.com/subosito/flutter-action/releases)
- [Commits](https://github.com/subosito/flutter-action/compare/v2.10.0...2783a3f08e1baf891508463f8c6653c258246225)

---
updated-dependencies:
- dependency-name: subosito/flutter-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* chore: update metrics/flutter.properties to 3.16.1 (#1760)

Co-authored-by: GitHub <noreply@github.com>

* fix(example): web obfuscation not working (#1766)

* Add debug_meta to all events (#1756)

* load_image_list_integration now appends debug_meta info to all non-transaction events with a stacktrace, instead of checking for Exception existence

* chore: Update README to include drift and hive (#1735)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>
Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: getsentry-bot <bot@sentry.io>
Co-authored-by: Denis Andrašec <denrase@gmail.com>

* chore: update metrics/flutter.properties to 3.16.2 (#1769)

Co-authored-by: GitHub <noreply@github.com>

* chore(deps): update Cocoa SDK to v8.17.1 (#1771)

* chore: update flutter/scripts/update-cocoa.sh to 8.17.1

* Formatting

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>

* Add `Hive` breadcrumbs (#1773)

* improvements(example): fix router navigation issue and add improvements (#1767)

* Change http url and add route navigation observer example

* Remove comment

* Improve sample

* Format

* Add padding

* Fix analyze issues

* build(deps): bump actions/setup-java from 3 to 4 (#1772)

Bumps [actions/setup-java](https://github.com/actions/setup-java) from 3 to 4.
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](https://github.com/actions/setup-java/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/setup-java
  depe…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Symbol upload for Flutter framework
4 participants