-
-
Notifications
You must be signed in to change notification settings - Fork 37
ref(build): Consolidate sentry-java version into version catalog #1245
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
base: main
Are you sure you want to change the base?
Changes from all commits
91a36c2
30df376
7e7d84b
b901140
afdf31a
8251bf6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,7 +5,7 @@ agp = "8.10.1" | |
| asm = "9.4" # // compatibility matrix -> https://developer.android.com/reference/tools/gradle-api/7.1/com/android/build/api/instrumentation/InstrumentationContext#apiversion | ||
| ktfmt = "0.51" | ||
| sqlite = "2.1.0" | ||
| sentry = "7.0.0" | ||
| sentry = "8.43.0" | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. potentially bumping this all the time would require us adapting SentryTelemetryService, but that's probably a good thing |
||
|
|
||
| sampleCoroutines = "1.5.2" | ||
| sampleRoom = "2.7.2" | ||
|
|
@@ -51,7 +51,6 @@ sqlite = { group = "androidx.sqlite", name = "sqlite", version.ref = "sqlite" } | |
| sqliteFramework = { group = "androidx.sqlite", name = "sqlite-framework", version.ref = "sqlite" } | ||
| sentry = { group = "io.sentry", name = "sentry", version.ref = "sentry" } | ||
| sentryAndroid = { group = "io.sentry", name = "sentry-android", version.ref = "sentry" } | ||
| sentryAndroidOkhttp = { group = "io.sentry", name = "sentry-android-okhttp", version.ref = "sentry" } | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. could we still keep it at a fixed version and drop that codepath (and the dep) in the next major of the plugin altogether? |
||
| sentryOkhttp = { group = "io.sentry", name = "sentry-okhttp", version.ref = "sentry" } | ||
| sentrySpringBootJakarta = { group = "io.sentry", name = "sentry-spring-boot-starter-jakarta", version.ref = "sentry" } | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,10 +2,10 @@ | |
| set -euo pipefail | ||
|
|
||
| cd $(dirname "$0")/../ | ||
| file='plugin-build/gradle.properties' | ||
| file='gradle/libs.versions.toml' | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I have a feeling that there is a bug here with dependabot and included builds and |
||
| content=$(cat $file) | ||
|
|
||
| regex='(sdk_version = *)([0-9\.]+)' | ||
| regex='(sentry = ")([^"]+)' | ||
| if ! [[ $content =~ $regex ]]; then | ||
| echo "Failed to find the Android SDK version in $file" | ||
| exit 1 | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i'm wondering why dependabot never updated this.