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

Bump the all group with 21 updates #216

Merged
merged 1 commit into from
Feb 18, 2025
Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 17, 2025

Bumps the all group with 21 updates:

Package From To
org.http4k:http4k-server-netty 5.47.0.0 6.0.0.0
com.google.devtools.ksp:symbol-processing-api 2.1.10-1.0.29 2.1.10-1.0.30
com.google.devtools.ksp 2.1.10-1.0.29 2.1.10-1.0.30
io.ktor:ktor-serialization-kotlinx-json 3.0.3 3.1.0
io.ktor:ktor-client-cio 3.0.3 3.1.0
io.ktor:ktor-server-content-negotiation 3.0.3 3.1.0
io.ktor:ktor-server-cio 3.0.3 3.1.0
io.ktor:ktor-server-resources 3.0.3 3.1.0
io.ktor:ktor-server-websockets 3.0.3 3.1.0
io.ktor:ktor-client-content-negotiation 3.0.3 3.1.0
io.ktor:ktor-server-auth-jwt 3.0.3 3.1.0
io.ktor:ktor-server-metrics-micrometer 3.0.3 3.1.0
io.ktor:ktor-server-call-logging 3.0.3 3.1.0
io.ktor:ktor-server-default-headers 3.0.3 3.1.0
io.ktor:ktor-server-caching-headers 3.0.3 3.1.0
io.ktor:ktor-server-status-pages 3.0.3 3.1.0
io.ktor:ktor-server-test-host 3.0.3 3.1.0
io.netty:netty-all 4.2.0.RC2 4.2.0.RC3
io.netty:netty-transport-native-kqueue 4.2.0.RC2 4.2.0.RC3
io.netty:netty-transport-native-epoll 4.2.0.RC2 4.2.0.RC3
io.netty:netty-transport-native-io_uring 4.2.0.RC2 4.2.0.RC3

Updates org.http4k:http4k-server-netty from 5.47.0.0 to 6.0.0.0

Release notes

Sourced from org.http4k:http4k-server-netty's releases.

6.0.0.0

Changelog:

  • http4k-* : [License update] Selected "Pro-tier" modules will start to be introduced under the new http4k commercial license. These modules remain freely available for personal and academic purposes, and bear the new org.http4k.pro Maven coordinate group to distinguish them from the open-source modules.
  • http4k-* : [Breaking] Minimum Java version is now 21. Java versions 8-20 support is provided through our LTS programme available through the commercial version of http4k. Please see: https://www.http4k.org/enterprise/
  • http4k-* : [Breaking] Repackaging/splitting code into new modules coordinates. See the mapping grid below:
SOURCE MODULE - v5.X.X.X DESTINATION MODULE(S) - v6.X.X.X
http4k-aws http4k-platform-aws
http4k-azure http4k-platform-azure
http4k-cloudevents http4k-api-cloudevents
http4k-cloudnative Split into http4k-config, http4k-platform-core, http4k-platform-k8s
http4k-contract http4k-api-openapi
http4k-contract-jsonschema http4k-api-jsonschema
http4k-contract-ui-redoc http4k-api-ui-redoc
http4k-contract-ui-swagger http4k-api-ui-swagger
http4k-failsafe http4k-ops-failsafe
http4k-gcp http4k-platform-gcp
http4k-graphql http4k-api-graphql
http4k-htmx http4k-web-htmx
http4k-jsonrpc http4k-api-jsonrpc
http4k-metrics-micrometer http4k-ops-micrometer
http4k-opentelemetry http4k-ops-opentelemetry
http4k-resilience4j http4k-ops-resilience4j
  • http4k-* : [Breaking] Complete rewrite of the routing logic to work identically across HTTP, WS and SSE. Mostly backwards compatible, but some small may be required if you are referencing low level routing classes.
  • http4k-* : [Breaking] Removal of all deprecations. See the migration guide for more details.
  • http4k-core : [Breaking] regex lens now returns the entire matched string. To match groups, use regexGroup instead.
  • http4k-contract : [Breaking] withPostSecurityFilter() removed as is part of the contract DSL.
  • http4k-realtime-core : [Breaking] From above, repackaging of SSE and Websocket routing and filters.
  • http4k-connect-amazon-kms : [Breaking] CustomerKeySpec removed and replaced with KeySpec (as per AWS deprecations)
  • http4k-server : [Breaking] For consistency, all server configurations have been simplified to only support only simple examples. Anything more convoluted should be handled by user implementations.
  • http4k-api-contract : [Breaking] Security implementations moved from contract to security-core. This has involved repackaging them, but the APIs remain the same.
  • http4k-api-jsonrpc : [Breaking] Repackaging of some classes - APIs remain the same.
  • http4k-cloudnative : [Breaking] Code has moved to a combination of http4k-config, http4k-platform-core and http4k-platform-k8s modules.
  • http4k-* : [Unlikely Break] Upgrades all dependencies to latest versions. This may involve API changes if you are reliant on APIs in previous versions.
  • http4k-format-moshi : [Unlikely break/Enhancement] Support for MoshiLong as well as MoshiInteger. This has improved the handling of longs when using the MoshiNode types.
  • http4k-serverless-* : [Unlikely break] Replacement of serverless Context system to use new RequestKey mechanism.
  • http4k-core : [Replacement/Upgrade] RequestContextKey mechanism replaced with new simpler RequestKey lenses. This obliviates the need for the old InitializeRequestContext mechanism and filter
  • http4k-server-helidon : [Fix] SSE implementation now cleans up SSE connections correctly on close.
  • http4k-* : [Enhancement] Unified the Events for HTTP, WS and SSE to use the same ProtocolEvent type for tracing and logging transactions.
  • http4k-realtime-core : [Enhancement] Added ability to use debugging filters for both SSE and WebSockets.
  • http4k-realtime-core : [Enhancement] New DSL for defining Polyhandlers for routing to different types of HTTP/SSE/Websocket protocols connections. Use poly().
  • http4k-realtime-core : [Enhancement] SSE client for connecting to Server-sent events. Includes configurable auto-reconnection modes.
  • http4k-format-moshi : [Enhancement] Support for Data4k containers for Moshi.
  • http4k-tools-hotreload : [New Pro module!] Work with any http4k-based application without restarting the server. Includes browser reloading when working with web-based code, assets and templates. Extensible with custom rebuild logic - ships with Gradle support.
  • http4k-bridge-jakarta : [New module!] Easy migrations from/to Jakarta-based servers.
  • http4k-bridge-spring : [New module!] Easy migrations from/to Spring-based servers.
  • http4k-bridge-vertx : [New module!] Easy migrations from/to Vertx-based servers.
  • http4k-bridge-ktor : [New module!] Easy migrations from/to Ktor-based servers.

