Skip to content

chore(deps): update ktor monorepo to v3.0.3 (patch) #365

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 15, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
io.ktor:ktor-server-netty 3.0.0-eap-852 -> 3.0.3 age adoption passing confidence
io.ktor:ktor-server-core 3.0.0-eap-852 -> 3.0.3 age adoption passing confidence

Release Notes

ktorio/ktor (io.ktor:ktor-server-netty)

v3.0.3

Published 18 December 2024

Bugfixes
  • "Module not found" errors when executing browserProductionWebpack task since 3.0.2 (KTOR-7912)
  • Darwin: "IllegalStateException: Content-Length mismatch" on requesting gzipped content (KTOR-7943)
  • JS/WASM fails with "IllegalStateException: Content-Length mismatch" on requesting gzipped content (KTOR-7934)
  • FormFieldLimit is overwritten by default arg (KTOR-7946)
  • A Performance issue reading with ByteReadChannel.readUTF8LineTo request body (KTOR-7941)
  • Installing HttpCache before ContentEncoding prevents response body to be decoded (KTOR-7830)
  • TestApplication.stop() doesn't stop the application anymore (KTOR-7682)
  • File is not commited after closing writeChannel() of the file (KTOR-7845)

v3.0.2

Published 3 December 2024

Bugfixes
  • ServletResponseBody is corrupted due to the wrong offset (KTOR-7904)
  • File is not commited after closing writeChannel() of the file (KTOR-7845)
  • CIO: Response body truncated because read amount of bytes isn't compared against Content-Length (KTOR-7828)
  • HttpCache: IndexOutOfBoundsException on malformed Cache-Control header (KTOR-7172)
  • call.respondSource returns empty response but passes in tests (KTOR-7683)
  • ByteReadChannel.{readShort/readInt/readLong} leads to infinite loop when required bytes distributed in flush and read buffers (KTOR-7746)
  • Routing: ContentType.match doesn't match wildcard content types (KTOR-7278)
  • Connections aren't released properly if there are multiple parallel connections to the same address (KTOR-7777)
  • FileItem.streamProvider is deprecated and doesn't have implementation (KTOR-7731)
  • MergedApplicationConfig.toMap replaces nested configs completely without merging (KTOR-7008)
  • Digest Auth: Ktor 3.0.1 uses the wrong "nc" value to calculate digest (KTOR-7681)
  • JS: "ReferenceError: require is not defined" when compiling to ES Module (KTOR-6158)
  • Chunked transfer encoding failure not caught with retry (KTOR-7618)
  • HttpCookies: IllegalArgumentException when server returns a raw cookie with not allowed characters (KTOR-7469)
  • DefaultRequest: Content-Type header of default request is not overridable (KTOR-6946)
Improvements
  • Support binary (Smile) encoding in JacksonConverter (KTOR-7726)
  • ServiceLoader.load call is slow on Android (KTOR-7698)

v3.0.1

Published 29 October 2024

Bugfixes
  • Remove space from the default client user agent (KTOR-7655)
  • Url.segments throws on URLs with root path (KTOR-7625)
  • Digest Auth does not implement nc parameter correctly according to RFC 7616 (KTOR-4318)
  • about:blank URL should be parsed correctly as about:blank (KTOR-7410)
  • ByteReadChannel.{readShort/readInt/readLong} could lead to CPU-bound indefinite loop since 3.0.0 (KTOR-7571)
  • CIO: Requests face connection timeouts when executed on the Android main dispatcher (KTOR-6803)
  • receiveMultipart fails with "IOException: Failed to parse multipart" when content-type is capitalized (KTOR-7596)
Improvements
  • WebSockets logging: The plugin calls toString() unnecessarily on transformed response body (KTOR-7623)
  • INFO log message with all server interceptors on server startup (KTOR-7326)
  • Digest auth: username and cnonce parameters aren't surrounded with quotes (KTOR-7561)
  • ContentType.fromFilePath for newer file formats HEIC, AVIF, HEIF (KTOR-7536)
  • Support missing native targets in ktor-serialization-kotlinx-xml (KTOR-7583)

v3.0.0

Published 9 October 2024

