File tree Expand file tree Collapse file tree 4 files changed +11
-6
lines changed
Expand file tree Collapse file tree 4 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3- Babashka [ http-client] ( https://github.com/babashka/http-client ) : HTTP client for Clojure and babashka built on java.net.http
3+ Babashka [ http-client] ( https://github.com/babashka/http-client ) : HTTP client for Clojure and babashka built on java.net.http
44
5- ## Unreleased
5+ ## 0.4.20
66
7- - [ #60 ] ( https://github.com/babashka/http-client/issues/60 ) : Minimum Clojure version is now 1.10
7+ - [ #60 ] ( https://github.com/babashka/http-client/issues/60 ) : Minimum Clojure version is now 1.10 instead of 1.11
88([ @lread ] ( https://github.com/lread ) )
99
1010## 0.4.19 (2024-04-24)
Original file line number Diff line number Diff line change 11{:deps {}
22 :aliases
33 {:neil {:project {:name org.babashka/http-client
4- :version " 0.4.19 " }}
4+ :version " 0.4.20 " }}
55 :clj-1.10 {:extra-deps {org.clojure/clojure {:mvn/version " 1.10.3" }}}
66 :clj-1.11 {:extra-deps {org.clojure/clojure {:mvn/version " 1.11.4" }}}
77 :clj-1.12 {:extra-deps {org.clojure/clojure {:mvn/version " 1.12.0-rc1" }}}
88
99 :repl {:extra-deps {cheshire/cheshire {:mvn/version " 5.11.0" }
1010 io.github.borkdude/deflet {:mvn/version " 0.1.0" }
11- babashka/fs {:mvn/version " 0.2.16" }}}
11+ babashka/fs {:mvn/version " 0.2.16" }}
12+ :extra-paths [" dev" ]}
1213 :test ; ; added by neil
13- {:extra-paths [" test" ]
14+ {:extra-paths [" dev " " test" ]
1415 :extra-deps {cheshire/cheshire {:mvn/version " 5.11.0" }
1516 io.github.cognitect-labs/test-runner
1617 {:git/tag " v0.5.0" :git/sha " b3fd0d2" }
Original file line number Diff line number Diff line change 1+ (println " Toggling warn on reflection to true..." )
2+ (alter-var-root #'*warn-on-reflection* (constantly true ))
Original file line number Diff line number Diff line change 1515 [java.net.http HttpRequest$BodyPublishers]
1616 [javax.net.ssl SSLContext]))
1717
18+ (set! *warn-on-reflection* false ) ; ; only in this test namespace
19+
1820(def !server (atom nil ))
1921
2022(defn run-server []
You can’t perform that action at this time.
0 commit comments