Skip to content

chore(deps): update Java SDK to v8.16.0 #407

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions .github/workflows/kotlin-multiplatform-gradle-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
- '.github/workflows/kotlin-multiplatform-gradle-plugin.yml'
- 'sentry-kotlin-multiplatform-gradle-plugin/**'
- 'sentry-samples/**'
- 'buildSrc/src/'
- '!**/*.md'

concurrency:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kotlin-multiplatform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ on:
- '.github/workflows/kotlin-multiplatform.yml'
- 'kotlin-multiplatform/**'
- 'sentry-samples/**'
- 'buildSrc/src/'
- '!**/*.md'


concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
- Bump Cocoa SDK from v8.49.1 to v8.53.1 ([#405](https://github.com/getsentry/sentry-kotlin-multiplatform/pull/405))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8531)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.49.1...8.53.1)
- Bump Java SDK from v8.15.1 to v8.16.0 ([#407](https://github.com/getsentry/sentry-kotlin-multiplatform/pull/407))
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8160)
- [diff](https://github.com/getsentry/sentry-java/compare/8.15.1...8.16.0)

## 0.13.0

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 @@ -32,7 +32,7 @@ object Config {
object Libs {
val kotlinStd = "org.jetbrains.kotlin:kotlin-stdlib"

val sentryJavaVersion = "8.15.1"
val sentryJavaVersion = "8.16.0"
val sentryAndroid = "io.sentry:sentry-android:$sentryJavaVersion"
val sentryJava = "io.sentry:sentry:$sentryJavaVersion"

Expand Down
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.49.1):
- Sentry/Core (= 8.49.1)
- Sentry/Core (8.49.1)
- Sentry (8.53.1):
- Sentry/Core (= 8.53.1)
- Sentry/Core (8.53.1)
- shared (1.0):
- Sentry (= 8.49.1)
- Sentry (= 8.53.1)

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

SPEC CHECKSUMS:
Sentry: f85e0dc4b70846df15384e7412e52ba50783dfca
shared: e1ee1549b2a6644585d68979ba7fc647c19fe0c2
Sentry: 1e4e974d45f09d153af4b30b42acfb1c79e957d3
shared: 303fc7502580d8fb5e44fe7381fe269ada0e793c

PODFILE CHECKSUM: f282da88f39e69507b0a255187c8a6b644477756

Expand Down
2 changes: 1 addition & 1 deletion 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.49.1'
spec.dependency 'Sentry', '8.53.1'

if !Dir.exist?('build/cocoapods/framework/shared.framework') || Dir.empty?('build/cocoapods/framework/shared.framework')
raise "
Expand Down
Loading