Skip to content

Commit 69d6404

Browse files
committed
Merge branch 'main' into feat/hive
2 parents 08cfc16 + 64e4616 commit 69d6404

File tree

9 files changed

+58
-10
lines changed

9 files changed

+58
-10
lines changed

.github/dependabot.yml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: pub
4+
directory: /dart
5+
schedule:
6+
interval: weekly
7+
open-pull-requests-limit: 2
8+
versioning-strategy: increase-if-necessary
9+
10+
- package-ecosystem: pub
11+
directory: /flutter
12+
schedule:
13+
interval: weekly
14+
open-pull-requests-limit: 2
15+
versioning-strategy: increase-if-necessary
16+
17+
- package-ecosystem: pub
18+
directory: /dio
19+
schedule:
20+
interval: weekly
21+
open-pull-requests-limit: 2
22+
versioning-strategy: increase-if-necessary
23+
24+
- package-ecosystem: pub
25+
directory: /file
26+
schedule:
27+
interval: weekly
28+
open-pull-requests-limit: 2
29+
versioning-strategy: increase-if-necessary
30+
31+
- package-ecosystem: pub
32+
directory: /logging
33+
schedule:
34+
interval: weekly
35+
open-pull-requests-limit: 2
36+
versioning-strategy: increase-if-necessary
37+
38+
- package-ecosystem: pub
39+
directory: /sqflite
40+
schedule:
41+
interval: weekly
42+
open-pull-requests-limit: 2
43+
versioning-strategy: increase-if-necessary
44+
45+
- package-ecosystem: github-actions
46+
directory: /
47+
schedule:
48+
interval: weekly

.github/workflows/dart.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
dart pub get
7171
webdev build
7272
73-
- uses: codecov/codecov-action@d9f34f8cd5cb3b3eb79b3e4b5dae3a16df499a70 # pin@v3
73+
- uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # pin@v3
7474
if: runner.os == 'Linux' && matrix.sdk == 'stable'
7575
with:
7676
name: sentry

.github/workflows/dio.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
dart test -p vm --coverage=coverage --test-randomize-ordering-seed=random --chain-stack-traces
5454
dart pub run coverage:format_coverage --lcov --in=coverage --out=coverage/lcov.info --packages=.dart_tool/package_config.json --report-on=lib
5555
56-
- uses: codecov/codecov-action@d9f34f8cd5cb3b3eb79b3e4b5dae3a16df499a70 # pin@v3
56+
- uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # pin@v3
5757
if: runner.os == 'Linux' && matrix.sdk == 'stable'
5858
with:
5959
name: sentry_dio

.github/workflows/file.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
dart test -p vm --coverage=coverage --test-randomize-ordering-seed=random --chain-stack-traces
5353
dart pub run coverage:format_coverage --lcov --in=coverage --out=coverage/lcov.info --packages=.dart_tool/package_config.json --report-on=lib
5454
55-
- uses: codecov/codecov-action@d9f34f8cd5cb3b3eb79b3e4b5dae3a16df499a70 # pin@v3
55+
- uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # pin@v3
5656
if: runner.os == 'Linux' && matrix.sdk == 'stable'
5757
with:
5858
name: sentry_file

.github/workflows/flutter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
cd flutter
106106
flutter test --coverage --test-randomize-ordering-seed=random
107107
108-
- uses: codecov/codecov-action@d9f34f8cd5cb3b3eb79b3e4b5dae3a16df499a70 # pin@v3
108+
- uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # pin@v3
109109
if: runner.os == 'Linux' && matrix.sdk == 'stable' && matrix.target == 'linux'
110110
with:
111111
name: sentry_flutter

.github/workflows/logging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
dart test -p vm --coverage=coverage --test-randomize-ordering-seed=random --chain-stack-traces
5454
dart pub run coverage:format_coverage --lcov --in=coverage --out=coverage/lcov.info --packages=.dart_tool/package_config.json --report-on=lib
5555
56-
- uses: codecov/codecov-action@d9f34f8cd5cb3b3eb79b3e4b5dae3a16df499a70 # pin@v3
56+
- uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # pin@v3
5757
if: runner.os == 'Linux' && matrix.sdk == 'stable'
5858
with:
5959
name: sentry_logging

.github/workflows/sqflite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
cd sqflite
9595
flutter test --coverage --test-randomize-ordering-seed=random
9696
97-
- uses: codecov/codecov-action@d9f34f8cd5cb3b3eb79b3e4b5dae3a16df499a70 # pin@v3
97+
- uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # pin@v3
9898
if: runner.os == 'Linux' && matrix.sdk == 'stable' && matrix.target == 'linux'
9999
with:
100100
name: sentry_sqflite

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
### Dependencies
1010

1111
- Enable compatibility with uuid v4 ([#1647](https://github.com/getsentry/sentry-dart/pull/1647))
12-
- Bump Android SDK from v6.29.0 to v6.31.0 ([#1660](https://github.com/getsentry/sentry-dart/pull/1660), [#1676](https://github.com/getsentry/sentry-dart/pull/1676))
13-
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#6310)
14-
- [diff](https://github.com/getsentry/sentry-java/compare/6.29.0...6.31.0)
12+
- Bump Android SDK from v6.29.0 to v6.32.0 ([#1660](https://github.com/getsentry/sentry-dart/pull/1660), [#1676](https://github.com/getsentry/sentry-dart/pull/1676), [#1688](https://github.com/getsentry/sentry-dart/pull/1688))
13+
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#6320)
14+
- [diff](https://github.com/getsentry/sentry-java/compare/6.29.0...6.32.0)
1515
- Bump Cocoa SDK from v8.11.0 to v8.13.1 ([#1650](https://github.com/getsentry/sentry-dart/pull/1650), [#1655](https://github.com/getsentry/sentry-dart/pull/1655), [#1677](https://github.com/getsentry/sentry-dart/pull/1677))
1616
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8131)
1717
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.11.0...8.13.1)

flutter/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ android {
6060
}
6161

6262
dependencies {
63-
api 'io.sentry:sentry-android:6.31.0'
63+
api 'io.sentry:sentry-android:6.32.0'
6464
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
6565

6666
// Required -- JUnit 4 framework

0 commit comments

Comments
 (0)