Skip to content

Commit afb4c15

Browse files
authored
Merge branch 'main' into fix/init-with-platforms
2 parents 36ab625 + ca9b001 commit afb4c15

File tree

17 files changed

+84
-29
lines changed

17 files changed

+84
-29
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"

.github/workflows/generate-dokka.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ jobs:
3737
${{ runner.os }}-gradle-
3838
3939
- name: Setup Pages
40-
uses: actions/configure-pages@v3
40+
uses: actions/configure-pages@v5
4141

4242
- name: Generate docs with dokka
4343
run: make generateDokka
4444

4545
- name: Upload artifact
46-
uses: actions/upload-pages-artifact@v1
46+
uses: actions/upload-pages-artifact@v3
4747
with:
4848
path: ${{ github.workspace }}/build/dokka/htmlMultiModule
4949

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ 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: |
4141
./gradlew build
4242
./gradlew koverXmlReport
4343
4444
- name: Upload coverage to Codecov
45-
uses: codecov/codecov-action@5ecb98a3c6b747ed38dc09f787459979aebb39be # pin@v4
45+
uses: codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574 # pin@v4
4646
with:
4747
name: sentry-kotlin-multiplatform-gradle-plugin
4848
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/kotlin-multiplatform.yml

Lines changed: 5 additions & 5 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: |
@@ -90,7 +90,7 @@ jobs:
9090

9191
# Kover coverage currently only works for JVM
9292
- name: Upload coverage to Codecov
93-
uses: codecov/codecov-action@5ecb98a3c6b747ed38dc09f787459979aebb39be # pin@v4
93+
uses: codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574 # pin@v4
9494
with:
9595
name: sentry-kotlin-multiplatform
9696
token: ${{ secrets.CODECOV_TOKEN }}
@@ -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/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- name: Get auth token
1919
id: token
20-
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0
20+
uses: actions/create-github-app-token@3ff1caaa28b64c9cc276ce0a02e2ff584f3900c5 # v2.0.2
2121
with:
2222
app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
2323
private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}

.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) {

0 commit comments

Comments
 (0)