Skip to content

Commit baf423c

Browse files
authored
Merge branch 'main' into dependabot/github_actions/actions/configure-pages-5
2 parents e0a912a + 8d6eb54 commit baf423c

File tree

14 files changed

+73
-24
lines changed

14 files changed

+73
-24
lines changed

.github/workflows/kotlin-multiplatform-gradle-plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
restore-keys: ${{ runner.os }}-konan-
3535

3636
- name: Cached Gradle
37-
uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a
37+
uses: gradle/gradle-build-action@ac2d340dc04d9e1113182899e983b5400c17cda1
3838

3939
- name: Build
4040
run: |

.github/workflows/kotlin-multiplatform.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
restore-keys: ${{ runner.os }}-konan-
3232

3333
- name: Cached Gradle
34-
uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a
34+
uses: gradle/gradle-build-action@ac2d340dc04d9e1113182899e983b5400c17cda1
3535

3636
- name: Apple build
3737
run: |
@@ -59,7 +59,7 @@ jobs:
5959
restore-keys: ${{ runner.os }}-konan-
6060

6161
- name: Cached Gradle
62-
uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a
62+
uses: gradle/gradle-build-action@ac2d340dc04d9e1113182899e983b5400c17cda1
6363

6464
- name: Apple build
6565
run: |
@@ -78,7 +78,7 @@ jobs:
7878
distribution: temurin
7979

8080
- name: Cached Gradle
81-
uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a
81+
uses: gradle/gradle-build-action@ac2d340dc04d9e1113182899e983b5400c17cda1
8282

8383
- name: JVM build
8484
run: |
@@ -108,7 +108,7 @@ jobs:
108108
distribution: temurin
109109

110110
- name: Cached Gradle
111-
uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a
111+
uses: gradle/gradle-build-action@ac2d340dc04d9e1113182899e983b5400c17cda1
112112

113113
- name: Test samples
114114
run: |

.github/workflows/upload-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
distribution: temurin
2323

2424
- name: Cached Gradle
25-
uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a
25+
uses: gradle/gradle-build-action@ac2d340dc04d9e1113182899e983b5400c17cda1
2626

2727
- name: DistZip libraries
2828
run: |

CHANGELOG.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,22 @@
22

33
## Unreleased
44

