build(deps): bump ktor from 2.3.12 to 3.0.3#1264
Conversation
3abab46 to
53b93df
Compare
d2ef1a0 to
c5902eb
Compare
JVM coverage report
|
| } | ||
|
|
||
| fun PipelineContext<*, ApplicationCall>.checkPermission(permissionParts: PermissionParts) { | ||
| fun RoutingContext.checkPermission(permissionParts: PermissionParts) { |
Check warning
Code scanning / detekt
The function checkPermission is missing documentation. Warning
| fun ApplicationCall.jwt() = principal<AccessTokenPrincipal>()?.jwt ?: jwtFromHeaders() | ||
|
|
||
| fun PipelineContext<Unit, ApplicationCall>.getUserName(): String? { | ||
| fun RoutingContext.getUserName(): String? { |
Check warning
Code scanning / detekt
The function getUserName is missing documentation. Warning
| } | ||
| route("{resourceId}") { | ||
| fun PipelineContext<*, ApplicationCall>.resourceId(): String = call.parameters["resourceId"]!! | ||
| fun RoutingContext.resourceId(): String = call.parameters["resourceId"]!! |
Check warning
Code scanning / detekt
Calling !! on a nullable type will throw a NullPointerException at runtime in case the value is null. It should be avoided. Warning
| route("{permissionName}") { | ||
| fun PipelineContext<*, ApplicationCall>.permissionName(): String = call.parameters["permissionName"]!! | ||
| fun PipelineContext<*, ApplicationCall>.permissionId(): String = "${resourceId()}/${permissionName()}" | ||
| fun RoutingContext.permissionName(): String = call.parameters["permissionName"]!! |
Check warning
Code scanning / detekt
Calling !! on a nullable type will throw a NullPointerException at runtime in case the value is null. It should be avoided. Warning
|
|
||
| @RequiresTransaction | ||
| fun collect(rootKey: String, callContext: CallContext?): JSONArray { | ||
| fun collect(rootKey: String, routingContext: RoutingContext?): JSONArray { |
Check warning
Code scanning / detekt
The function collect is missing documentation. Warning
|
|
||
| @RequiresTransaction | ||
| fun collect(rootKey: String, callContext: CallContext?): JSONArray { | ||
| fun collect(rootKey: String, routingContext: RoutingContext?): JSONArray { |
Check warning
Code scanning / detekt
Function collect is nested too deeply. Warning
|
|
||
| @RequiresTransaction | ||
| private fun CallContext.putEntries(newEntries: Map<String, String?>) { | ||
| private fun RoutingContext.putEntries(newEntries: Map<String, String?>) { |
Check warning
Code scanning / detekt
The function putEntries is too long (61). The maximum length is 60. Warning
|
|
||
| @RequiresTransaction | ||
| private fun CallContext.putEntries(newEntries: Map<String, String?>) { | ||
| private fun RoutingContext.putEntries(newEntries: Map<String, String?>) { |
Check warning
Code scanning / detekt
Function putEntries is nested too deeply. Warning
|
Updating the Node version in I configured Renovate to update the Node.js version1. Footnotes |
Bumps `ktor` from 2.3.12 to 3.0.3. Updates `io.ktor:ktor-server-auth` from 2.3.12 to 3.0.3 - [Release notes](https://github.com/ktorio/ktor/releases) - [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md) - [Commits](https://github.com/ktorio/ktor/commits) Updates `io.ktor:ktor-server-auth-jwt` from 2.3.12 to 3.0.3 - [Release notes](https://github.com/ktorio/ktor/releases) - [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md) - [Commits](https://github.com/ktorio/ktor/commits) Updates `io.ktor:ktor-server-core` from 2.3.12 to 3.0.3 - [Release notes](https://github.com/ktorio/ktor/releases) - [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md) - [Commits](https://github.com/ktorio/ktor/commits) Updates `io.ktor:ktor-server-cors` from 2.3.12 to 3.0.3 - [Release notes](https://github.com/ktorio/ktor/releases) - [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md) - [Commits](https://github.com/ktorio/ktor/commits) Updates `io.ktor:ktor-server-forwarded-header` from 2.3.12 to 3.0.3 - [Release notes](https://github.com/ktorio/ktor/releases) - [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md) - [Commits](https://github.com/ktorio/ktor/commits) Updates `io.ktor:ktor-server-content-negotiation` from 2.3.12 to 3.0.3 - [Release notes](https://github.com/ktorio/ktor/releases) - [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md) - [Commits](https://github.com/ktorio/ktor/commits) Updates `io.ktor:ktor-server-html-builder` from 2.3.12 to 3.0.3 - [Release notes](https://github.com/ktorio/ktor/releases) - [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md) - [Commits](https://github.com/ktorio/ktor/commits) Updates `io.ktor:ktor-server-netty` from 2.3.12 to 3.0.3 - [Release notes](https://github.com/ktorio/ktor/releases) - [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md) - [Commits](https://github.com/ktorio/ktor/commits) Updates `io.ktor:ktor-server-sessions` from 2.3.12 to 3.0.3 - [Release notes](https://github.com/ktorio/ktor/releases) - [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md) - [Commits](https://github.com/ktorio/ktor/commits) Updates `io.ktor:ktor-server-status-pages` from 2.3.12 to 3.0.3 - [Release notes](https://github.com/ktorio/ktor/releases) - [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md) - [Commits](https://github.com/ktorio/ktor/commits) Updates `io.ktor:ktor-server-test-host` from 2.3.12 to 3.0.3 - [Release notes](https://github.com/ktorio/ktor/releases) - [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md) - [Commits](https://github.com/ktorio/ktor/commits) Updates `io.ktor:ktor-server-websockets` from 2.3.12 to 3.0.3 - [Release notes](https://github.com/ktorio/ktor/releases) - [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md) - [Commits](https://github.com/ktorio/ktor/commits) Updates `io.ktor:ktor-server-resources` from 2.3.12 to 3.0.3 - [Release notes](https://github.com/ktorio/ktor/releases) - [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md) - [Commits](https://github.com/ktorio/ktor/commits) Updates `io.ktor:ktor-server-call-logging` from 2.3.12 to 3.0.3 - [Release notes](https://github.com/ktorio/ktor/releases) - [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md) - [Commits](https://github.com/ktorio/ktor/commits) Updates `io.ktor:ktor-server-swagger` from 2.3.12 to 3.0.3 - [Release notes](https://github.com/ktorio/ktor/releases) - [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md) - [Commits](https://github.com/ktorio/ktor/commits) Updates `io.ktor:ktor-server-metrics-micrometer` from 2.3.12 to 3.0.3 - [Release notes](https://github.com/ktorio/ktor/releases) - [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md) - [Commits](https://github.com/ktorio/ktor/commits) Updates `io.ktor:ktor-client-core` from 2.3.12 to 3.0.3 - [Release notes](https://github.com/ktorio/ktor/releases) - [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md) - [Commits](https://github.com/ktorio/ktor/commits) Updates `io.ktor:ktor-client-content-negotiation` from 2.3.12 to 3.0.3 - [Release notes](https://github.com/ktorio/ktor/releases) - [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md) - [Commits](https://github.com/ktorio/ktor/commits) Updates `io.ktor:ktor-client-mock` from 2.3.12 to 3.0.3 - [Release notes](https://github.com/ktorio/ktor/releases) - [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md) - [Commits](https://github.com/ktorio/ktor/commits) Updates `io.ktor:ktor-client-cio` from 2.3.12 to 3.0.3 - [Release notes](https://github.com/ktorio/ktor/releases) - [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md) - [Commits](https://github.com/ktorio/ktor/commits) Updates `io.ktor:ktor-client-websockets` from 2.3.12 to 3.0.3 - [Release notes](https://github.com/ktorio/ktor/releases) - [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md) - [Commits](https://github.com/ktorio/ktor/commits) Updates `io.ktor:ktor-client-js` from 2.3.12 to 3.0.3 - [Release notes](https://github.com/ktorio/ktor/releases) - [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md) - [Commits](https://github.com/ktorio/ktor/commits) Updates `io.ktor:ktor-client-auth` from 2.3.12 to 3.0.3 - [Release notes](https://github.com/ktorio/ktor/releases) - [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md) - [Commits](https://github.com/ktorio/ktor/commits) Updates `io.ktor:ktor-serialization` from 2.3.12 to 3.0.3 - [Release notes](https://github.com/ktorio/ktor/releases) - [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md) - [Commits](https://github.com/ktorio/ktor/commits) Updates `io.ktor:ktor-serialization-kotlinx-json` from 2.3.12 to 3.0.3 - [Release notes](https://github.com/ktorio/ktor/releases) - [Changelog](https://github.com/ktorio/ktor/blob/main/CHANGELOG.md) - [Commits](https://github.com/ktorio/ktor/commits) --- updated-dependencies: - dependency-name: io.ktor:ktor-server-auth dependency-type: direct:production update-type: version-update:semver-major - dependency-name: io.ktor:ktor-server-auth-jwt dependency-type: direct:production update-type: version-update:semver-major - dependency-name: io.ktor:ktor-server-core dependency-type: direct:production update-type: version-update:semver-major - dependency-name: io.ktor:ktor-server-cors dependency-type: direct:production update-type: version-update:semver-major - dependency-name: io.ktor:ktor-server-forwarded-header dependency-type: direct:production update-type: version-update:semver-major - dependency-name: io.ktor:ktor-server-content-negotiation dependency-type: direct:production update-type: version-update:semver-major - dependency-name: io.ktor:ktor-server-html-builder dependency-type: direct:production update-type: version-update:semver-major - dependency-name: io.ktor:ktor-server-netty dependency-type: direct:production update-type: version-update:semver-major - dependency-name: io.ktor:ktor-server-sessions dependency-type: direct:production update-type: version-update:semver-major - dependency-name: io.ktor:ktor-server-status-pages dependency-type: direct:production update-type: version-update:semver-major - dependency-name: io.ktor:ktor-server-test-host dependency-type: direct:production update-type: version-update:semver-major - dependency-name: io.ktor:ktor-server-websockets dependency-type: direct:production update-type: version-update:semver-major - dependency-name: io.ktor:ktor-server-resources dependency-type: direct:production update-type: version-update:semver-major - dependency-name: io.ktor:ktor-server-call-logging dependency-type: direct:production update-type: version-update:semver-major - dependency-name: io.ktor:ktor-server-swagger dependency-type: direct:production update-type: version-update:semver-major - dependency-name: io.ktor:ktor-server-metrics-micrometer dependency-type: direct:production update-type: version-update:semver-major - dependency-name: io.ktor:ktor-client-core dependency-type: direct:production update-type: version-update:semver-major - dependency-name: io.ktor:ktor-client-content-negotiation dependency-type: direct:production update-type: version-update:semver-major - dependency-name: io.ktor:ktor-client-mock dependency-type: direct:production update-type: version-update:semver-major - dependency-name: io.ktor:ktor-client-cio dependency-type: direct:production update-type: version-update:semver-major - dependency-name: io.ktor:ktor-client-websockets dependency-type: direct:production update-type: version-update:semver-major - dependency-name: io.ktor:ktor-client-js dependency-type: direct:production update-type: version-update:semver-major - dependency-name: io.ktor:ktor-client-auth dependency-type: direct:production update-type: version-update:semver-major - dependency-name: io.ktor:ktor-serialization dependency-type: direct:production update-type: version-update:semver-major - dependency-name: io.ktor:ktor-serialization-kotlinx-json dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
53c3728 to
c8dabdc
Compare
|
Is this ready for review? |
|
🎉 This PR is included in version 11.1.4 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
Bumps
ktorfrom 2.3.12 to 3.0.3.Updates
io.ktor:ktor-server-authfrom 2.3.12 to 3.0.3Release notes
Sourced from io.ktor:ktor-server-auth's releases.
... (truncated)
Changelog
Sourced from io.ktor:ktor-server-auth's changelog.
... (truncated)
Commits
Updates
io.ktor:ktor-server-auth-jwtfrom 2.3.12 to 3.0.3Release notes
Sourced from io.ktor:ktor-server-auth-jwt's releases.
... (truncated)
Changelog
Sourced from io.ktor:ktor-server-auth-jwt's changelog.
... (truncated)
Commits
Updates
io.ktor:ktor-server-corefrom 2.3.12 to 3.0.3Release notes
Sourced from io.ktor:ktor-server-core's releases.
... (truncated)
Changelog
Sourced from io.ktor:ktor-server-core's changelog.
... (truncated)
Commits
Updates
io.ktor:ktor-server-corsfrom 2.3.12 to 3.0.3Release notes
Sourced from io.ktor:ktor-server-cors's releases.
... (truncated)
Changelog
Sourced from io.ktor:ktor-server-cors's changelog.
... (truncated)
Commits
Updates
io.ktor:ktor-server-forwarded-headerfrom 2.3.12 to 3.0.3Release notes
Sourced from io.ktor:ktor-server-forwarded-header's releases.
... (truncated)
Changelog
Sourced from io.ktor:ktor-server-forwarded-header's changelog.
... (truncated)
Commits
Updates
io.ktor:ktor-server-content-negotiationfrom 2.3.12 to 3.0.3Release notes
Sourced from io.ktor:ktor-server-content-negotiation's releases.
... (truncated)
Changelog
Sourced from io.ktor:ktor-server-content-negotiation's changelog.