Bugfixes
  • Darwin: The maxFrameSize option has no effect (KTOR-6963)
  • KotlinReflectionInternalError (createClientPlugin) when running release APK on Android (KTOR-7479)
  • Netty: UnsupportedOperationException is thrown when responding in CallSetup and CORS plugin is installed (KTOR-4433)
  • MicrometerMetrics: Prometheus meter registry 1.13.0 generates configuration warning (KTOR-7035)
  • Websockets/Auth: ProtocolException when requesting protected WebSockets endpoint (KTOR-7363)
  • Data truncated in receiveParameters and receiveMultipart (KTOR-7201)
  • The pathSegments returns empty strings for trailing slashes (KTOR-4402)
  • HttpRequestRetry: exponential delay doesn't work for delays <= 1 second (KTOR-7294)
  • JS browser: "Error: HttpClientCall expected" on HTTP request when targeting es2015 (KTOR-6882)
  • Incomplete write using io.ktor.util.cio.FileChannelsKt#writeChannel (KTOR-1618)
  • response.content.copyAndClose(targetFile.writeChannel()) sometimes loses some bytes (KTOR-3003)
  • ByteWriteChannel.flush is not Waiting Until Flushing the Internal Buffer to the Destination (KTOR-3102)
  • CORS check fails when the Origin header has a value without trailing slash (KTOR-5936)
  • Closing socket and selector leaks descriptor on native (KTOR-7255)
  • ConnectionUtilsNative leaks descriptors on error (KTOR-6977)
  • withTimeout doesn't cancel socket connection on native (KTOR-5289)
  • MockEngine: the ability to set dispatcher is removed (KTOR-6417)
Improvements
  • Misleading readBytes method name (KTOR-6596)
  • Remove reflection utils used only on JVM target from common source set (KTOR-7540)
  • Weak security algorithm (MD5) in FileCacheStorage (KTOR-6589)
  • Missing constants for AcceptEncoding (KTOR-6412)
  • Add respondFile overload with Path parameters (KTOR-7202)
  • MalformedInputException confusingly is a Throwable but not an Exception (KTOR-7316)
  • CSRF: The allowOrigin method enables the Origin Header validation (KTOR-6695)
  • Auth: Drop marker interface requirements (KTOR-7323)
  • Routing: Support accessing the request body in RouteSelector (KTOR-7084)
  • Make Cookie class Serializable (KTOR-6258)
  • Make the internal Route.swaggerUI method public (KTOR-6491)
  • Ktor clients and servers should use Dispatchers.IO.limitedParallelism(...) wherever possible (KTOR-6462)
Features
  • Support androidNative targets (KTOR-7289)
  • Provide the API that simplifies disabling CORS for testing purposes (KTOR-3329)
  • Add support for mingw to ktor-network in order to make server and client work on windows (KTOR-4080)

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 these updates again.


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

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

Copy link

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
No data about Duplication

See analysis details on SonarCloud

@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from 21bb680 to 9c95e1a Compare October 9, 2024 16:01
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.0-tls-eap-907 (patch) chore(deps): update ktor monorepo to v3.0.0 (patch) Oct 9, 2024
@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from 9c95e1a to 95a0bf5 Compare October 10, 2024 22:31
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.0 (patch) chore(deps): update ktor monorepo to v3.0.1-eap-1112 (patch) Oct 10, 2024
@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from 95a0bf5 to 5192cd7 Compare October 11, 2024 21:17
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.1-eap-1112 (patch) chore(deps): update ktor monorepo to v3.0.1-eap-1113 (patch) Oct 11, 2024
@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from 5192cd7 to 6d8bfac Compare October 12, 2024 21:48
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.1-eap-1113 (patch) chore(deps): update ktor monorepo to v3.0.1-eap-1114 (patch) Oct 12, 2024
@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from 6d8bfac to 676cd68 Compare October 13, 2024 22:25
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.1-eap-1114 (patch) chore(deps): update ktor monorepo to v3.0.1-eap-1115 (patch) Oct 13, 2024
Copy link

codecov bot commented Oct 13, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 32.17%. Comparing base (281cf8a) to head (cab81c0).

Additional details and impacted files
@@            Coverage Diff            @@
##               main     #365   +/-   ##
=========================================
  Coverage     32.17%   32.17%           
  Complexity        8        8           
=========================================
  Files            11       11           
  Lines           115      115           
  Branches          7        7           
