[#738] upgrade to httpkit 2.5.3
This commit is contained in:
parent
d31bcabeb2
commit
00e65f0416
4 changed files with 5 additions and 3 deletions
2
deps.edn
2
deps.edn
|
|
@ -30,7 +30,7 @@
|
||||||
org.postgresql/postgresql {:mvn/version "42.2.18"}
|
org.postgresql/postgresql {:mvn/version "42.2.18"}
|
||||||
org.hsqldb/hsqldb {:mvn/version "2.5.1"}
|
org.hsqldb/hsqldb {:mvn/version "2.5.1"}
|
||||||
datascript/datascript {:mvn/version "1.0.1"}
|
datascript/datascript {:mvn/version "1.0.1"}
|
||||||
http-kit/http-kit {:mvn/version "2.5.1"}
|
http-kit/http-kit {:mvn/version "2.5.3"}
|
||||||
babashka/clojure-lanterna {:mvn/version "0.9.8-SNAPSHOT"}
|
babashka/clojure-lanterna {:mvn/version "0.9.8-SNAPSHOT"}
|
||||||
org.clojure/math.combinatorics {:mvn/version "0.1.6"}
|
org.clojure/math.combinatorics {:mvn/version "0.1.6"}
|
||||||
org.clojure/core.match {:mvn/version "1.0.0"}
|
org.clojure/core.match {:mvn/version "1.0.0"}
|
||||||
|
|
|
||||||
|
|
@ -42,9 +42,9 @@
|
||||||
:feature/datascript {:source-paths ["feature-datascript"]
|
:feature/datascript {:source-paths ["feature-datascript"]
|
||||||
:dependencies [[datascript "1.0.1"]]}
|
:dependencies [[datascript "1.0.1"]]}
|
||||||
:feature/httpkit-client {:source-paths ["feature-httpkit-client"]
|
:feature/httpkit-client {:source-paths ["feature-httpkit-client"]
|
||||||
:dependencies [[http-kit "2.5.1"]]}
|
:dependencies [[http-kit "2.5.3"]]}
|
||||||
:feature/httpkit-server {:source-paths ["feature-httpkit-server"]
|
:feature/httpkit-server {:source-paths ["feature-httpkit-server"]
|
||||||
:dependencies [[http-kit "2.5.1"]]}
|
:dependencies [[http-kit "2.5.3"]]}
|
||||||
:feature/lanterna {:source-paths ["feature-lanterna"]
|
:feature/lanterna {:source-paths ["feature-lanterna"]
|
||||||
:dependencies [[babashka/clojure-lanterna "0.9.8-SNAPSHOT"]]}
|
:dependencies [[babashka/clojure-lanterna "0.9.8-SNAPSHOT"]]}
|
||||||
:feature/core-match {:source-paths ["feature-core-match"]
|
:feature/core-match {:source-paths ["feature-core-match"]
|
||||||
|
|
|
||||||
|
|
@ -61,6 +61,7 @@ args=( "-jar" "$BABASHKA_JAR"
|
||||||
"--no-server"
|
"--no-server"
|
||||||
"--report-unsupported-elements-at-runtime"
|
"--report-unsupported-elements-at-runtime"
|
||||||
"--initialize-at-run-time=org.postgresql.sspi.SSPIClient"
|
"--initialize-at-run-time=org.postgresql.sspi.SSPIClient"
|
||||||
|
"--initialize-at-run-time=org.httpkit.client.ClientSslEngineFactory\$SSLHolder"
|
||||||
"--native-image-info"
|
"--native-image-info"
|
||||||
"--verbose"
|
"--verbose"
|
||||||
"-H:ServiceLoaderFeatureExcludeServices=javax.sound.sampled.spi.AudioFileReader"
|
"-H:ServiceLoaderFeatureExcludeServices=javax.sound.sampled.spi.AudioFileReader"
|
||||||
|
|
|
||||||
|
|
@ -34,6 +34,7 @@ call %GRAALVM_HOME%\bin\native-image.cmd ^
|
||||||
"-H:ReflectionConfigurationFiles=reflection.json" ^
|
"-H:ReflectionConfigurationFiles=reflection.json" ^
|
||||||
"--initialize-at-build-time" ^
|
"--initialize-at-build-time" ^
|
||||||
"--initialize-at-run-time=org.postgresql.sspi.SSPIClient" ^
|
"--initialize-at-run-time=org.postgresql.sspi.SSPIClient" ^
|
||||||
|
"--initialize-at-run-time=org.httpkit.client.ClientSslEngineFactory\$SSLHolder" ^
|
||||||
"-H:EnableURLProtocols=http,https,jar" ^
|
"-H:EnableURLProtocols=http,https,jar" ^
|
||||||
"--enable-all-security-services" ^
|
"--enable-all-security-services" ^
|
||||||
"-H:+JNI" ^
|
"-H:+JNI" ^
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue