Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## Unreleased

### Dependencies

- Bump Cocoa SDK from v8.57.3 to v8.58.2 ([#550](https://github.com/getsentry/sentry-kotlin-multiplatform/pull/550))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8582)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.57.3...8.58.2)

## 0.25.0

### Features
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/java/Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ object Config {
val sentryAndroid = "io.sentry:sentry-android:$sentryJavaVersion"
val sentryJava = "io.sentry:sentry:$sentryJavaVersion"

val sentryCocoaVersion = "8.57.3"
val sentryCocoaVersion = "8.58.2"
Comment thread
buenaflor marked this conversation as resolved.
val sentryCocoa = "Sentry"

object Samples {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ id=io.sentry.kotlin.multiplatform.gradle
implementationClass=io.sentry.kotlin.multiplatform.gradle.SentryPlugin
versionName=0.25.0
group=io.sentry
sentryCocoaVersion=8.57.3
sentryCocoaVersion=8.58.2

# publication pom properties
POM_NAME=Sentry Kotlin Multiplatform Gradle Plugin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class SentryFrameworkArchitectureTest {
fun cocoaVersions(): List<Arguments> = listOf(
Arguments.of("8.37.0"),
Arguments.of("8.38.0"),
Arguments.of("8.57.3")
Arguments.of("8.58.2")
// Arguments.of("latest"),
// TODO: Latest is already v9 which is currently failing - let's fix this when we bump to v9
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Pod::Spec.new do |spec|
spec.osx.deployment_target = '10.13'
spec.tvos.deployment_target = '11.0'
spec.watchos.deployment_target = '4.0'
spec.dependency 'Sentry', '8.57.3'
spec.dependency 'Sentry', '8.58.2'

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

end
end
12 changes: 6 additions & 6 deletions sentry-samples/kmp-app-cocoapods/iosApp/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
PODS:
- Sentry (8.57.3):
- Sentry/Core (= 8.57.3)
- Sentry/Core (8.57.3)
- Sentry (8.58.2):
- Sentry/Core (= 8.58.2)
- Sentry/Core (8.58.2)
- shared (1.0):
- Sentry (= 8.57.3)
- Sentry (= 8.58.2)

DEPENDENCIES:
- shared (from `../shared`)
Expand All @@ -17,8 +17,8 @@ EXTERNAL SOURCES:
:path: "../shared"

SPEC CHECKSUMS:
Sentry: c643eb180df401dd8c734c5036ddd9dd9218daa6
shared: 19ea1c4273b1e75b6260ae717ad49a29fa9bf2e1
Sentry: de29b881e83bd91cf99a927f82f1fd86bfb39db2
shared: 231af8f1be94bceff674026ca7dcacf0a666be6d

PODFILE CHECKSUM: f282da88f39e69507b0a255187c8a6b644477756

Expand Down
4 changes: 2 additions & 2 deletions sentry-samples/kmp-app-cocoapods/shared/shared.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Pod::Spec.new do |spec|
spec.vendored_frameworks = 'build/cocoapods/framework/shared.framework'
spec.libraries = 'c++'
spec.ios.deployment_target = '14.1'
spec.dependency 'Sentry', '8.57.3'
spec.dependency 'Sentry', '8.58.2'

if !Dir.exist?('build/cocoapods/framework/shared.framework') || Dir.empty?('build/cocoapods/framework/shared.framework')
raise "
Expand Down Expand Up @@ -51,4 +51,4 @@ Pod::Spec.new do |spec|
}
]

end
end
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@
repositoryURL = "https://github.com/getsentry/sentry-cocoa.git";
requirement = {
kind = exactVersion;
version = 8.57.1;
version = 8.58.2;
};
};
/* End XCRemoteSwiftPackageReference section */
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading