From a1d1a82220a2278881a14f1db5b4f3e7d01b16fa Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 28 Mar 2024 07:44:15 +0100 Subject: [PATCH] Update dependency net.thauvin.erik.urlencoder:urlencoder-lib to v1.5.0 (#149) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [net.thauvin.erik.urlencoder:urlencoder-lib](https://togithub.com/ethauvin/urlencoder) | `1.4.0` -> `1.5.0` | [![age](https://developer.mend.io/api/mc/badges/age/maven/net.thauvin.erik.urlencoder:urlencoder-lib/1.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/net.thauvin.erik.urlencoder:urlencoder-lib/1.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/net.thauvin.erik.urlencoder:urlencoder-lib/1.4.0/1.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/net.thauvin.erik.urlencoder:urlencoder-lib/1.4.0/1.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes
ethauvin/urlencoder (net.thauvin.erik.urlencoder:urlencoder-lib) ### [`v1.5.0`](https://togithub.com/ethauvin/urlencoder/releases/tag/1.5.0) [Compare Source](https://togithub.com/ethauvin/urlencoder/compare/1.4.0...1.5.0) #### Summary - Updated Kotlin to 1.9.24 (The Kotlin `languageVersion` is still set to 1.6, so there's no change in the library's ABI.) - Added additional Kotlin Multiplatform targets. - Tidied the Kotlin Multiplatform source sets, thanks to the [new hierarchy structure](https://kotlinlang.org/docs/multiplatform-hierarchy.html). - Bumped the Node version used by Kotlin Multiplatform, which is required for Wasm support. - Refactored urlencoder-app to remove the Java Application plugin (this is no longer compatible with KGP), and instead use KGP's new `mainRun {}` function. #### What's Changed - add Java tests for verifying `@JvmStatic` by [@​aSemy](https://togithub.com/aSemy) in [https://github.com/ethauvin/urlencoder/pull/14](https://togithub.com/ethauvin/urlencoder/pull/14) - bump Kotlin to 1.9.23, enable additional Kotlin Multiplatform targets by [@​aSemy](https://togithub.com/aSemy) in [https://github.com/ethauvin/urlencoder/pull/15](https://togithub.com/ethauvin/urlencoder/pull/15) - Bumped Gradle to version 8.7 by [@​ethauvin](https://togithub.com/ethauvin) in https://github.com/ethauvin/urlencoder/commit/a689c56e1eb7fdd4029d8a8013f230ccacfb977f - Bumped Dokka to version 1.9.20 by [@​ethauvin](https://togithub.com/ethauvin) in https://github.com/ethauvin/urlencoder/commit/b59d01ec6d9de4819498b61cfb10c4bb7d31fbe - bump version to 1.5.0-SNAPSHOT by [@​aSemy](https://togithub.com/aSemy) in [https://github.com/ethauvin/urlencoder/pull/16](https://togithub.com/ethauvin/urlencoder/pull/16) - Reworked GitHub workflows by [@​ethauvin](https://togithub.com/ethauvin) in https://github.com/ethauvin/urlencoder/commit/1ef2045b3233b26eca3800598b64a3131b86a9ac - Tidy publishing config by [@​aSemy](https://togithub.com/aSemy) in [https://github.com/ethauvin/urlencoder/pull/17](https://togithub.com/ethauvin/urlencoder/pull/17) **Full Changelog**: https://github.com/ethauvin/urlencoder/compare/1.4.0...1.5.0
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/krzema12/snakeyaml-engine-kmp). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index d7492f3a2..83d2cad25 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -17,7 +17,7 @@ kotlin { commonMain { dependencies { implementation("com.squareup.okio:okio:3.9.0") - implementation("net.thauvin.erik.urlencoder:urlencoder-lib:1.4.0") + implementation("net.thauvin.erik.urlencoder:urlencoder-lib:1.5.0") } }