Skip to content

Commit

Permalink
Bump version 2.3.9; resolve API change
Browse files Browse the repository at this point in the history
  • Loading branch information
bjhham committed Mar 1, 2024
1 parent 3375463 commit 1d72b84
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ktor.ide.jvmAndCommonOnly=true
kotlin.code.style=official

# config
version=2.3.8
version=2.3.9

# gradle
org.gradle.daemon=true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import io.ktor.util.date.*
*/
public class ResponseCookies(
private val response: ApplicationResponse,
private val secureTransport: Boolean
) {
/**
* Gets a cookie from a response's `Set-Cookie` header.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public abstract class BaseApplicationResponse(
private set

override val cookies: ResponseCookies by lazy {
ResponseCookies(this)
ResponseCookies(this, false)
}

override fun status(): HttpStatusCode? = _status
Expand Down

0 comments on commit 1d72b84

Please sign in to comment.