Skip to content

renovate: update minor-updates#17

Open
renovate[bot] wants to merge 1 commit intodevelopfrom
renovate/minor-updates
Open

renovate: update minor-updates#17
renovate[bot] wants to merge 1 commit intodevelopfrom
renovate/minor-updates

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Aug 22, 2023

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
androidx.compose.material3:material3 (source) 1.3.21.4.0 age adoption passing confidence
com.google.accompanist:accompanist-permissions 0.34.00.37.3 age adoption passing confidence
io.github.raamcosta.compose-destinations:ksp 2.2.02.3.0 age adoption passing confidence
io.github.raamcosta.compose-destinations:core 2.2.02.3.0 age adoption passing confidence
androidx.activity:activity-compose (source) 1.10.11.13.0 age adoption passing confidence
androidx.appcompat:appcompat (source) 1.7.01.7.1 age adoption passing confidence
androidx.lifecycle:lifecycle-runtime-ktx (source) 2.9.02.10.0 age adoption passing confidence
androidx.lifecycle:lifecycle-process (source) 2.9.02.10.0 age adoption passing confidence
androidx.camera:camera-view (source) 1.4.21.6.0 age adoption passing confidence
androidx.camera:camera-lifecycle (source) 1.4.21.6.0 age adoption passing confidence
androidx.camera:camera-camera2 (source) 1.4.21.6.0 age adoption passing confidence
io.sentry:sentry-kotlin-multiplatform 0.9.00.25.0 age adoption passing confidence
co.touchlab.skie (source) 0.10.10.10.10 age adoption passing confidence
co.touchlab.skie:configuration-annotations (source) 0.10.10.10.10 age adoption passing confidence
com.codingfeline.buildkonfig 0.15.10.17.1 age adoption passing confidence
org.jetbrains.kotlinx:kotlinx-datetime 0.6.10.7.1-0.6.x-compat age adoption passing confidence
org.jetbrains.kotlinx:kotlinx-serialization-json 1.7.31.10.0 age adoption passing confidence
io.gitlab.arturbosch.detekt (source) 1.23.61.23.8 age adoption passing confidence
io.gitlab.arturbosch.detekt:detekt-formatting (source) 1.23.61.23.8 age adoption passing confidence
com.russhwolf:multiplatform-settings-coroutines 1.1.11.3.0 age adoption passing confidence
com.russhwolf:multiplatform-settings 1.1.11.3.0 age adoption passing confidence
dev.icerock.mobile.multiplatform-resources 0.24.50.26.1 age adoption passing confidence
dev.icerock.moko:resources 0.24.50.26.1 age adoption passing confidence
dev.icerock.moko:permissions 0.18.00.20.1 age adoption passing confidence
io.ktor:ktor-serialization-kotlinx-json 3.0.33.4.1 age adoption passing confidence
io.ktor:ktor-client-logging 3.0.33.4.1 age adoption passing confidence
io.ktor:ktor-client-auth 3.0.33.4.1 age adoption passing confidence
io.ktor:ktor-client-encoding 3.0.33.4.1 age adoption passing confidence
io.ktor:ktor-client-content-negotiation 3.0.33.4.1 age adoption passing confidence
io.ktor:ktor-client-darwin 3.0.33.4.1 age adoption passing confidence
io.ktor:ktor-client-cio 3.0.33.4.1 age adoption passing confidence
io.ktor:ktor-client-core 3.0.33.4.1 age adoption passing confidence
co.touchlab:kermit 2.0.32.1.0 age adoption passing confidence
com.google.devtools.ksp (source) 2.0.20-1.0.252.3.6 age adoption passing confidence
org.jetbrains.kotlin.plugin.compose (source) 2.0.202.3.20 age adoption passing confidence
org.jetbrains.kotlin.plugin.serialization (source) 2.0.202.3.20 age adoption passing confidence
org.jetbrains.kotlin.multiplatform (source) 2.0.202.3.20 age adoption passing confidence
org.jetbrains.kotlin.android (source) 2.0.202.3.20 age adoption passing confidence

Release Notes

google/accompanist (com.google.accompanist:accompanist-permissions)

v0.37.3: 🌈

What’s Changed

  • [Drawable Painter] Fix AnimatedImageDrawable rendered in wrong size for systems below Android 12 #​1817

v0.37.2: 🌈

What’s Changed

  • Update maven publish. No changes to underlying libraries

v0.37.1: 🌈

What’s Changed

  • No changes. Republishing to fix maven error

v0.37.0: 🌈

What’s Changed

v0.36.0: 🌈

What’s Changed
raamcosta/compose-destinations (io.github.raamcosta.compose-destinations:ksp)

v2.3.0

Compare Source

Main changes
  • Updated Compose to 1.9, compose jetpack navigation and Kotlin.

Full Changelog: raamcosta/compose-destinations@2.2.0...2.3.0

getsentry/sentry-kotlin-multiplatform (io.sentry:sentry-kotlin-multiplatform)

v0.25.0

Compare Source

Features
  • Add generic log APIs with explicit level parameter (#​520)
// New APIs:
// Simple message
Sentry.logger.log(SentryLogLevel.INFO, "User logged in")

// Message with parameters
Sentry.logger.log(SentryLogLevel.WARN, "Rate limit reached for %s", endpoint)

// Message with parameters and attributes
Sentry.logger.log(SentryLogLevel.ERROR, "Failed to process %s", request) {
    this["error.code"] = 500
    this["retry"] = true
}

// Full DSL
Sentry.logger.log(SentryLogLevel.FATAL) {
    message("Database connection pool exhausted for %s", dbHost)
    attributes {
        this["database"] = "users"
        this["activeConnections"] = 100
    }
}
Enhancements
  • Support proguardUuid option on JVM target in addition to Android (#​533)
Dependencies

v0.24.0

Compare Source

Features
  • Add structured logs support (#​509)

Read the full documentation for more details.

Sentry.init {
    it.dsn = "YOUR_DSN"
    // Enable logs to be sent to Sentry
    it.logs.enabled = true
}
// Simple API
Sentry.logger.warn("Rate limit reached for %s", endpoint) {
  this["currentRequests"] = 120
  this["limit"] = 100
  this["retryAfterSeconds"] = 60
}

// Full DSL
Sentry.logger.fatal {
    message("Database connection pool exhausted for %s", dbHost)
    attributes {
        this["database"] = "users"
        this["activeConnections"] = 100
    }
}

v0.23.1

Compare Source

Fixes
  • Fix UserFeedback not being sent on iOS (#​503)
Dependencies

v0.23.0

Compare Source

⚠️ This release will affect issue grouping for iOS events as Sentry now captures correct stacktraces for manually captured and crashed iOS events.

Features
  • Improve iOS crash reports by adding scope data (#​491)
  • Improve stacktrace of manually captured exceptions on iOS (#​493)

v0.22.0

Compare Source

Features
Dependencies

v0.21.0

Compare Source

Dependencies

v0.20.0

Compare Source

Dependencies

v0.19.0

Compare Source

Dependencies

v0.18.0

Compare Source

Features
  • Add proguardUuid option to SentryOptions (#​436)
    • This will propagate the proguardUuid value to Sentry Android
Fixes
  • Fix stack trace crash on Apple targets (#​434)

v0.17.1

Compare Source

Fixes
  • Gradle Plugin: allow new supported targets to be installed (#​429)

v0.17.0

Compare Source

Features
  • Add stubs/no-op support for unsupported targets (#​426)

v0.16.0

Compare Source

Potentially breaking: this release bumps the used Kotlin version to 2.1.21.

Dependencies
  • Bump Kotlin from 1.9.23 to 2.1.21 (#​389)
Internal
  • Update distZip task to use the locally published artifacts via publishToMavenLocal (#​425)

v0.15.0

Compare Source

Enhancements
  • Gradle Plugin: implement conditional Cocoa linking for targets (#​421, #​423)
Dependencies

v0.14.0

Compare Source

Dependencies

v0.13.0

Compare Source

Features
  • Add sendDefaultPii option (#​377)
Fixes
  • beforeSend overriding default release and dist even if it was not set explicitly (#​376)
Dependencies

v0.12.0

Compare Source

Features
  • Move replay options out of experimental (#​367)
    • You can now access the replay options via options.sessionReplay
Fixes
  • Do not throw if exec operation fails (#​360)
  • initWithPlatforms not sending events if beforeSend is not set on iOS (#​366)
Miscellaneous
  • Update native android sdk name to sentry.native.android.kmp (#​353)
Dependencies

v0.11.0

Compare Source

Fixes
  • [Gradle Plugin]: Architecture folder name missmatch when using SPM and framework path searching (#​320)
  • [Gradle Plugin]: Check exit value when executing xcodebuild command (#​326)
Dependencies

v0.10.0

Compare Source

Features
  • Add experimental session replay options to common code (#​275)
Sentry.init { options ->
  // Adjust these values for production
  options.sessionReplay.onErrorSampleRate = 1.0
  options.sessionReplay.sessionSampleRate = 1.0
}
  • Add Sentry.isEnabled() API to common code (#​273)
  • Add enableWatchdogTerminationTracking in common options (#​281)
  • Add diagnosticLevel in common options (#​287)
Dependencies
touchlab/SKIE (co.touchlab.skie)

v0.10.10

Compare Source

Change log

v0.10.9

Compare Source

Change log

v0.10.8

Compare Source

Change log

v0.10.7

Compare Source

Change log

v0.10.6

Compare Source

Change log

v0.10.5

Compare Source

Change log

v0.10.4

Compare Source

Change log

v0.10.3

Compare Source

v0.10.2

Compare Source

Change log

yshrsmz/BuildKonfig (com.codingfeline.buildkonfig)

v0.17.1

Bug Fixes
  • deps: update dependency com.android.tools.build:gradle to v8.8.2 (#​200) (a17fa2f)
  • deps: update dependency com.android.tools.build:gradle to v8.9.0 (#​201) (bbac799)
  • deps: update dependency com.android.tools.build:gradle to v8.9.1 (#​205) (390e6bc)
  • deps: update dependency com.squareup:kotlinpoet to v2.1.0 (#​198) (864030c)
  • deps: update kotlin monorepo to v2.1.20 (#​204) (a963c12)

v0.17.0

Bug Fixes
  • deps: update dependency com.android.tools.build:gradle to v8.8.0 (#​124) (cfe6e69)
  • deps: update dependency com.android.tools.build:gradle to v8.8.1 (#​193) (b305d1d)
  • deps: update kotlin monorepo to v2.1.10 (#​175) (760faae)
Miscellaneous Chores
  • prepare for release 0.17.0 (4c70693)

v0.16.0

Bug Fixes
  • deps: fix missed commits about gradle wrapper version (#​185) (3a35b48)
  • deps: update dependency com.squareup:kotlinpoet to v1.18.1 (#​158) (54557e3)
  • deps: update dependency com.squareup:kotlinpoet to v2 (#​171) (c6c9090)
Miscellaneous Chores

v0.15.2

Miscellaneous
Bug Fixes
  • deps: #​160 Kotlin 2.0 and fixed Issue With New Compiler Options DSL (#​162) (4655ce3)
  • deps: update dependency com.google.truth:truth to v1.2.0 ([#&

Configuration

📅 Schedule: Branch creation - "after 10pm every weekday,before 4am every weekday,every weekend" in timezone Europe/Vienna, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/minor-updates branch from 01c4482 to da6e5cc Compare August 23, 2023 13:23
@renovate renovate bot changed the title renovate: update dependency org.jetbrains.kotlinx:kotlinx-serialization-json to v1.6.0 renovate: update minor-updates Aug 23, 2023
@renovate renovate bot force-pushed the renovate/minor-updates branch 3 times, most recently from 614258b to 4e1a6e9 Compare August 30, 2023 01:54
@renovate renovate bot force-pushed the renovate/minor-updates branch 7 times, most recently from 125506b to f63853f Compare September 7, 2023 15:20
@renovate renovate bot force-pushed the renovate/minor-updates branch 2 times, most recently from cdfff69 to 1db19c6 Compare September 13, 2023 11:06
@renovate renovate bot force-pushed the renovate/minor-updates branch 5 times, most recently from cba7637 to dfd5092 Compare October 4, 2023 18:30
@renovate renovate bot force-pushed the renovate/minor-updates branch 6 times, most recently from bbdf629 to 10e520f Compare October 9, 2023 06:41
@renovate renovate bot force-pushed the renovate/minor-updates branch from 10e520f to 9cd943a Compare October 18, 2023 19:10
@renovate renovate bot force-pushed the renovate/minor-updates branch 3 times, most recently from 9636c60 to f7f18a2 Compare October 31, 2023 16:35
@renovate renovate bot force-pushed the renovate/minor-updates branch 6 times, most recently from a01671b to 075d84a Compare November 23, 2023 12:07
@renovate renovate bot force-pushed the renovate/minor-updates branch 11 times, most recently from ae54370 to 8e54b19 Compare December 3, 2023 10:57
@renovate renovate bot force-pushed the renovate/minor-updates branch 4 times, most recently from 96f1ddd to 167fdbf Compare December 13, 2023 19:57
@renovate renovate bot force-pushed the renovate/minor-updates branch 4 times, most recently from 5bb5915 to 0bbea60 Compare December 21, 2023 16:22
@renovate renovate bot force-pushed the renovate/minor-updates branch 3 times, most recently from f02860b to 1214fe6 Compare December 28, 2023 03:06
@renovate renovate bot force-pushed the renovate/minor-updates branch from 1214fe6 to 8e4d55b Compare January 3, 2024 17:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants