File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed
libraries/sdk-http-kit/src/main/starfederation/datastar/clojure/adapter Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 11# Release notes for the Clojure SDK
22
3+ ## 2025-11-27 - RC5
4+
5+ ### Fixed
6+ - Fixed ` starfederation.datastar.clojure.adapter.http-kit2/wrap-start-responding ` ,
7+ the async arity was improperly managed.
8+
39## 2025-10-30 - RC4
410
511This version's purpose is to transition the SDK to the new Datastar attribute
Original file line number Diff line number Diff line change 124124 (let [response (handler req)]
125125 (start-responding! response)
126126 response))
127- ([req respond _raise]
128- (let [response (handler req)]
129- (start-responding! response)
130- (respond response)))))
127+ ([req respond raise]
128+ (let [respond' (fn [response]
129+ (start-responding! response)
130+ (respond response))]
131+ (handler req respond' raise)))))
131132
132133
133134(def start-responding-middleware
148149 (let [response (:response ctx)]
149150 (start-responding! response)
150151 ctx))})
151-
You can’t perform that action at this time.
0 commit comments