diff --git a/.github/workflows/analyze.yml b/.github/workflows/analyze.yml index a94d14027a..0646cf5284 100644 --- a/.github/workflows/analyze.yml +++ b/.github/workflows/analyze.yml @@ -24,10 +24,7 @@ jobs: access_token: ${{ github.token }} analyze: - # `invertase/github-action-dart-analyzer` is using `flutter pub upgrade` instead of `get`, - # which ignores pubspec.yaml `dependency_overrides`. Because of that, all `release/*` branches are failing, - # because the package cannot find the "about to be released" version of our sentry-dart package that it depends on. - if: ${{ !startsWith(github.ref, 'refs/heads/release/') && inputs.panaThreshold > 0 }} + if: ${{ !startsWith(github.ref, 'refs/heads/release/') }} runs-on: ubuntu-latest timeout-minutes: 20 defaults: diff --git a/CHANGELOG.md b/CHANGELOG.md index c704a91808..f730690aa8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 6.18.0 ### Features diff --git a/dart/lib/src/version.dart b/dart/lib/src/version.dart index 8b72e5fafa..fb5872c27e 100644 --- a/dart/lib/src/version.dart +++ b/dart/lib/src/version.dart @@ -9,7 +9,7 @@ library version; /// The SDK version reported to Sentry.io in the submitted events. -const String sdkVersion = '6.17.0'; +const String sdkVersion = '6.18.0'; String sdkName(bool isWeb) => isWeb ? _browserSdkName : _ioSdkName; diff --git a/dart/pubspec.yaml b/dart/pubspec.yaml index a4a5ba51a5..07262b2eb9 100644 --- a/dart/pubspec.yaml +++ b/dart/pubspec.yaml @@ -1,5 +1,5 @@ name: sentry -version: 6.17.0 +version: 6.18.0 description: > A crash reporting library for Dart that sends crash reports to Sentry.io. This library supports Dart VM and Web. For Flutter consider sentry_flutter instead. diff --git a/dio/pubspec.yaml b/dio/pubspec.yaml index 050eb3d5c9..1263eae78c 100644 --- a/dio/pubspec.yaml +++ b/dio/pubspec.yaml @@ -1,6 +1,6 @@ name: sentry_dio description: An integration which adds support for performance tracing for the Dio package. -version: 6.17.0 +version: 6.18.0 homepage: https://docs.sentry.io/platforms/dart/ repository: https://github.com/getsentry/sentry-dart issue_tracker: https://github.com/getsentry/sentry-dart/issues @@ -10,7 +10,7 @@ environment: dependencies: dio: ^4.0.0 - sentry: 6.17.0 + sentry: 6.18.0 dev_dependencies: meta: ^1.3.0 diff --git a/file/lib/src/version.dart b/file/lib/src/version.dart index e8297f135c..6dc27cf4cf 100644 --- a/file/lib/src/version.dart +++ b/file/lib/src/version.dart @@ -1,2 +1,2 @@ /// The SDK version reported to Sentry.io in the submitted events. -const String sdkVersion = '6.17.0'; +const String sdkVersion = '6.18.0'; diff --git a/file/pubspec.yaml b/file/pubspec.yaml index fe353892c8..4d17bfa4ca 100644 --- a/file/pubspec.yaml +++ b/file/pubspec.yaml @@ -1,6 +1,6 @@ name: sentry_file description: An integration which adds support for performance tracing for dart.io.File. -version: 6.17.0 +version: 6.18.0 homepage: https://docs.sentry.io/platforms/dart/ repository: https://github.com/getsentry/sentry-dart issue_tracker: https://github.com/getsentry/sentry-dart/issues @@ -10,7 +10,7 @@ environment: sdk: '>=2.12.0 <2.19.0' dependencies: - sentry: 6.17.0 + sentry: 6.18.0 meta: ^1.3.0 dev_dependencies: diff --git a/flutter/example/pubspec.yaml b/flutter/example/pubspec.yaml index 2f899397fb..c535c0860d 100644 --- a/flutter/example/pubspec.yaml +++ b/flutter/example/pubspec.yaml @@ -1,6 +1,6 @@ name: sentry_flutter_example description: Demonstrates how to use the sentry_flutter plugin. -version: 6.17.0 +version: 6.18.0 publish_to: 'none' # Remove this line if you wish to publish to pub.dev diff --git a/flutter/lib/src/version.dart b/flutter/lib/src/version.dart index 43bf686013..c1cedde821 100644 --- a/flutter/lib/src/version.dart +++ b/flutter/lib/src/version.dart @@ -1,5 +1,5 @@ /// The SDK version reported to Sentry.io in the submitted events. -const String sdkVersion = '6.17.0'; +const String sdkVersion = '6.18.0'; /// The default SDK name reported to Sentry.io in the submitted events. const String sdkName = 'sentry.dart.flutter'; diff --git a/flutter/pubspec.yaml b/flutter/pubspec.yaml index f03d97785f..3318296a7d 100644 --- a/flutter/pubspec.yaml +++ b/flutter/pubspec.yaml @@ -1,5 +1,5 @@ name: sentry_flutter -version: 6.17.0 +version: 6.18.0 description: Sentry SDK for Flutter. This package aims to support different Flutter targets by relying on the many platforms supported by Sentry with native SDKs. homepage: https://docs.sentry.io/platforms/flutter/ repository: https://github.com/getsentry/sentry-dart @@ -14,7 +14,7 @@ dependencies: sdk: flutter flutter_web_plugins: sdk: flutter - sentry: 6.17.0 + sentry: 6.18.0 package_info_plus: '>=1.0.0 <4.0.0' meta: ^1.3.0 diff --git a/logging/lib/src/version.dart b/logging/lib/src/version.dart index 28dd32bca8..db68c01301 100644 --- a/logging/lib/src/version.dart +++ b/logging/lib/src/version.dart @@ -1,5 +1,5 @@ /// The SDK version reported to Sentry.io in the submitted events. -const String sdkVersion = '6.17.0'; +const String sdkVersion = '6.18.0'; /// The package name reported to Sentry.io in the submitted events. const String packageName = 'pub:sentry_logging'; diff --git a/logging/pubspec.yaml b/logging/pubspec.yaml index d19c6e36e4..1e5f106d1d 100644 --- a/logging/pubspec.yaml +++ b/logging/pubspec.yaml @@ -1,6 +1,6 @@ name: sentry_logging description: An integration which adds support for recording log from the logging package. -version: 6.17.0 +version: 6.18.0 homepage: https://docs.sentry.io/platforms/flutter/ repository: https://github.com/getsentry/sentry-dart issue_tracker: https://github.com/getsentry/sentry-dart/issues @@ -10,7 +10,7 @@ environment: dependencies: logging: ^1.0.0 - sentry: 6.17.0 + sentry: 6.18.0 dev_dependencies: lints: ^2.0.0