File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed
sentry-kotlin-multiplatform/src/commonJvmMain/kotlin/io/sentry/kotlin/multiplatform Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1111
1212jobs :
1313 cocoa :
14- uses : getsentry/github-workflows/.github/workflows/updater.yml@v1
14+ uses : getsentry/github-workflows/.github/workflows/updater.yml@v2
1515 with :
1616 path : scripts/update-cocoa.sh
1717 name : Cocoa SDK
2020 api_token : ${{ secrets.CI_DEPLOY_KEY }}
2121
2222 java :
23- uses : getsentry/github-workflows/.github/workflows/updater.yml@v1
23+ uses : getsentry/github-workflows/.github/workflows/updater.yml@v2
2424 with :
2525 path : scripts/update-java.sh
2626 name : Java SDK
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import io.sentry.kotlin.multiplatform.extensions.toKmpUser
88import io.sentry.kotlin.multiplatform.protocol.Breadcrumb
99import io.sentry.kotlin.multiplatform.protocol.User
1010
11- internal class JvmScopeProvider (private val scope : JvmScope ) : Scope {
11+ internal class JvmScopeProvider (private val scope : JvmIScope ) : Scope {
1212
1313 override var level: SentryLevel ?
1414 set(value) {
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ internal actual object SentryBridge {
6161 Sentry .close()
6262 }
6363
64- private fun configureScopeCallback (scopeCallback : ScopeCallback ): (JvmScope ) -> Unit {
64+ private fun configureScopeCallback (scopeCallback : ScopeCallback ): (JvmIScope ) -> Unit {
6565 return {
6666 val jvmScopeProvider = JvmScopeProvider (it)
6767 scopeCallback.invoke(jvmScopeProvider)
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ package io.sentry.kotlin.multiplatform
22
33import io.sentry.Attachment
44import io.sentry.Breadcrumb
5+ import io.sentry.IScope
56import io.sentry.Scope
67import io.sentry.SentryEvent
78import io.sentry.SentryLevel
@@ -16,6 +17,7 @@ import io.sentry.protocol.User
1617internal typealias JvmSentryLevel = SentryLevel
1718internal typealias JvmUser = User
1819internal typealias JvmScope = Scope
20+ internal typealias JvmIScope = IScope
1921internal typealias JvmBreadcrumb = Breadcrumb
2022internal typealias JvmSentryId = SentryId
2123internal typealias JvmSentryOptions = SentryOptions
You can’t perform that action at this time.
0 commit comments