... (truncated)

Changelog

Sourced from org.http4k:http4k-server-netty's changelog.

v6.0.0.0

  • http4k-* : [License update] Selected "Pro-tier" modules will start to be introduced under the new http4k commercial license. These modules remain freely available for personal and academic purposes, and bear the new org.http4k.pro Maven coordinate group to distinguish them from the open-source modules.
  • http4k-* : [Breaking] Minimum Java version is now 21. Java versions 8-20 support is provided through our LTS programme available through the commercial version of http4k. Please see: https://www.http4k.org/enterprise/
  • http4k-* : [Breaking] Repackaging/splitting code into new modules coordinates. See the mapping grid below:
SOURCE MODULE - v5.X.X.X DESTINATION MODULE(S) - v6.X.X.X
http4k-aws http4k-platform-aws
http4k-azure http4k-platform-azure
http4k-cloudevents http4k-api-cloudevents
http4k-cloudnative Split into http4k-config, http4k-platform-core, http4k-platform-k8s
http4k-contract http4k-api-openapi
http4k-contract-jsonschema http4k-api-jsonschema
http4k-contract-ui-redoc http4k-api-ui-redoc
http4k-contract-ui-swagger http4k-api-ui-swagger
http4k-failsafe http4k-ops-failsafe
http4k-gcp http4k-platform-gcp
http4k-graphql http4k-api-graphql
http4k-htmx http4k-web-htmx
http4k-jsonrpc http4k-api-jsonrpc
http4k-metrics-micrometer http4k-ops-micrometer
http4k-opentelemetry http4k-ops-opentelemetry
http4k-resilience4j http4k-ops-resilience4j
  • http4k-* : [Breaking] Complete rewrite of the routing logic to work identically across HTTP, WS and SSE. Mostly backwards compatible, but some small may be required if you are referencing low level routing classes.
  • http4k-* : [Breaking] Removal of all deprecations. See the migration guide for more details.
  • http4k-core : [Breaking] regex lens now returns the entire matched string. To match groups, use regexGroup instead.
  • http4k-contract : [Breaking] withPostSecurityFilter() removed as is part of the contract DSL.
  • http4k-realtime-core : [Breaking] From above, repackaging of SSE and Websocket routing and filters.
  • http4k-connect-amazon-kms : [Breaking] CustomerKeySpec removed and replaced with KeySpec (as per AWS deprecations)
  • http4k-server : [Breaking] For consistency, all server configurations have been simplified to only support only simple examples. Anything more convoluted should be handled by user implementations.
  • http4k-api-contract : [Breaking] Security implementations moved from contract to security-core. This has involved repackaging them, but the APIs remain the same.
  • http4k-api-jsonrpc : [Breaking] Repackaging of some classes - APIs remain the same.
  • http4k-cloudnative : [Breaking] Code has moved to a combination of http4k-config, http4k-platform-core and http4k-platform-k8s modules.
  • http4k-* : [Unlikely Break] Upgrades all dependencies to latest versions. This may involve API changes if you are reliant on APIs in previous versions.
  • http4k-format-moshi : [Unlikely break/Enhancement] Support for MoshiLong as well as MoshiInteger. This has improved the handling of longs when using the MoshiNode types.
  • http4k-serverless-* : [Unlikely break] Replacement of serverless Context system to use new RequestKey mechanism.
  • http4k-core : [Replacement/Upgrade] RequestContextKey mechanism replaced with new simpler RequestKey lenses. This obliviates the need for the old InitializeRequestContext mechanism and filter
  • http4k-server-helidon : [Fix] SSE implementation now cleans up SSE connections correctly on close.
  • http4k-* : [Enhancement] Unified the Events for HTTP, WS and SSE to use the same ProtocolEvent type for tracing and logging transactions.
  • http4k-realtime-core : [Enhancement] Added ability to use debugging filters for both SSE and WebSockets.
  • http4k-realtime-core : [Enhancement] New DSL for defining Polyhandlers for routing to different types of HTTP/SSE/Websocket protocols connections. Use poly().
  • http4k-realtime-core : [Enhancement] SSE client for connecting to Server-sent events. Includes configurable auto-reconnection modes.
  • http4k-format-moshi : [Enhancement] Support for Data4k containers for Moshi.
  • http4k-tools-hotreload : [New Pro module!] Work with any http4k-based application without restarting the server. Includes browser reloading when working with web-based code, assets and templates. Extensible with custom rebuild logic - ships with Gradle support.
  • http4k-bridge-jakarta : [New module!] Easy migrations from/to Jakarta-based servers.
  • http4k-bridge-spring : [New module!] Easy migrations from/to Spring-based servers.
  • http4k-bridge-vertx : [New module!] Easy migrations from/to Vertx-based servers.
  • http4k-bridge-ktor : [New module!] Easy migrations from/to Ktor-based servers.
  • http4k-bridge-micronaut : [New module!] Easy migrations from/to Micronaut-based servers.