5+
### Fixes
6+
7+
- Do not throw if exec operation fails ([#360](https://github.com/getsentry/sentry-kotlin-multiplatform/pull/360))
8+
9+
### Miscellaneous
10+
11+
- Update native android sdk name to `sentry.native.android.kmp` ([#353](https://github.com/getsentry/sentry-kotlin-multiplatform/pull/353))
12+
513
### Dependencies
614

7-
- Bump Cocoa SDK from v8.44.0 to v8.48.0 ([#345](https://github.com/getsentry/sentry-kotlin-multiplatform/pull/345))
8-
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8480)
9-
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.44.0...8.48.0)
10-
- Bump Java SDK from v7.18.1 to v8.6.0 ([#350](https://github.com/getsentry/sentry-kotlin-multiplatform/pull/350))
11-
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#860)
12-
- [diff](https://github.com/getsentry/sentry-java/compare/7.18.1...8.6.0)
15+
- Bump Cocoa SDK from v8.44.0 to v8.49.0 ([#345](https://github.com/getsentry/sentry-kotlin-multiplatform/pull/345), [#363](https://github.com/getsentry/sentry-kotlin-multiplatform/pull/363))
16+
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8490)
17+
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.44.0...8.49.0)
18+
- Bump Java SDK from v7.18.1 to v8.8.0 ([#350](https://github.com/getsentry/sentry-kotlin-multiplatform/pull/350), [#364](https://github.com/getsentry/sentry-kotlin-multiplatform/pull/364))
19+
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#880)
20+
- [diff](https://github.com/getsentry/sentry-java/compare/7.18.1...8.8.0)
1321

1422
## 0.11.0
1523

buildSrc/src/main/java/Config.kt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ object Config {
3232
object Libs {
3333
val kotlinStd = "org.jetbrains.kotlin:kotlin-stdlib"
3434

35-
val sentryJavaVersion = "8.6.0"
35+
val sentryJavaVersion = "8.8.0"
3636
val sentryAndroid = "io.sentry:sentry-android:$sentryJavaVersion"
3737
val sentryJava = "io.sentry:sentry:$sentryJavaVersion"
3838

39-
val sentryCocoaVersion = "8.48.0"
39+
val sentryCocoaVersion = "8.49.0"
4040
val sentryCocoa = "Sentry"
4141

4242
object Samples {
@@ -83,6 +83,7 @@ object Config {
8383
val kmpCocoaSdkName = "sentry.cocoa.kmp"
8484
val kmpJavaSdkName = "sentry.java.kmp"
8585
val kmpAndroidSdkName = "sentry.java.android.kmp"
86+
val kmpNativeAndroidSdkName = "sentry.native.android.kmp"
8687
val javaPackageName = "maven:io.sentry:sentry"
8788
val androidPackageName = "maven:io.sentry:sentry-android"
8889
val cocoaPackageName = "cocoapods:sentry-cocoa"

sentry-kotlin-multiplatform-gradle-plugin/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ id=io.sentry.kotlin.multiplatform.gradle
22
implementationClass=io.sentry.kotlin.multiplatform.gradle.SentryPlugin
33
versionName=0.11.0
44
group=io.sentry
5-
sentryCocoaVersion=8.48.0
5+
sentryCocoaVersion=8.49.0
66

77
# publication pom properties
88
POM_NAME=Sentry Kotlin Multiplatform Gradle Plugin

sentry-kotlin-multiplatform-gradle-plugin/src/main/java/io/sentry/kotlin/multiplatform/gradle/DerivedDataPathValueSource.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ abstract class DerivedDataPathValueSource :
4141
)
4242
it.standardOutput = buildDirOutput
4343
it.errorOutput = errOutput
44+
it.isIgnoreExitValue = true
4445
}
4546

4647
if (execOperations.exitValue == 0) {

sentry-kotlin-multiplatform-gradle-plugin/src/main/java/io/sentry/kotlin/multiplatform/gradle/ManualFrameworkPathSearchValueSource.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ abstract class ManualFrameworkPathSearchValueSource :
5050
)
5151
it.standardOutput = stdOutput
5252
it.errorOutput = errOutput
53+
it.isIgnoreExitValue = true
5354
}
5455

5556
val stringOutput = stdOutput.toString("UTF-8")

sentry-kotlin-multiplatform/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ buildkonfig {
204204
buildConfigField(STRING, "SENTRY_KMP_COCOA_SDK_NAME", Config.Sentry.kmpCocoaSdkName)
205205
buildConfigField(STRING, "SENTRY_KMP_JAVA_SDK_NAME", Config.Sentry.kmpJavaSdkName)
206206
buildConfigField(STRING, "SENTRY_KMP_ANDROID_SDK_NAME", Config.Sentry.kmpAndroidSdkName)
207+
buildConfigField(STRING, "SENTRY_KMP_NATIVE_ANDROID_SDK_NAME", Config.Sentry.kmpNativeAndroidSdkName)
207208

208209
buildConfigField(STRING, "VERSION_NAME", project.version.toString())
209210
buildConfigField(STRING, "SENTRY_JAVA_PACKAGE_NAME", Config.Sentry.javaPackageName)

sentry-kotlin-multiplatform/sentry_kotlin_multiplatform.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Pod::Spec.new do |spec|
1212
spec.osx.deployment_target = '10.13'
1313
spec.tvos.deployment_target = '11.0'
1414
spec.watchos.deployment_target = '4.0'
15-
spec.dependency 'Sentry', '8.48.0'
15+
spec.dependency 'Sentry', '8.49.0'
1616

1717
if !Dir.exist?('build/cocoapods/framework/sentry_kotlin_multiplatform.framework') || Dir.empty?('build/cocoapods/framework/sentry_kotlin_multiplatform.framework')
1818
raise "
@@ -54,4 +54,4 @@ Pod::Spec.new do |spec|
5454
}
5555
]
5656

57-
end
57+
end

0 commit comments

Comments
 (0)