fix: upgrade jq lib to get rid of crash when space in path
This commit upgrades the jq library to a version that has fixed an issue that caused a crash when the port program had a space in its path.
This commit is contained in:
parent
2f176aff33
commit
f3ce2eaf2c
|
@ -8,6 +8,7 @@
|
||||||
if it's a HTTPs server, we didn't check if TLS handshake was successful.
|
if it's a HTTPs server, we didn't check if TLS handshake was successful.
|
||||||
[commits/6b45d2ea](https://github.com/emqx/emqx/commit/6b45d2ea9fde6d3b4a5b007f7a8c5a1c573d141e)
|
[commits/6b45d2ea](https://github.com/emqx/emqx/commit/6b45d2ea9fde6d3b4a5b007f7a8c5a1c573d141e)
|
||||||
* The `create_at` field of rules is missing after emqx restarts. [commits/5fc09e6b](https://github.com/emqx/emqx/commit/5fc09e6b950c340243d7be627a0ce1700691221c)
|
* The `create_at` field of rules is missing after emqx restarts. [commits/5fc09e6b](https://github.com/emqx/emqx/commit/5fc09e6b950c340243d7be627a0ce1700691221c)
|
||||||
|
* The rule engine's jq function now works even when the path to the EMQX install dir contains spaces
|
||||||
|
|
||||||
# 5.0.3
|
# 5.0.3
|
||||||
|
|
||||||
|
|
2
mix.exs
2
mix.exs
|
@ -577,7 +577,7 @@ defmodule EMQXUmbrella.MixProject do
|
||||||
|
|
||||||
defp jq_dep() do
|
defp jq_dep() do
|
||||||
if enable_jq?(),
|
if enable_jq?(),
|
||||||
do: [{:jq, github: "emqx/jq", tag: "v0.3.4", override: true}],
|
do: [{:jq, github: "emqx/jq", tag: "v0.3.5", override: true}],
|
||||||
else: []
|
else: []
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -41,7 +41,7 @@ quicer() ->
|
||||||
{quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.14"}}}.
|
{quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.14"}}}.
|
||||||
|
|
||||||
jq() ->
|
jq() ->
|
||||||
{jq, {git, "https://github.com/emqx/jq", {tag, "v0.3.4"}}}.
|
{jq, {git, "https://github.com/emqx/jq", {tag, "v0.3.5"}}}.
|
||||||
|
|
||||||
deps(Config) ->
|
deps(Config) ->
|
||||||
{deps, OldDeps} = lists:keyfind(deps, 1, Config),
|
{deps, OldDeps} = lists:keyfind(deps, 1, Config),
|
||||||
|
|
Loading…
Reference in New Issue