Skip to content

Commit 426fe13

Browse files
fix(deps): update dependency io.github.oshai:kotlin-logging to v8 (#2232)
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [io.github.oshai:kotlin-logging](https://redirect.github.com/oshai/kotlin-logging) | `7.0.14` → `8.0.01` | ![age](https://developer.mend.io/api/mc/badges/age/maven/io.github.oshai:kotlin-logging/8.0.01?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.github.oshai:kotlin-logging/7.0.14/8.0.01?slim=true) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>oshai/kotlin-logging (io.github.oshai:kotlin-logging)</summary> ### [`v8.0.01`](https://redirect.github.com/oshai/kotlin-logging/releases/tag/8.0.01) [Compare Source](https://redirect.github.com/oshai/kotlin-logging/compare/7.0.14...8.0.01) #### What's Changed - Refactor: Unified Logger Provider Architecture by [@&#8203;oshai](https://redirect.github.com/oshai) in [#&#8203;584](https://redirect.github.com/oshai/kotlin-logging/pull/584) - refactor: Refine initialization logic by [@&#8203;oshai](https://redirect.github.com/oshai) in [#&#8203;585](https://redirect.github.com/oshai/kotlin-logging/pull/585) - KLogger API Cleanup & Ambiguity Fix by [@&#8203;oshai](https://redirect.github.com/oshai) in [#&#8203;586](https://redirect.github.com/oshai/kotlin-logging/pull/586) - fix action by [@&#8203;oshai](https://redirect.github.com/oshai) in [#&#8203;593](https://redirect.github.com/oshai/kotlin-logging/pull/593) - feat: add timestamp to KLoggingEvent by [@&#8203;oshai](https://redirect.github.com/oshai) in [#&#8203;591](https://redirect.github.com/oshai/kotlin-logging/pull/591) - Fix Darwin historical logs redaction using public format string by [@&#8203;oshai](https://redirect.github.com/oshai) in [#&#8203;590](https://redirect.github.com/oshai/kotlin-logging/pull/590) - feat: add configuration to suppress startup message by [@&#8203;oshai](https://redirect.github.com/oshai) in [#&#8203;589](https://redirect.github.com/oshai/kotlin-logging/pull/589) - Feature: Add JPMS Support (Issue [#&#8203;365](https://redirect.github.com/oshai/kotlin-logging/issues/365)) by [@&#8203;oshai](https://redirect.github.com/oshai) in [#&#8203;592](https://redirect.github.com/oshai/kotlin-logging/pull/592) - Fix Darwin OSLog composition failure in historical logs by [@&#8203;oshai](https://redirect.github.com/oshai) in [#&#8203;594](https://redirect.github.com/oshai/kotlin-logging/pull/594) **Full Changelog**: <oshai/kotlin-logging@7.0.14...8.0.01> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/typesafegithub/github-workflows-kt). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xNS4zIiwidXBkYXRlZEluVmVyIjoiNDMuMTUuMyIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 3b9e5de commit 426fe13

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

action-binding-generator/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencies {
1818
implementation("com.charleskorn.kaml:kaml:0.104.0")
1919
implementation("io.ktor:ktor-client-core:3.4.0")
2020
implementation("io.ktor:ktor-client-cio:3.4.0")
21-
implementation("io.github.oshai:kotlin-logging:7.0.14")
21+
implementation("io.github.oshai:kotlin-logging:8.0.01")
2222
implementation(projects.sharedInternal)
2323

2424
testImplementation("io.ktor:ktor-client-mock:3.4.0")

jit-binding-server/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dependencies {
1919
implementation("io.micrometer:micrometer-registry-prometheus:1.16.3")
2020

2121
implementation("com.sksamuel.aedile:aedile-core:3.0.2")
22-
implementation("io.github.oshai:kotlin-logging:7.0.14")
22+
implementation("io.github.oshai:kotlin-logging:8.0.01")
2323
implementation(platform("org.apache.logging.log4j:log4j-bom:2.25.3"))
2424
implementation("org.apache.logging.log4j:log4j-jul")
2525
runtimeOnly("org.apache.logging.log4j:log4j-core")

maven-binding-builder/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88
api("io.ktor:ktor-client-core:3.4.0")
99
api(projects.actionBindingGenerator)
1010
implementation(projects.sharedInternal)
11-
implementation("io.github.oshai:kotlin-logging:7.0.14")
11+
implementation("io.github.oshai:kotlin-logging:8.0.01")
1212

1313
runtimeOnly(projects.githubWorkflowsKt)
1414

shared-internal/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dependencies {
1919
implementation("io.ktor:ktor-client-content-negotiation:3.4.0")
2020
implementation("io.ktor:ktor-client-logging:3.4.0")
2121
implementation("io.ktor:ktor-serialization-kotlinx-json:3.4.0")
22-
implementation("io.github.oshai:kotlin-logging:7.0.14")
22+
implementation("io.github.oshai:kotlin-logging:8.0.01")
2323
implementation("com.auth0:java-jwt:4.5.1")
2424
implementation("org.kohsuke:github-api:1.330")
2525

0 commit comments

Comments
 (0)