Skip to content

Commit d6554d5

Browse files
committed
Upgrade to base libraries and API upgrades
1 parent d365604 commit d6554d5

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
on:
2+
workflow_dispatch:
23
push:
34
branches:
45
- master

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<h2 class="github">Changelog</h2>
22

3+
### v1.9.0
4+
- Upgrades and tweaks to underlying http4k library
5+
36
### v1.8.0
47
- Upgrades and tweaks to underlying http4k library
58

gradle/libs.versions.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[versions]
2+
bunting4k = "2.25.3.0"
23
com-github-ben-manes-versions = "0.53.0"
3-
kotlin = "2.2.20"
4-
bunting4k = "2.22.3.0"
5-
graalvm-native = "0.10.6"
6-
http4k = "6.20.0.3"
7-
junit = "6.0.0"
4+
graalvm-native = "0.11.5"
5+
http4k = "6.32.0.0"
6+
junit = "6.0.3"
7+
kotlin = "2.3.10"
88
slf4j = "2.0.17"
9-
typeflows = "0.31.0-beta"
10-
version-catalog-update = "1.0.1"
9+
typeflows = "0.32.0-beta"
10+
version-catalog-update = "1.1.0"
1111

1212
[libraries]
1313
bunting4k = { module = "dev.forkhandles:bunting4k", version.ref = "bunting4k" }

src/main/kotlin/org/http4k/mcp/internal/pipeHttpStreaming.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package org.http4k.mcp.internal
22

33
import org.http4k.client.Http4kSseClient
44
import org.http4k.client.ReconnectionMode
5-
import org.http4k.client.chunkedSseSequence
65
import org.http4k.core.ContentType.Companion.APPLICATION_JSON
76
import org.http4k.core.ContentType.Companion.TEXT_EVENT_STREAM
87
import org.http4k.core.HttpHandler
@@ -16,6 +15,7 @@ import org.http4k.lens.accept
1615
import org.http4k.lens.contentType
1716
import org.http4k.sse.SseEventId
1817
import org.http4k.sse.SseMessage
18+
import org.http4k.sse.chunkedSseSequence
1919
import java.io.Reader
2020
import java.io.Writer
2121
import java.util.concurrent.atomic.AtomicReference

0 commit comments

Comments
 (0)