Skip to content

Commit a29db20

Browse files
github-actions[bot]web-flowbuenaflor
authored
chore(deps): update Cocoa SDK to v8.57.3 (#483)
* chore: update scripts/update-cocoa.sh to 8.57.3 * Update sample * Fix test --------- Co-authored-by: GitHub <noreply@github.com> Co-authored-by: Giancarlo Buenaflor <giancarlobuenaflor97@gmail.com>
1 parent 95336a9 commit a29db20

File tree

7 files changed

+17
-12
lines changed

7 files changed

+17
-12
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
- Bump Java SDK from v8.25.0 to v8.27.1 ([#487](https://github.com/getsentry/sentry-kotlin-multiplatform/pull/487))
88
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8271)
99
- [diff](https://github.com/getsentry/sentry-java/compare/8.25.0...8.27.1)
10+
- Bump Cocoa SDK from v8.57.1 to v8.57.3 ([#483](https://github.com/getsentry/sentry-kotlin-multiplatform/pull/483))
11+
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8573)
12+
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.57.1...8.57.3)
1013

1114
## 0.21.0
1215

buildSrc/src/main/java/Config.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ object Config {
3737
val sentryAndroid = "io.sentry:sentry-android:$sentryJavaVersion"
3838
val sentryJava = "io.sentry:sentry:$sentryJavaVersion"
3939

40-
val sentryCocoaVersion = "8.57.1"
40+
val sentryCocoaVersion = "8.57.3"
4141
val sentryCocoa = "Sentry"
4242

4343
object Samples {

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.21.0
44
group=io.sentry
5-
sentryCocoaVersion=8.57.1
5+
sentryCocoaVersion=8.57.3
66

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

sentry-kotlin-multiplatform-gradle-plugin/src/test/java/io/sentry/kotlin/multiplatform/gradle/SentryFrameworkArchitectureTest.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ class SentryFrameworkArchitectureTest {
2121
fun cocoaVersions(): List<Arguments> = listOf(
2222
Arguments.of("8.37.0"),
2323
Arguments.of("8.38.0"),
24-
Arguments.of("latest")
24+
Arguments.of("8.57.3"),
25+
// Arguments.of("latest"),
26+
// TODO: Latest is already v9 which is currently failing - let's fix this when we bump to v9
2527
)
2628
}
2729

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.57.1'
15+
spec.dependency 'Sentry', '8.57.3'
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

sentry-samples/kmp-app-cocoapods/iosApp/Podfile.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
PODS:
2-
- Sentry (8.57.1):
3-
- Sentry/Core (= 8.57.1)
4-
- Sentry/Core (8.57.1)
2+
- Sentry (8.57.3):
3+
- Sentry/Core (= 8.57.3)
4+
- Sentry/Core (8.57.3)
55
- shared (1.0):
6-
- Sentry (= 8.57.1)
6+
- Sentry (= 8.57.3)
77

88
DEPENDENCIES:
99
- shared (from `../shared`)
@@ -17,8 +17,8 @@ EXTERNAL SOURCES:
1717
:path: "../shared"
1818

1919
SPEC CHECKSUMS:
20-
Sentry: ea4ca7cd1a46c77dcc8123804ce36d8f5603a841
21-
shared: 84e27d3ad161d8351fdb4f11eecf42fec2623cf8
20+
Sentry: c643eb180df401dd8c734c5036ddd9dd9218daa6
21+
shared: 19ea1c4273b1e75b6260ae717ad49a29fa9bf2e1
2222

2323
PODFILE CHECKSUM: f282da88f39e69507b0a255187c8a6b644477756
2424

sentry-samples/kmp-app-cocoapods/shared/shared.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Pod::Spec.new do |spec|
99
spec.vendored_frameworks = 'build/cocoapods/framework/shared.framework'
1010
spec.libraries = 'c++'
1111
spec.ios.deployment_target = '14.1'
12-
spec.dependency 'Sentry', '8.57.1'
12+
spec.dependency 'Sentry', '8.57.3'
1313

1414
if !Dir.exist?('build/cocoapods/framework/shared.framework') || Dir.empty?('build/cocoapods/framework/shared.framework')
1515
raise "

0 commit comments

Comments
 (0)