=========================================
  Hits             37       37           
  Misses           78       78           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from 676cd68 to a1370fb Compare October 15, 2024 22:27
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.1-eap-1115 (patch) chore(deps): update ktor monorepo to v3.0.1-eap-1116 (patch) Oct 15, 2024
@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from a1370fb to c476838 Compare October 16, 2024 21:44
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.1-eap-1116 (patch) chore(deps): update ktor monorepo to v3.0.1-eap-1117 (patch) Oct 16, 2024
@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from c476838 to dc7735c Compare October 17, 2024 22:06
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.1-eap-1117 (patch) chore(deps): update ktor monorepo to v3.0.1-eap-1118 (patch) Oct 17, 2024
@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from dc7735c to 380d1b5 Compare October 18, 2024 22:10
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.1-eap-1118 (patch) chore(deps): update ktor monorepo to v3.0.1-eap-1120 (patch) Oct 18, 2024
@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from 380d1b5 to 108af55 Compare October 21, 2024 21:34
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.1-eap-1120 (patch) chore(deps): update ktor monorepo to v3.0.1-eap-1121 (patch) Oct 21, 2024
@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from 108af55 to fcedbcd Compare October 24, 2024 21:55
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.1-eap-1121 (patch) chore(deps): update ktor monorepo to v3.0.1-eap-1122 (patch) Oct 24, 2024
@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from fcedbcd to ccfa669 Compare October 28, 2024 22:01
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.1-eap-1122 (patch) chore(deps): update ktor monorepo to v3.0.1-eap-1124 (patch) Oct 28, 2024
@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from ccfa669 to 8d6816d Compare October 29, 2024 14:22
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.1-eap-1124 (patch) chore(deps): update ktor monorepo to v3.0.1-eap-1125 (patch) Oct 29, 2024
@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from 8d6816d to ef03bed Compare October 29, 2024 22:11
@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from 8e03c21 to 06c2ed7 Compare November 23, 2024 22:23
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.2-eap-1161 (patch) chore(deps): update ktor monorepo to v3.0.2-eap-1163 (patch) Nov 23, 2024
@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from 06c2ed7 to 362f291 Compare November 26, 2024 22:32
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.2-eap-1163 (patch) chore(deps): update ktor monorepo to v3.0.2-eap-1165 (patch) Nov 26, 2024
@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from 362f291 to 582f310 Compare November 27, 2024 22:10
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.2-eap-1165 (patch) chore(deps): update ktor monorepo to v3.0.2-eap-1167 (patch) Nov 27, 2024
@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from 582f310 to cb6838f Compare November 28, 2024 22:44
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.2-eap-1167 (patch) chore(deps): update ktor monorepo to v3.0.2-eap-1169 (patch) Nov 28, 2024
@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from cb6838f to cdae1e3 Compare November 29, 2024 21:24
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.2-eap-1169 (patch) chore(deps): update ktor monorepo to v3.0.2-eap-1171 (patch) Nov 29, 2024
@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from cdae1e3 to 8c40592 Compare November 30, 2024 21:28
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.2-eap-1171 (patch) chore(deps): update ktor monorepo to v3.0.2-eap-1173 (patch) Nov 30, 2024
@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from 8c40592 to 6ee7227 Compare December 3, 2024 21:08
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.2-eap-1173 (patch) chore(deps): update ktor monorepo to v3.0.2-eap-1175 (patch) Dec 3, 2024
@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from 6ee7227 to 271fbc1 Compare December 4, 2024 16:39
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.2-eap-1175 (patch) chore(deps): update ktor monorepo to v3.0.2 (patch) Dec 4, 2024
@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from 271fbc1 to cab81c0 Compare December 12, 2024 21:31
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.2 (patch) chore(deps): update ktor monorepo to v3.0.3-eap-1185 (patch) Dec 12, 2024
@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from cab81c0 to 68ec236 Compare December 13, 2024 20:23
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.3-eap-1185 (patch) chore(deps): update ktor monorepo to v3.0.3-eap-1187 (patch) Dec 13, 2024
@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from 68ec236 to a7de0cc Compare December 14, 2024 21:03
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.3-eap-1187 (patch) chore(deps): update ktor monorepo to v3.0.3-eap-1189 (patch) Dec 14, 2024
@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from a7de0cc to 53e2987 Compare December 17, 2024 20:55
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.3-eap-1189 (patch) chore(deps): update ktor monorepo to v3.0.3-eap-1191 (patch) Dec 17, 2024
@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from 53e2987 to f095bcd Compare December 18, 2024 21:06
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.3-eap-1191 (patch) chore(deps): update ktor monorepo to v3.0.3-eap-1192 (patch) Dec 18, 2024
@renovate renovate bot force-pushed the renovate/patch-ktor-monorepo branch from f095bcd to b08e77c Compare December 19, 2024 20:45
@renovate renovate bot changed the title chore(deps): update ktor monorepo to v3.0.3-eap-1192 (patch) chore(deps): update ktor monorepo to v3.0.3 (patch) Dec 19, 2024
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