... (truncated)

Commits
  • c2a2f9f Release 6.0.0.0
  • 6e06e18 Ensure right tag is used during release
  • 7440c0e Remove empty modules
  • d9ba1ab Update CHANGELOG.md
  • a0875ab Upgrade version
  • c67a8bc Use separate ktor integrations for backends and bridge
  • cbb6cc3 use main buildnote GH action
  • 0d3f048 Add default HTTP client to Mcp client
  • 063fb37 Use ktor routing information to decide if request should be handled by http4k
  • 6465d1c Tweak order of changelog
  • Additional commits viewable in compare view

Updates com.google.devtools.ksp:symbol-processing-api from 2.1.10-1.0.29 to 2.1.10-1.0.30

Release notes

Sourced from com.google.devtools.ksp:symbol-processing-api's releases.

2.1.10-1.0.30

Bugs Fixed / PR Landed

google/ksp#2325 [KSP2] KSType.arguments return arguments on aliased type. google/ksp#2312 Partially migrate KSP off AGP's legacy Variant API google/ksp#2309 Resolver#getDeclarationsFromPackage() does not find generated files google/ksp#2252 Incremental processing breaks when a project dependency is modified google/ksp#2265 [ksp2] ksType.arguments will crash on a typealias's java wildcard type google/ksp#2264 [ksp2] getJavaWildcard does not return wildcard for List param (different with kapt/ksp1) google/ksp#2246 Resolver returns non-equal instances of the same declaration. google/ksp#2254 [KSP2] Resolver#overrides() gives incorrect result when method isn't accessible.

Commits
  • 2b9eeb0 UPDATE_KOTLIN_VERSION: 2.1.10
  • c16ad39 KSFunction: return type aliases if possible
  • b5dd1a0 UPDATE_AA_VERSION: 2.2.0-dev-745
  • 83a3e34 fix KSTypeNotPresentException for an existing nesting class (#2331)
  • 9bf2757 Enable configuration cache for AndroidIT
  • 694d88a Example of type expansion
  • 6f1cd08 Partially migrate KSP off AGP's legacy Variant API
  • d27912e KSP2: reimplement Resolver.getDeclarationsFromPackage
  • d96c00d Incremental: include AnyChangesWildcard to initial dirty set
  • 80d0a92 CI: bump actions/upload-artifact to v4
  • Additional commits viewable in compare view

Updates com.google.devtools.ksp from 2.1.10-1.0.29 to 2.1.10-1.0.30

Release notes

Sourced from com.google.devtools.ksp's releases.

2.1.10-1.0.30

Bugs Fixed / PR Landed

google/ksp#2325 [KSP2] KSType.arguments return arguments on aliased type. google/ksp#2312 Partially migrate KSP off AGP's legacy Variant API google/ksp#2309 Resolver#getDeclarationsFromPackage() does not find generated files google/ksp#2252 Incremental processing breaks when a project dependency is modified google/ksp#2265 [ksp2] ksType.arguments will crash on a typealias's java wildcard type google/ksp#2264 [ksp2] getJavaWildcard does not return wildcard for List param (different with kapt/ksp1) google/ksp#2246 Resolver returns non-equal instances of the same declaration. google/ksp#2254 [KSP2] Resolver#overrides() gives incorrect result when method isn't accessible.

Commits
  • 2b9eeb0 UPDATE_KOTLIN_VERSION: 2.1.10
  • c16ad39 KSFunction: return type aliases if possible
  • b5dd1a0 UPDATE_AA_VERSION: 2.2.0-dev-745
  • 83a3e34 fix KSTypeNotPresentException for an existing nesting class (#2331)
  • 9bf2757 Enable configuration cache for AndroidIT
  • 694d88a Example of type expansion
  • 6f1cd08 Partially migrate KSP off AGP's legacy Variant API
  • d27912e KSP2: reimplement Resolver.getDeclarationsFromPackage
  • d96c00d Incremental: include AnyChangesWildcard to initial dirty set
  • 80d0a92 CI: bump actions/upload-artifact to v4
  • Additional commits viewable in compare view

Updates io.ktor:ktor-serialization-kotlinx-json from 3.0.3 to 3.1.0

Release notes

Sourced from io.ktor:ktor-serialization-kotlinx-json's releases.

3.1.0

Published 11 February 2025

Features

  • Add reconnection in ClientSSESession (KTOR-6242)
  • Add heartbeat to SSE (KTOR-7908)
  • Add serialization for SSE (KTOR-7435)
  • Support WebSockets in Curl engine (KTOR-5199)
  • Support conversion between byte channel interfaces and kotlinx-io primitives (KTOR-7327)
  • Support CIO server on WasmJS and JS targets (KTOR-865)
  • Logging: Format log like OkHttp client does (KTOR-7806)
  • Support static linking for curl on all platforms (KTOR-6754)
  • Support ARM target in Ktor client with Kotlin/Native and Curl (KTOR-4570)
  • Unix Domain Socket Support for Native Targets (KTOR-6960)
  • Support receiving multipart data with Ktor client (KTOR-6632)
  • Client CIO engine support for wasm-js and js (KTOR-7675)
  • Support NodeJs target for ktor-network (KTOR-6004)

Improvements

  • Auth: BasicAuthProvider caches credentials until process death (KTOR-7775)
  • CallLogging: Unhelpful log output "Application started: ..." (KTOR-7797)
  • Add operator contains to ContentType objects (KTOR-8145)
  • Darwin: Ambiguous DarwinHttpRequestException for SSL Pinning failure (KTOR-6759)
  • Introduce ServerSocket.port to simplify port access for the bound server (KTOR-8136)
  • Java, Js, Darwin: Response header Sec-WebSocket-Protocol is missing (KTOR-6970)
  • Fail to parse url: file:/path/to/file.txt (KTOR-6709)
  • Auth: Make re-auth/refresh status codes configurable (KTOR-7644)
  • Add media type for Yaml (KTOR-8064)
  • Logging: HTTP method is logged with the class name (KTOR-8011)
  • Uncaught cannot write to a channel errors from ws-pinger (KTOR-8008)
  • Apache5 client: Upgrade HttpClient to 5.4 (KTOR-8080)
  • Swagger: Add deepLinking configuration (KTOR-8074)
  • Access to the configuration options of a HttpClient plugin to tweak or wrap them with additional logic (KTOR-7213)
  • Don't publish internal test artifacts (KTOR-8058)
  • Micrometer: Add UptimeMetrics to standard meterBinders (KTOR-8061)
  • MicrometerMetrics: Do not write unknown HTTP method names to metrics (KTOR-7658)
  • Update to Kotlin 2.1.0 (KTOR-7866)
  • ByteWriteChannel is missing writeFloat()/readFloat() (KTOR-7651)
  • Engine exclusion from clientTests is confusing (KTOR-7723)
  • UrlBuilder: Support telephone scheme (KTOR-4816)
  • Swagger UI: Missing Favicon while browsing the UI (KTOR-7893)
  • ContentNegotiation client plugin: no way to opt out of Accept on a per-request basis (KTOR-7722)
  • receiveMultipart throws IllegalStateException instead of UnsupportedMediaTypeException (KTOR-7470)
  • Implement a suspending version of EmbeddedServer.start(wait=true) (KTOR-7459)
  • Allow to Disable Body Decompression on the Server for a specific call (KTOR-7679)
  • UDPSocketBuilder missing bind overload with hostName and port (KTOR-7663)
  • Make Url class @Serializable and JVM Serializable (KTOR-7620)
  • Improve parsing of supported media types (MIME types) (KTOR-7586)
  • Migrate to kotlin.AutoCloseable (KTOR-7606)

... (truncated)

Changelog

Sourced from io.ktor:ktor-serialization-kotlinx-json's changelog.

3.1.0

Published 11 February 2025

Features

  • Add reconnection in ClientSSESession (KTOR-6242)
  • Add heartbeat to SSE (KTOR-7908)
  • Add serialization for SSE (KTOR-7435)
  • Support WebSockets in Curl engine (KTOR-5199)
  • Support conversion between byte channel interfaces and kotlinx-io primitives (KTOR-7327)
  • Support CIO server on WasmJS and JS targets (KTOR-865)
  • Logging: Format log like OkHttp client does (KTOR-7806)
  • Support static linking for curl on all platforms (KTOR-6754)
  • Support ARM target in Ktor client with Kotlin/Native and Curl (KTOR-4570)
  • Unix Domain Socket Support for Native Targets (KTOR-6960)
  • Support receiving multipart data with Ktor client (KTOR-6632)
  • Client CIO engine support for wasm-js and js (KTOR-7675)
  • Support NodeJs target for ktor-network (KTOR-6004)

Improvements

  • Auth: BasicAuthProvider caches credentials until process death (KTOR-7775)
  • CallLogging: Unhelpful log output "Application started: ..." (KTOR-7797)
  • Add operator contains to ContentType objects (KTOR-8145)
  • Darwin: Ambiguous DarwinHttpRequestException for SSL Pinning failure (KTOR-6759)
  • Introduce ServerSocket.port to simplify port access for the bound server (KTOR-8136)
  • Java, Js, Darwin: Response header Sec-WebSocket-Protocol is missing (KTOR-6970)
  • Fail to parse url: file:/path/to/file.txt (KTOR-6709)
  • Auth: Make re-auth/refresh status codes configurable (KTOR-7644)
  • Add media type for Yaml (KTOR-8064)
  • Logging: HTTP method is logged with the class name (KTOR-8011)
  • Uncaught cannot write to a channel errors from ws-pinger (KTOR-8008)
  • Apache5 client: Upgrade HttpClient to 5.4 (KTOR-8080)
  • Swagger: Add deepLinking configuration (KTOR-8074)
  • Access to the configuration options of a HttpClient plugin to tweak or wrap them with additional logic (KTOR-7213)
  • Don't publish internal test artifacts (KTOR-8058)
  • Micrometer: Add UptimeMetrics to standard meterBinders (KTOR-8061)
  • MicrometerMetrics: Do not write unknown HTTP method names to metrics (KTOR-7658)
  • Update to Kotlin 2.1.0 (KTOR-7866)
  • ByteWriteChannel is missing writeFloat()/readFloat() (KTOR-7651)
  • Engine exclusion from clientTests is confusing (KTOR-7723)
  • UrlBuilder: Support telephone scheme (KTOR-4816)
  • Swagger UI: Missing Favicon while browsing the UI (KTOR-7893)
  • ContentNegotiation client plugin: no way to opt out of Accept on a per-request basis (KTOR-7722)
  • receiveMultipart throws IllegalStateException instead of UnsupportedMediaTypeException (KTOR-7470)
  • Implement a suspending version of EmbeddedServer.start(wait=true) (KTOR-7459)
  • Allow to Disable Body Decompression on the Server for a specific call (KTOR-7679)
  • UDPSocketBuilder missing bind overload with hostName and port (KTOR-7663)
  • Make Url class @​Serializable and JVM Serializable (KTOR-7620)
  • Improve parsing of supported media types (MIME types) (KTOR-7586)
  • Migrate to kotlin.AutoCloseable (KTOR-7606)

... (truncated)

Commits

Updates io.ktor:ktor-client-cio from 3.0.3 to 3.1.0

Release notes

Sourced from io.ktor:ktor-client-cio's releases.

3.1.0

Published 11 February 2025

Features

  • Add reconnection in ClientSSESession (KTOR-6242)
  • Add heartbeat to SSE (KTOR-7908)
  • Add serialization for SSE (KTOR-7435)
  • Support WebSockets in Curl engine (KTOR-5199)
  • Support conversion between byte channel interfaces and kotlinx-io primitives (KTOR-7327)
  • Support CIO server on WasmJS and JS targets (KTOR-865)
  • Logging: Format log like OkHttp client does (KTOR-7806)
  • Support static linking for curl on all platforms (KTOR-6754)
  • Support ARM target in Ktor client with Kotlin/Native and Curl (KTOR-4570)
  • Unix Domain Socket Support for Native Targets (KTOR-6960)
  • Support receiving multipart data with Ktor client (KTOR-6632)
  • Client CIO engine support for wasm-js and js (KTOR-7675)
  • Support NodeJs target for ktor-network (KTOR-6004)

Improvements

  • Auth: BasicAuthProvider caches credentials until process death (KTOR-7775)
  • CallLogging: Unhelpful log output "Application started: ..." (KTOR-7797)
  • Add operator contains to ContentType objects (KTOR-8145)
  • Darwin: Ambiguous DarwinHttpRequestException for SSL Pinning failure (KTOR-6759)
  • Introduce ServerSocket.port to simplify port access for the bound server (KTOR-8136)
  • Java, Js, Darwin: Response header Sec-WebSocket-Protocol is missing (KTOR-6970)
  • Fail to parse url: file:/path/to/file.txt (KTOR-6709)
  • Auth: Make re-auth/refresh status codes configurable (KTOR-7644)
  • Add media type for Yaml (KTOR-8064)
  • Logging: HTTP method is logged with the class name (KTOR-8011)
  • Uncaught cannot write to a channel errors from ws-pinger (KTOR-8008)
  • Apache5 client: Upgrade HttpClient to 5.4 (KTOR-8080)
  • Swagger: Add deepLinking configuration (KTOR-8074)
  • Access to the configuration options of a HttpClient plugin to tweak or wrap them with additional logic (KTOR-7213)
  • Don't publish internal test artifacts (KTOR-8058)
  • Micrometer: Add UptimeMetrics to standard meterBinders (KTOR-8061)
  • MicrometerMetrics: Do not write unknown HTTP method names to metrics (KTOR-7658)
  • Update to Kotlin 2.1.0 (KTOR-7866)
  • ByteWriteChannel is missing writeFloat()/readFloat() (KTOR-7651)
  • Engine exclusion from clientTests is confusing (KTOR-7723)
  • UrlBuilder: Support telephone scheme (KTOR-4816)
  • Swagger UI: Missing Favicon while browsing the UI (KTOR-7893)
  • ContentNegotiation client plugin: no way to opt out of Accept on a per-request basis (KTOR-7722)
  • receiveMultipart throws IllegalStateException instead of UnsupportedMediaTypeException (KTOR-7470)
  • Implement a suspending version of EmbeddedServer.start(wait=true) (KTOR-7459)
  • Allow to Disable Body Decompression on the Server for a specific call (KTOR-7679)
  • UDPSocketBuilder missing bind overload with hostName and port (KTOR-7663)
  • Make Url class @Serializable and JVM Serializable (KTOR-7620)
  • Improve parsing of supported media types (MIME types) (KTOR-7586)
  • Migrate to kotlin.AutoCloseable (KTOR-7606)

... (truncated)

Changelog

Sourced from io.ktor:ktor-client-cio's changelog.

3.1.0

Published 11 February 2025

Features

  • Add reconnection in ClientSSESession (KTOR-6242)
  • Add heartbeat to SSE (KTOR-7908)
  • Add serialization for SSE (KTOR-7435)
  • Support WebSockets in Curl engine (KTOR-5199)
  • Support conversion between byte channel interfaces and kotlinx-io primitives (KTOR-7327)
  • Support CIO server on WasmJS and JS targets (KTOR-865)
  • Logging: Format log like OkHttp client does (KTOR-7806)
  • Support static linking for curl on all platforms (KTOR-6754)
  • Support ARM target in Ktor client with Kotlin/Native and Curl (KTOR-4570)
  • Unix Domain Socket Support for Native Targets (KTOR-6960)
  • Support receiving multipart data with Ktor client (KTOR-6632)
  • Client CIO engine support for wasm-js and js (KTOR-7675)
  • Support NodeJs target for ktor-network (KTOR-6004)

Improvements

  • Auth: BasicAuthProvider caches credentials until process death (KTOR-7775)
  • CallLogging: Unhelpful log output "Application started: ..." (KTOR-7797)
  • Add operator contains to ContentType objects (KTOR-8145)
  • Darwin: Ambiguous DarwinHttpRequestException for SSL Pinning failure (KTOR-6759)
  • Introduce ServerSocket.port to simplify port access for the bound server (KTOR-8136)
  • Java, Js, Darwin: Response header Sec-WebSocket-Protocol is missing (KTOR-6970)
  • Fail to parse url: file:/path/to/file.txt (KTOR-6709)
  • Auth: Make re-auth/refresh status codes configurable (KTOR-7644)
  • Add media type for Yaml (KTOR-8064)
  • Logging: HTTP method is logged with the class name (KTOR-8011)
  • Uncaught cannot write to a channel errors from ws-pinger (KTOR-8008)
  • Apache5 client: Upgrade HttpClient to 5.4 (KTOR-8080)
  • Swagger: Add deepLinking configuration (KTOR-8074)
  • Access to the configuration options of a HttpClient plugin to tweak or wrap them with additional logic (KTOR-7213)
  • Don't publish internal test artifacts (KTOR-8058)
  • Micrometer: Add UptimeMetrics to standard meterBinders (KTOR-8061)
  • MicrometerMetrics: Do not write unknown HTTP method names to metrics (KTOR-7658)
  • Update to Kotlin 2.1.0 (KTOR-7866)
  • ByteWriteChannel is missing writeFloat()/readFloat() (KTOR-7651)
  • Engine exclusion from clientTests is confusing (KTOR-7723)
  • UrlBuilder: Support telephone scheme (KTOR-4816)
  • Swagger UI: Missing Favicon while browsing the UI (KTOR-7893)
  • ContentNegotiation client plugin: no way to opt out of Accept on a per-request basis (KTOR-7722)
  • receiveMultipart throws IllegalStateException instead of UnsupportedMediaTypeException (KTOR-7470)
  • Implement a suspending version of EmbeddedServer.start(wait=true) (KTOR-7459)
  • Allow to Disable Body Decompression on the Server for a specific call (KTOR-7679)
  • UDPSocketBuilder missing bind overload with hostName and port (KTOR-7663)
  • Make Url class @​Serializable and JVM Serializable (KTOR-7620)
  • Improve parsing of supported media types (MIME types) (KTOR-7586)
  • Migrate to kotlin.AutoCloseable (KTOR-7606)

... (truncated)

Commits

Updates io.ktor:ktor-server-content-negotiation from 3.0.3 to 3.1.0

Release notes

Sourced from io.ktor:ktor-server-content-negotiation's releases.

3.1.0

Published 11 February 2025

Features

  • Add reconnection in ClientSSESession (KTOR-6242)
  • Add heartbeat to SSE (KTOR-7908)
  • Add serialization for SSE (KTOR-7435)
  • Support WebSockets in Curl engine (KTOR-5199)
  • Support conversion between byte channel interfaces and kotlinx-io primitives (KTOR-7327)
  • Support CIO server on WasmJS and JS targets (KTOR-865)
  • Logging: Format log like OkHttp client does (KTOR-7806)
  • Support static linking for curl on all platforms (KTOR-6754)
  • Support ARM target in Ktor client with Kotlin/Native and Curl (KTOR-4570)
  • Unix Domain Socket Support for Native Targets (KTOR-6960)
  • Support receiving multipart data with Ktor client (KTOR-6632)
  • Client CIO engine support for wasm-js and js (KTOR-7675)
  • Support NodeJs target for ktor-network (KTOR-6004)

Improvements

  • Auth: BasicAuthProvider caches credentials until process death (KTOR-7775)
  • CallLogging: Unhelpful log output "Application started: ..." (KTOR-7797)
  • Add operator contains to ContentType objects (KTOR-8145)
  • Darwin: Ambiguous DarwinHttpRequestException for SSL Pinning failure (KTOR-6759)
  • Introduce ServerSocket.port to simplify port access for the bound server (KTOR-8136)
  • Java, Js, Darwin: Response header Sec-WebSocket-Protocol is missing (KTOR-6970)
  • Fail to parse url: file:/path/to/file.txt (KTOR-6709)
  • Auth: Make re-auth/refresh status codes configurable (KTOR-7644)
  • Add media type for Yaml (KTOR-8064)
  • Logging: HTTP method is logged with the class name (KTOR-8011)
  • Uncaught cannot write to a channel errors from ws-pinger (KTOR-8008)
  • Apache5 client: Upgrade HttpClient to 5.4 (KTOR-8080)
  • Swagger: Add deepLinking configuration (KTOR-8074)
  • Access to the configuration options of a HttpClient plugin to tweak or wrap them with additional logic (KTOR-7213)
  • Don't publish internal test artifacts (KTOR-8058)
  • Micrometer: Add UptimeMetrics to standard meterBinders (KTOR-8061)
  • MicrometerMetrics: Do not write unknown HTTP method names to metrics (KTOR-7658)
  • Update to Kotlin 2.1.0 (KTOR-7866)
  • ByteWriteChannel is missing writeFloat()/readFloat() (KTOR-7651)
  • Engine exclusion from clientTests is confusing (KTOR-7723)
  • UrlBuilder: Support telephone scheme (KTOR-4816)
  • Swagger UI: Missing Favicon while browsing the UI (KTOR-7893)
  • ContentNegotiation client plugin: no way to opt out of Accept on a per-request basis (KTOR-7722)
  • receiveMultipart throws IllegalStateException instead of UnsupportedMediaTypeException (KTOR-7470)
  • Implement a suspending version of EmbeddedServer.start(wait=true) (KTOR-7459)
  • Allow to Disable Body Decompression on the Server for a specific call (KTOR-7679)
  • UDPSocketBuilder missing bind overload with hostName and port (KTOR-7663)
  • Make Url class @Serializable and JVM Serializable (KTOR-7620)
  • Improve parsing of supported media types (MIME types) (KTOR-7586)
  • Migrate to kotlin.AutoCloseable (KTOR-7606)

... (truncated)

Changelog

Sourced from io.ktor:ktor-server-content-negotiation's changelog.

3.1.0

Published 11 February 2025

Features

  • Add reconnection in ClientSSESession (KTOR-6242)
  • Add heartbeat to SSE (KTOR-7908)
  • Add serialization for SSE (KTOR-7435)
  • Support WebSockets in Curl engine (KTOR-5199)
  • Support conversion between byte channel interfaces and kotlinx-io primitives (KTOR-7327)
  • Support CIO server on WasmJS and JS targets (KTOR-865)
  • Logging: Format log like OkHttp client does (KTOR-7806)
  • Support static linking for curl on all platforms (KTOR-6754)
  • Support ARM target in Ktor client with Kotlin/Native and Curl (KTOR-4570)
  • Unix Domain Socket Support for Native Targets (KTOR-6960)
  • Support receiving multipart data with Ktor client (KTOR-6632)
  • Client CIO engine support for wasm-js and js (KTOR-7675)
  • Support NodeJs target for ktor-network (KTOR-6004)

Improvements

  • Auth: BasicAuthProvider caches credentials until process death (KTOR-7775)
  • CallLogging: Unhelpful log output "Application started: ..." (KTOR-7797)
  • Add operator contains to ContentType objects (KTOR-8145)
  • Darwin: Ambiguous DarwinHttpRequestException for SSL Pinning failure (KTOR-6759)
  • Introduce ServerSocket.port to simplify port access for the bound server (KTOR-8136)
  • Java, Js, Darwin: Response header Sec-WebSocket-Protocol is missing (KTOR-6970)
  • Fail to parse url: file:/path/to/file.txt (KTOR-6709)
  • Auth: Make re-auth/refresh status codes configurable (KTOR-7644)
  • Add media type for Yaml (KTOR-8064)
  • Logging: HTTP method is logged with the class name (KTOR-8011)
  • Uncaught cannot write to a channel errors from ws-pinger (KTOR-8008)
  • Apache5 client: Upgrade HttpClient to 5.4 (KTOR-8080)
  • Swagger: Add deepLinking configuration (KTOR-8074)
  • Access to the configuration options of a HttpClient plugin to tweak or wrap them with additional logic (KTOR-7213)
  • Don't publish internal test artifacts (KTOR-8058)
  • Micrometer: Add UptimeMetrics to standard meterBinders (KTOR-8061)
  • MicrometerMetrics: Do not write unknown HTTP method names to metrics (KTOR-7658)
  • Update to Kotlin 2.1.0 (KTOR-7866)
  • ByteWriteChannel is missing writeFloat()/readFloat() (KTOR-7651)
  • Engine exclusion from clientTests is confusing (KTOR-7723)
  • UrlBuilder: Support telephone scheme (KTOR-4816)
  • Swagger UI: Missing Favico...

    Description has been truncated

Bumps the all group with 21 updates:

| Package | From | To |
| --- | --- | --- |
| [org.http4k:http4k-server-netty](https://github.com/http4k/http4k) | `5.47.0.0` | `6.0.0.0` |
| [com.google.devtools.ksp:symbol-processing-api](https://github.com/google/ksp) | `2.1.10-1.0.29` | `2.1.10-1.0.30` |
| [com.google.devtools.ksp](https://github.com/google/ksp) | `2.1.10-1.0.29` | `2.1.10-1.0.30` |
| [io.ktor:ktor-serialization-kotlinx-json](https://github.com/ktorio/ktor) | `3.0.3` | `3.1.0` |
| [io.ktor:ktor-client-cio](https://github.com/ktorio/ktor) | `3.0.3` | `3.1.0` |
| [io.ktor:ktor-server-content-negotiation](https://github.com/ktorio/ktor) | `3.0.3` | `3.1.0` |
| [io.ktor:ktor-server-cio](https://github.com/ktorio/ktor) | `3.0.3` | `3.1.0` |
| [io.ktor:ktor-server-resources](https://github.com/ktorio/ktor) | `3.0.3` | `3.1.0` |
| [io.ktor:ktor-server-websockets](https://github.com/ktorio/ktor) | `3.0.3` | `3.1.0` |
| [io.ktor:ktor-client-content-negotiation](https://github.com/ktorio/ktor) | `3.0.3` | `3.1.0` |
| [io.ktor:ktor-server-auth-jwt](https://github.com/ktorio/ktor) | `3.0.3` | `3.1.0` |
| [io.ktor:ktor-server-metrics-micrometer](https://github.com/ktorio/ktor) | `3.0.3` | `3.1.0` |
| [io.ktor:ktor-server-call-logging](https://github.com/ktorio/ktor) | `3.0.3` | `3.1.0` |
| [io.ktor:ktor-server-default-headers](https://github.com/ktorio/ktor) | `3.0.3` | `3.1.0` |
| [io.ktor:ktor-server-caching-headers](https://github.com/ktorio/ktor) | `3.0.3` | `3.1.0` |
| [io.ktor:ktor-server-status-pages](https://github.com/ktorio/ktor) | `3.0.3` | `3.1.0` |
| [io.ktor:ktor-server-test-host](https://github.com/ktorio/ktor) | `3.0.3` | `3.1.0` |
| [io.netty:netty-all](https://github.com/netty/netty) | `4.2.0.RC2` | `4.2.0.RC3` |
| [io.netty:netty-transport-native-kqueue](https://github.com/netty/netty) | `4.2.0.RC2` | `4.2.0.RC3` |
| [io.netty:netty-transport-native-epoll](https://github.com/netty/netty) | `4.2.0.RC2` | `4.2.0.RC3` |
| io.netty:netty-transport-native-io_uring | `4.2.0.RC2` | `4.2.0.RC3` |


Updates `org.http4k:http4k-server-netty` from 5.47.0.0 to 6.0.0.0
- [Release notes](https://github.com/http4k/http4k/releases)
- [Changelog](https://github.com/http4k/http4k/blob/master/CHANGELOG.md)
- [Commits](http4k/http4k@5.47.0.0...6.0.0.0)

Updates `com.google.devtools.ksp:symbol-processing-api` from 2.1.10-1.0.29 to 2.1.10-1.0.30
- [Release notes](https://github.com/google/ksp/releases)
- [Commits](google/ksp@2.1.10-1.0.29...2.1.10-1.0.30)

Updates `com.google.devtools.ksp` from 2.1.10-1.0.29 to 2.1.10-1.0.30
- [Release notes](https://github.com/google/ksp/releases)
- [Commits](google/ksp@2.1.10-1.0.29...2.1.10-1.0.30)

Updates `io.ktor:ktor-serialization-kotlinx-json` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.ktor:ktor-client-cio` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.ktor:ktor-server-content-negotiation` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.ktor:ktor-server-cio` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.ktor:ktor-server-resources` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.ktor:ktor-server-websockets` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.ktor:ktor-client-content-negotiation` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.ktor:ktor-server-auth-jwt` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.ktor:ktor-server-metrics-micrometer` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.ktor:ktor-server-call-logging` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.ktor:ktor-server-default-headers` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.ktor:ktor-server-caching-headers` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.ktor:ktor-server-status-pages` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.ktor:ktor-server-test-host` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.ktor:ktor-client-cio` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.ktor:ktor-server-content-negotiation` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.ktor:ktor-server-cio` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.ktor:ktor-server-resources` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.ktor:ktor-server-websockets` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.ktor:ktor-client-content-negotiation` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.ktor:ktor-server-auth-jwt` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.ktor:ktor-server-metrics-micrometer` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.ktor:ktor-server-call-logging` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.ktor:ktor-server-default-headers` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.ktor:ktor-server-caching-headers` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.ktor:ktor-server-status-pages` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.ktor:ktor-server-test-host` from 3.0.3 to 3.1.0
- [Release notes](https://github.com/ktorio/ktor/releases)
- [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md)
- [Commits](ktorio/ktor@3.0.3...3.1.0)

Updates `io.netty:netty-all` from 4.2.0.RC2 to 4.2.0.RC3
- [Commits](netty/netty@netty-4.2.0.RC2...netty-4.2.0.RC3)

Updates `io.netty:netty-transport-native-kqueue` from 4.2.0.RC2 to 4.2.0.RC3
- [Commits](netty/netty@netty-4.2.0.RC2...netty-4.2.0.RC3)

Updates `io.netty:netty-transport-native-epoll` from 4.2.0.RC2 to 4.2.0.RC3
- [Commits](netty/netty@netty-4.2.0.RC2...netty-4.2.0.RC3)

Updates `io.netty:netty-transport-native-io_uring` from 4.2.0.RC2 to 4.2.0.RC3

Updates `io.netty:netty-transport-native-epoll` from 4.2.0.RC2 to 4.2.0.RC3
- [Commits](netty/netty@netty-4.2.0.RC2...netty-4.2.0.RC3)

Updates `io.netty:netty-transport-native-io_uring` from 4.2.0.RC2 to 4.2.0.RC3

Updates `com.google.devtools.ksp` from 2.1.10-1.0.29 to 2.1.10-1.0.30
- [Release notes](https://github.com/google/ksp/releases)
- [Commits](google/ksp@2.1.10-1.0.29...2.1.10-1.0.30)

---
updated-dependencies:
- dependency-name: org.http4k:http4k-server-netty
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: com.google.devtools.ksp:symbol-processing-api
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: com.google.devtools.ksp
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.ktor:ktor-serialization-kotlinx-json
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-client-cio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-server-content-negotiation
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-server-cio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-server-resources
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-server-websockets
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-client-content-negotiation
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-server-auth-jwt
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-server-metrics-micrometer
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-server-call-logging
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-server-default-headers
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-server-caching-headers
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-server-status-pages
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-server-test-host
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-client-cio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-server-content-negotiation
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-server-cio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-server-resources
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-server-websockets
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-client-content-negotiation
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-server-auth-jwt
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-server-metrics-micrometer
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-server-call-logging
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-server-default-headers
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-server-caching-headers
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-server-status-pages
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.ktor:ktor-server-test-host
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.netty:netty-all
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.netty:netty-transport-native-kqueue
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.netty:netty-transport-native-epoll
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.netty:netty-transport-native-io_uring
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.netty:netty-transport-native-epoll
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: io.netty:netty-transport-native-io_uring
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: com.google.devtools.ksp
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Feb 17, 2025
@IRus IRus merged commit 84aef8e into main Feb 18, 2025
9 checks passed
@dependabot dependabot bot deleted the dependabot/gradle/all-66a3c77161 branch February 18, 2025 14:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file java Pull requests that update Java code
Development

Successfully merging this pull request may close these issues.

1 participant