KyoriPowered / adventure-webui

A web UI for Adventure
https://webui.advntr.dev/
MIT License
27 stars 16 forks source link

chore(deps): Update patch-release dependency changes #143

Closed renovate[bot] closed 1 year ago

renovate[bot] commented 1 year ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
org.jetbrains.kotlinx:kotlinx-html 0.8.0 -> 0.8.1 age adoption passing confidence
io.ktor:ktor-server-compression 2.2.1 -> 2.2.3 age adoption passing confidence
io.ktor:ktor-server-caching-headers 2.2.1 -> 2.2.3 age adoption passing confidence
io.ktor:ktor-server-websockets 2.2.1 -> 2.2.3 age adoption passing confidence
io.ktor:ktor-client-okhttp 2.2.1 -> 2.2.3 age adoption passing confidence
io.ktor:ktor-client-core 2.2.1 -> 2.2.3 age adoption passing confidence
io.ktor:ktor-server-netty 2.2.1 -> 2.2.3 age adoption passing confidence
io.ktor:ktor-server-core 2.2.1 -> 2.2.3 age adoption passing confidence
com.pinterest:ktlint 0.48.0 -> 0.48.2 age adoption passing confidence

Release Notes

ktorio/ktor ### [`v2.2.3`](https://togithub.com/ktorio/ktor/blob/HEAD/CHANGELOG.md#​223) [Compare Source](https://togithub.com/ktorio/ktor/compare/2.2.2...2.2.3) > Published 31 January 2023 ##### Improvements - ContentNegotiation: "Skipping because the type is ignored" log message is unclear ([KTOR-5479](https://youtrack.jetbrains.com/issue/KTOR-5479)) - Make OAuth2 functionality multiplatform ([KTOR-1144](https://youtrack.jetbrains.com/issue/KTOR-1144)) - Log HTTP request time ([KTOR-1250](https://youtrack.jetbrains.com/issue/KTOR-1250)) - Add Client Plugins Trace Logging ([KTOR-5264](https://youtrack.jetbrains.com/issue/KTOR-5264)) ##### Bugfixes - FileStorage throws java.io.FileNotFoundException (File name too long) when request path is long ([KTOR-5443](https://youtrack.jetbrains.com/issue/KTOR-5443)) - HttpRequestRetry retries on FileNotFoundException thrown by FileStorage ([KTOR-5444](https://youtrack.jetbrains.com/issue/KTOR-5444)) - DropwizardMetricsPlugin logs status code incorrectly when is used together with StatusPages plugin ([KTOR-5420](https://youtrack.jetbrains.com/issue/KTOR-5420)) - Server ContentNegotiation no longer allows multiple decoders for one Content-Type ([KTOR-5410](https://youtrack.jetbrains.com/issue/KTOR-5410)) - Multipart File doesn't upload whole file, throws "Unexpected EOF: expected 4096 more bytes" for larger files ([KTOR-3455](https://youtrack.jetbrains.com/issue/KTOR-3455)) - Netty: Unable to set the `tcpKeepAlive` ([KTOR-5370](https://youtrack.jetbrains.com/issue/KTOR-5370)) - HOCON: CLI parameters don't override custom array properties since 2.1.0 ([KTOR-5100](https://youtrack.jetbrains.com/issue/KTOR-5100)) ### [`v2.2.2`](https://togithub.com/ktorio/ktor/blob/HEAD/CHANGELOG.md#​222) [Compare Source](https://togithub.com/ktorio/ktor/compare/2.2.1...2.2.2) > Published 3 January 2023 ##### Improvements - Resource annotation should be MetaSerializable ([KTOR-5397](https://youtrack.jetbrains.com/issue/KTOR-5397)) - The swaggerUI method is too restrictive and cannot be called inside a route ([KTOR-5307](https://youtrack.jetbrains.com/issue/KTOR-5307)) - Engine shutdown grace period and timeout are not configurable ([KTOR-5359](https://youtrack.jetbrains.com/issue/KTOR-5359)) - Allow specifying immutable in CacheControl ([KTOR-3757](https://youtrack.jetbrains.com/issue/KTOR-3757)) ##### Bugfixes - Server cannot be started with the Swagger plugin ([KTOR-5308](https://youtrack.jetbrains.com/issue/KTOR-5308)) - Regression in 2.2.1: Got EOF but at least 0 bytes were expected ([5372](https://youtrack.jetbrains.com/issue/KTOR-5372)) - HttpRequestRetry: Memory leak of coroutines objects when using the plugin ([KTOR-5099](https://youtrack.jetbrains.com/issue/KTOR-5099)) - iOS unit test deadlocks with DarwinClientEngine ([KTOR-5332](https://youtrack.jetbrains.com/issue/KTOR-5332)) - Gzip encoding: IllegalStateException: Expected 112, actual 113 ([KTOR-5300](https://youtrack.jetbrains.com/issue/KTOR-5300)) - Netty, HSTS: UnsupportedOperationException is thrown when the server responds before HSTS plugin ([KTOR-5276](https://youtrack.jetbrains.com/issue/KTOR-5276))
pinterest/ktlint ### [`v0.48.2`](https://togithub.com/pinterest/ktlint/blob/HEAD/CHANGELOG.md#​0482---2023-01-21) [Compare Source](https://togithub.com/pinterest/ktlint/compare/0.48.1...0.48.2) ##### Additional clarification on API Changes in `0.48.0` and `0.48.1` Starting with Ktlint `0.48.x`, rule and rule sets can be enabled/disabled with a separate property per rule (set). Please read [deprecation of (ktlint\_)disable_rules property](https://pinterest.github.io/ktlint/faq/#why-is-editorconfig-property-disabled_rules-deprecated-and-how-do-i-resolve-this) for more information. API Consumers that provide experimental rules to the KtLintRuleEngine, must also enable the experimental rules or instruct their users to do so in the `.editorconfig` file. From the perspective of the API Consumer it might be confusing or unnecessary to do so as the experimental rule was already provided explicitly. Ktlint wants to provide the user (e.g. a developer) a uniform and consistent user experience. The `.editorconfig` becomes more and more central to store configuration for Ktlint. This to ensure that all team members use the exact same configuration when running ktlint regardless whether the Ktlint CLI or an API Consumer is being used. The `.editorconfig` is a powerful configuration tool which can be used in very different ways. Most projects use a single `.editorconfig` file containing one common section for kotlin and kotlin scripts files. For example, the `.editorconfig` file of the Ktlint project contains following section: ```editorconfig [*.{kt,kts}] ij_kotlin_imports_layout = * ij_kotlin_allow_trailing_comma = true ij_kotlin_allow_trailing_comma_on_call_site = true ``` Other projects might contain multiple `.editorconfig` files for different parts of the project directory hierarchy. Or, use a single `.editorconfig` file containing multiple sections with different globs. Like all other configuration settings in Ktlint, the user should be able to enable and disable the experimental rules. Both for the entire set of experimental rules and for individual experimental rules. Ktlint allows API Consumers to set default values and override values for the `.editorconfig`. Specifying a default value means that the user does not need to define the property in the `.editorconfig` file but if the user specifies the value, it will take precedence. Specifying the override value ensures that this takes precedence on a value specified by the user in the `.editorconfig`. From the Ktlint perspective, it is advised that API Consumers provide the default value. See example below, for how to specify the `editorConfigDefault` property: KtLintRuleEngine( ruleProviders = ruleProviders, editorConfigDefaults = EditorConfigDefaults( EditorConfig .builder() .section( Section .builder() .glob(Glob("*.{kt,kts}")) .properties( Property .builder() .name("ktlint_experimental") .value("enabled"), ), ) .build() ) ) If the user has set property `ktlint_experimental` explicitly than that value will be used. If the value is not defined, the value provided via `editorConfigDefaults` will be used. If you do want to ignore the value of `ktlint_experimental` as set by the user, than you can set the EditorConfigOverride property. But as said before that is discouraged as the user might not understand why the `.editorconfig` property is being ignored (provided that the value set is not equal to the value provided by the API Consumer). ##### Added ##### Removed ##### Fixed - Fix with array-syntax annotations on the same line as other annotations `annotation` ([#​1765](https://togithub.com/pinterest/ktlint/issues/1765)) - Do not enable the experimental rules by default when `.editorconfig` properties `disabled_rules` or `ktlint_disabled_rules` are set. ([#​1771](https://togithub.com/pinterest/ktlint/issues/1771)) - A function signature not having any parameters which exceeds the `max-line-length` should be ignored by rule `function-signature` ([#​1773](https://togithub.com/pinterest/ktlint/issues/1773)) - Allow diacritics in names of classes, functions packages, and properties `class-naming`, `function-naming`, `package-name`, `property-naming` ([#​1757](https://togithub.com/pinterest/ktlint/issues/1757)) - Prevent violation of `file-name` rule on code snippets ([#​1768](https://togithub.com/pinterest/ktlint/issues/1768)) - Clarify that API Consumers have to enable experimental rules ([#​1768](https://togithub.com/pinterest/ktlint/issues/1768)) - Trim spaces in the `.editorconfig` property `ij_kotlin_imports_layout`'s entries ([#​1770](https://togithub.com/pinterest/ktlint/pull/1770)) ##### Changed ### [`v0.48.1`](https://togithub.com/pinterest/ktlint/blob/HEAD/CHANGELOG.md#​0481---2023-01-03) [Compare Source](https://togithub.com/pinterest/ktlint/compare/0.48.0...0.48.1) ##### Added ##### Removed ##### Fixed - An enumeration class having a primary constructor and in which the list of enum entries is followed by a semicolon then do not remove the semicolon in case it is followed by code element `no-semi` ([#​1733](https://togithub.com/pinterest/ktlint/issues/1733)) - Add API so that KtLint API consumer is able to process a Kotlin script snippet without having to specify a file path ([#​1738](https://togithub.com/pinterest/ktlint/issues/1738)) - Disable the `standard:filename` rule whenever Ktlint CLI is run with option `--stdin` ([#​1742](https://togithub.com/pinterest/ktlint/issues/1742)) - Fix initialization of the logger when `--log-level` is specified. Throw exception when an invalid value is passed. ([#​1749](https://togithub.com/pinterest/ktlint/issues/1749)) - Fix loading of custom rule set JARs. - Rules provided via a custom rule set JAR (Ktlint CLI) or by an API provider are enabled by default. Only rules in the `experimental` rule set are disabled by default. ([#​1747](https://togithub.com/pinterest/ktlint/issues/1747)) ##### Changed - Update Kotlin development version to `1.8.0` and Kotlin version to `1.8.0`.

Configuration

📅 Schedule: Branch creation - "after 5pm on the 2nd day of the month" (UTC), 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.



This PR has been generated by Mend Renovate. View repository job log here.

renovate[bot] commented 1 year ago

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.