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

fix(deps): update dependency sentry_flutter to v8.7.0 #1319

Merged
merged 2 commits into from
Aug 20, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 9, 2024

Mend Renovate

This PR contains the following updates:

Package Type Update Change
sentry_flutter (source) dependencies minor 8.5.0 -> 8.7.0

Release Notes

getsentry/sentry-dart (sentry_flutter)

v8.7.0

Compare Source

Features
  • Add support for span level measurements. (#​2214)
  • Add ignoreTransactions and ignoreErrors to options (#​2207)
    await SentryFlutter.init(
      (options) {
        options.dsn = 'https://examplePublicKey@o0.ingest.sentry.io/0';
        options.ignoreErrors = ["my-error", "^error-.*\$"];
        options.ignoreTransactions = ["my-transaction", "^transaction-.*\$"];
        ...
      },
      appRunner: () => runApp(MyApp()),
    );
  • Add proxy support (#​2192)
    • Configure a SentryProxy object and set it on SentryFlutter.init
    import 'package:flutter/widgets.dart';
    import 'package:sentry_flutter/sentry_flutter.dart';
    
    Future<void> main() async {
      await SentryFlutter.init(
        (options) {
          options.dsn = 'https://example@sentry.io/add-your-dsn-here';
          options.proxy = SentryProxy(
            type: SenryProxyType.http,
            host: 'localhost',
            port: 8080,
          );
        },
        // Init your App.
        appRunner: () => runApp(MyApp()),
      );
    }
Improvements
  • Deserialize and serialize unknown fields (#​2153)
Dependencies

v8.6.0

Compare Source

Improvements
  • Add error type identifier to improve obfuscated Flutter issue titles (#​2170)
    • Example: transforms issue titles from GA to FlutterError or minified:nE to FlutterError
    • This is enabled automatically and will change grouping if you already have issues with obfuscated titles
    • If you want to disable this feature, set enableExceptionTypeIdentification to false in your Sentry options
    • You can add your custom exception identifier if there are exceptions that we do not identify out of the box
// How to add your own custom exception identifier
class MyCustomExceptionIdentifier implements ExceptionIdentifier {
  @&#8203;override
  String? identifyType(Exception exception) {
    if (exception is MyCustomException) {
      return 'MyCustomException';
    }
    if (exception is MyOtherCustomException) {
      return 'MyOtherCustomException';
    }
    return null;
  }
}

SentryFlutter.init((options) =>
  options..prependExceptionTypeIdentifier(MyCustomExceptionIdentifier()));
Deprecated
  • Deprecate enableTracing (#​2199)
    • The enableTracing option has been deprecated and will be removed in the next major version. We recommend removing it
      in favor of the tracesSampleRate and tracesSampler options. If you want to enable performance monitoring, please set
      the tracesSampleRate to a sample rate of your choice, or provide a sampling function as tracesSampler option
      instead. If you want to disable performance monitoring, remove the tracesSampler and tracesSampleRate options.
Dependencies

Configuration

📅 Schedule: Branch creation - "after 6pm every weekday,every weekend" in timezone Australia/Sydney, Automerge - "after 6pm every weekday,every weekend" in timezone Australia/Sydney.

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies label Aug 9, 2024
@renovate renovate bot enabled auto-merge (squash) August 9, 2024 12:06
@renovate renovate bot force-pushed the renovate/sentry_flutter-8.x branch from 3717f7d to 3b57393 Compare August 20, 2024 22:49
@renovate renovate bot changed the title fix(deps): update dependency sentry_flutter to v8.6.0 fix(deps): update dependency sentry_flutter to v8.7.0 Aug 20, 2024
@renovate renovate bot merged commit 276192b into main Aug 20, 2024
20 checks passed
@renovate renovate bot deleted the renovate/sentry_flutter-8.x branch August 20, 2024 23:04
zeshuaro pushed a commit that referenced this pull request Aug 25, 2024
## [2.2.0](v2.1.8...v2.2.0) (2024-08-25)

### Features

* **sdk:** update dependency flutter to v3.24.0 ([#1316](#1316)) ([eb655b2](eb655b2))

### Bug Fixes

* **deps:** update dependency device_preview_plus to v2.1.0 ([#1324](#1324)) ([2036fea](2036fea))
* **deps:** update dependency dio to v5.6.0 ([#1328](#1328)) ([c43d33a](c43d33a))
* **deps:** update dependency sentry_flutter to v8.7.0 ([#1319](#1319)) ([276192b](276192b))
* **deps:** update dependency shared_preferences to v2.3.2 ([#1332](#1332)) ([459a8a8](459a8a8))
* **sdk:** update dependency flutter to v3.24.1 ([#1330](#1330)) ([f28bf2e](f28bf2e))

### Miscellaneous Chores

* **deps:** lock file maintenance ([#1325](#1325)) ([fa50254](fa50254))
* **deps:** update dependency build_runner to v2.4.12 ([#1312](#1312)) ([9b54756](9b54756))
* **deps:** update dependency semantic-release to v24.1.0 ([#1327](#1327)) ([19c8d6e](19c8d6e))
* **deps:** update dependency semantic-release-pub to v0.8.23 ([#1329](#1329)) ([1da1a9d](1da1a9d))
* **node:** update dependency node to v20.17.0 ([#1331](#1331)) ([a0524f9](a0524f9))

### Continuous Integration

* **deps:** update zeshuaro/github-actions-workflows digest to 5e6badf ([#1334](#1334)) ([8cc1593](8cc1593))
* **deps:** update zeshuaro/github-actions-workflows digest to e887a1d ([#1333](#1333)) ([8b21eb6](8b21eb6))
@zeshuaro
Copy link
Owner

🎉 This issue has been resolved in version 2.2.0 🎉

The release is available on:

Your semantic-release bot 📦🚀

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Sep 25, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant