Skip to content
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

renovate: update minor-updates #14

Merged
merged 2 commits into from
May 17, 2024
Merged

renovate: update minor-updates #14

merged 2 commits into from
May 17, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 1, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
gradle (source) minor 8.6 -> 8.7 age adoption passing confidence
io.gitlab.arturbosch.detekt:detekt-formatting (source) dependencies patch 1.23.5 -> 1.23.6 age adoption passing confidence
org.jetbrains.kotlinx:kotlinx-coroutines-swing dependencies patch 1.8.0 -> 1.8.1 age adoption passing confidence
org.apache.pdfbox:pdfbox (source) dependencies patch 3.0.1 -> 3.0.2 age adoption passing confidence
io.sentry:sentry dependencies minor 7.3.0 -> 7.9.0 age adoption passing confidence
io.insert-koin:koin-compose (source) dependencies patch 1.1.2 -> 1.1.5 age adoption passing confidence
io.insert-koin:koin-core (source) dependencies patch 3.5.3 -> 3.5.6 age adoption passing confidence
io.ktor:ktor-client-websockets dependencies patch 2.3.8 -> 2.3.11 age adoption passing confidence
io.ktor:ktor-client-logging dependencies patch 2.3.8 -> 2.3.11 age adoption passing confidence
io.ktor:ktor-client-auth dependencies patch 2.3.8 -> 2.3.11 age adoption passing confidence
io.ktor:ktor-serialization-kotlinx-json dependencies patch 2.3.8 -> 2.3.11 age adoption passing confidence
io.ktor:ktor-client-content-negotiation dependencies patch 2.3.8 -> 2.3.11 age adoption passing confidence
io.ktor:ktor-client-cio dependencies patch 2.3.8 -> 2.3.11 age adoption passing confidence
io.ktor:ktor-client-core dependencies patch 2.3.8 -> 2.3.11 age adoption passing confidence
dev.hydraulic.conveyor plugin minor 1.8 -> 1.10 age adoption passing confidence
io.gitlab.arturbosch.detekt plugin patch 1.23.5 -> 1.23.6 age adoption passing confidence
org.jetbrains.compose plugin minor 1.5.12 -> 1.6.2 age adoption passing confidence
org.jetbrains.kotlin.plugin.serialization plugin patch 1.9.22 -> 1.9.23 age adoption passing confidence
org.jetbrains.kotlin.jvm plugin patch 1.9.22 -> 1.9.23 age adoption passing confidence

Release Notes

gradle/gradle (gradle)

v8.7

Compare Source

detekt/detekt (io.gitlab.arturbosch.detekt:detekt-formatting)

v1.23.6

1.23.6 - 2024-03-23

This is a point release for Detekt 1.23.0, where we added support for Kotlin 1.9.23 and fixed several bugs that got reported by the community.

Changelog
  • UselessPostfixExpression - Fix #​7037 false positive postfix - #​7084
  • Don't allow invalid Source Locations - #​7030
  • UnusedPrivateClass: don't report if private classes are used for type conversion - #​6995
  • RedundantSuspendModifier: do not report when the function has 'actual' modifier - #​6951
  • Update dependency gradle to v8.7 - #​7080
  • Update kotlin monorepo to v1.9.23 - #​7027
  • Update dependency gradle to v8.6 - #​6939
  • Update dependency com.android.tools.build:gradle to v8.3.1 - #​7070
Contributors

We would like to thank the following contributors that made this release possible: @​BraisGabin, @​psuzn, @​t-kameyama.

Kotlin/kotlinx.coroutines (org.jetbrains.kotlinx:kotlinx-coroutines-swing)

v1.8.1

Compare Source

  • Remove the @ExperimentalTime annotation from usages of TimeSource (#​4046). Thanks, @​hfhbd!
  • Introduce a workaround for an Android bug that caused an occasional NullPointerException when setting the StateFlow value on old Android devices (#​3820).
  • No longer use kotlin.random.Random as part of Dispatchers.Default and Dispatchers.IO initialization (#​4051).
  • Flow.timeout throws the exception with which the channel was closed (#​4071).
  • Small tweaks and documentation fixes.
Changelog relative to version 1.8.1-Beta
  • Flow.timeout throws the exception with which the channel was closed (#​4071).
  • Small documentation fixes.
getsentry/sentry-java (io.sentry:sentry)

v7.9.0

Compare Source

Features
  • Add start_type to app context (#​3379)
  • Add ttid/ttfd contribution flags (#​3386)
Fixes
  • (Internal) Metrics code cleanup (#​3403)
  • Fix Frame measurements in app start transactions (#​3382)
  • Fix timing metric value different from span duration (#​3368)
  • Do not always write startup crash marker (#​3409)
    • This may have been causing the SDK init logic to block the main thread

v7.8.0

Compare Source

Features
  • Add description to OkHttp spans (#​3320)
  • Enable backpressure management by default (#​3284)
Fixes
  • Add rate limit to Metrics (#​3334)
  • Fix java.lang.ClassNotFoundException: org.springframework.web.servlet.HandlerMapping in Spring Boot Servlet mode without WebMVC (#​3336)
  • Fix normalization of metrics keys, tags and values (#​3332)

v7.7.0

Compare Source

Features
  • Add support for Spring Rest Client (#​3199)
  • Extend Proxy options with proxy type (#​3326)
Fixes
  • Fixed default deadline timeout to 30s instead of 300s (#​3322)
  • Fixed Fix java.lang.ClassNotFoundException: org.springframework.web.servlet.HandlerExceptionResolver in Spring Boot Servlet mode without WebMVC (#​3333)

v7.6.0

Compare Source

Features
  • Experimental: Add support for Sentry Developer Metrics (#​3205, #​3238, #​3248, #​3250)
    Use the Metrics API to track processing time, download sizes, user signups, and conversion rates and correlate them back to tracing data in order to get deeper insights and solve issues faster. Our API supports counters, distributions, sets, gauges and timers, and it's easy to get started:
    Sentry.metrics()
      .increment(
          "button_login_click", // key
          1.0,                  // value
          null,                 // unit
          mapOf(                // tags
              "provider" to "e-mail"
          )
      )
    To learn more about Sentry Developer Metrics, head over to our Java and Android docs page.

v7.5.0

Compare Source

Features
  • Add support for measurements at span level (#​3219)
  • Add enableScopePersistence option to disable PersistingScopeObserver used for ANR reporting which may increase performance overhead. Defaults to true (#​3218)
    • When disabled, the SDK will not enrich ANRv2 events with scope data (e.g. breadcrumbs, user, tags, etc.)
  • Configurable defaults for Cron - MonitorConfig (#​3195)
  • We now display a warning on startup if an incompatible version of Spring Boot is detected (#​3233)
    • This should help notice a mismatching Sentry dependency, especially when upgrading a Spring Boot application
  • Experimental: Add Metrics API (#​3205)
Fixes
  • Ensure performance measurement collection is not taken too frequently (#​3221)
  • Fix old profiles deletion on SDK init (#​3216)
  • Fix hub restore point in wrappers: SentryWrapper, SentryTaskDecorator and SentryScheduleHook (#​3225)
    • We now reset the hub to its previous value on the thread where the Runnable/Callable/Supplier is executed instead of setting it to the hub that was used on the thread where the Runnable/Callable/Supplier was created.
  • Fix add missing thread name/id to app start spans (#​3226)

v7.4.0

Compare Source

Features
  • Add new threshold parameters to monitor config (#​3181)
  • Report process init time as a span for app start performance (#​3159)
  • (perf-v2): Calculate frame delay on a span level (#​3197)
  • Resolve spring properties in @​SentryCheckIn annotation (#​3194)
  • Experimental: Add Spotlight integration (#​3166)
    • For more details about Spotlight head over to https://spotlightjs.com/
    • Set options.isEnableSpotlight = true to enable Spotlight
Fixes
  • Don't wait on main thread when SDK restarts (#​3200)
  • Fix Jetpack Compose widgets are not being correctly identified for user interaction tracing (#​3209)
  • Fix issue title on Android when a wrapping RuntimeException is thrown by the system (#​3212)
    • This will change grouping of the issues that were previously titled RuntimeInit$MethodAndArgsCaller to have them split up properly by the original root cause exception
InsertKoinIO/koin (io.insert-koin:koin-core)

v3.5.6

Compare Source

What's Changed

Full Changelog: InsertKoinIO/koin@3.5.5...3.5.6

v3.5.5

Compare Source

What's Changed

Full Changelog: InsertKoinIO/koin@3.5.4...3.5.5

v3.5.4

Compare Source

Milestones
What's Changed
New Contributors

Full Changelog: InsertKoinIO/koin@3.5.3...3.5.4

ktorio/ktor (io.ktor:ktor-client-websockets)

v2.3.11

Compare Source

Published 8 May 2024

Bugfixes
  • Test client ignores socket timeout (KTOR-6909)

v2.3.10

Compare Source

Published 8 April 2024

Bugfixes
  • CallLogging, StatusPages: response logged twice when status handler is used (KTOR-6839)
  • NodeJS WebSocket client sometimes drops a frame received immediately after handshake (KTOR-6883)
  • IPv6 addresses are not supported in NettyConnectionPoint and CIOConnectionPoint (KTOR-5383)
  • JS browser: "Maximum call stack size exceeded" on HTTP request when targeting es2015 (KTOR-6878)
  • CIO: File upload fails with NumberFormatException when uploading file larger than INT_MAX bytes (~2.1 GiB) since 2.3.0 (KTOR-6851)
  • CallLogging: the plugin completely overrides MDC if at least one entry is configured (KTOR-6642)
  • SSE plugin: Duplicated "Content-Type: text/event-stream" headers (KTOR-6735)
  • CIO: "getSubjectAlternativeNames(...) must not be null" when IP-addresses are verified and no SAN in the certificate (KTOR-6746)
Improvements
  • Inconsistent behavior of Netty and rest engines by returning null or empty string for query parameters without values (KTOR-6850)
  • Android: no logs are present in Logcat with Logger.ANDROID (KTOR-1219)

v2.3.9

Compare Source

Published 4 March 2024

Improvements
  • Allow to set secure cookie even with http scheme (KTOR-3159)
Bugfixes
  • ContentNegotiation: the plugin appends duplicated MIME type to Accept header (KTOR-6684)

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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies label Aug 1, 2023
@renovate renovate bot changed the title renovate: update minor-updates to v2.3.3 renovate: update minor-updates Aug 4, 2023
@renovate renovate bot force-pushed the renovate/minor-updates branch from badd850 to 71d1901 Compare August 4, 2023 15:07
@renovate renovate bot force-pushed the renovate/minor-updates branch 4 times, most recently from f870fbc to f292d7c Compare August 23, 2023 14:07
@renovate renovate bot force-pushed the renovate/minor-updates branch 3 times, most recently from 2b02dd9 to c0e0cc5 Compare September 1, 2023 01:50
@renovate renovate bot force-pushed the renovate/minor-updates branch from c0e0cc5 to 54842e7 Compare September 6, 2023 10:17
@renovate renovate bot force-pushed the renovate/minor-updates branch from 54842e7 to dea8e04 Compare September 13, 2023 10:40
@renovate renovate bot force-pushed the renovate/minor-updates branch 8 times, most recently from 7ce5027 to 8e69c56 Compare September 25, 2023 19:54
@renovate renovate bot force-pushed the renovate/minor-updates branch 3 times, most recently from 54e1d3b to 7e0b867 Compare October 5, 2023 09:35
@renovate renovate bot force-pushed the renovate/minor-updates branch 2 times, most recently from ac1c648 to 3279033 Compare October 6, 2023 14:25
@renovate renovate bot force-pushed the renovate/minor-updates branch 3 times, most recently from 2d04f02 to 074aecb Compare October 18, 2023 16:43
@renovate renovate bot force-pushed the renovate/minor-updates branch 2 times, most recently from 6ab33b7 to 5373757 Compare October 31, 2023 03:22
@renovate renovate bot changed the title renovate: update minor-updates renovate: update dependency io.sentry:sentry to v7.4.0 Feb 21, 2024
@renovate renovate bot force-pushed the renovate/minor-updates branch from 091644f to d2d39bf Compare February 21, 2024 16:52
@renovate renovate bot changed the title renovate: update dependency io.sentry:sentry to v7.4.0 renovate: update minor-updates Feb 27, 2024
@renovate renovate bot force-pushed the renovate/minor-updates branch 4 times, most recently from 846cc3b to 93ba055 Compare March 4, 2024 13:45
@renovate renovate bot force-pushed the renovate/minor-updates branch 3 times, most recently from e4ff93a to c9d3694 Compare March 13, 2024 22:50
@renovate renovate bot force-pushed the renovate/minor-updates branch from c9d3694 to 8f5270a Compare March 14, 2024 23:14
@renovate renovate bot force-pushed the renovate/minor-updates branch 2 times, most recently from ae3bcd7 to 7b3664c Compare March 25, 2024 01:36
@renovate renovate bot force-pushed the renovate/minor-updates branch 6 times, most recently from 262ee01 to 53bab5b Compare April 12, 2024 08:00
@renovate renovate bot force-pushed the renovate/minor-updates branch 5 times, most recently from cad8efa to cfabb69 Compare May 10, 2024 13:00
@renovate renovate bot force-pushed the renovate/minor-updates branch from cfabb69 to a1a1838 Compare May 17, 2024 15:12
Copy link
Contributor Author

renovate bot commented May 17, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@dev-Fabi dev-Fabi merged commit c4651e8 into develop May 17, 2024
3 checks passed
@dev-Fabi dev-Fabi deleted the renovate/minor-updates branch May 17, 2024 15:28
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.

1 participant