Merge pull request #11565 from kjellwinblad/kjell/upgrade/jq/v0.3.11

fix: upgrade jq library
This commit is contained in:
Kjell Winblad 2023-10-30 16:47:58 +01:00 committed by GitHub
commit 290c433e8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View File

@ -0,0 +1 @@
Upgraded jq library from v0.3.10 to v0.3.11. In this version, jq_port programs are initiated on-demand and will not appear in users' processes unless the jq function in EMQX is used. Additionally, idle jq_port programs will auto-terminate after a set period. Note: Most EMQX users, running jq in NIF mode, will be unaffected by this update.

View File

@ -829,7 +829,7 @@ defmodule EMQXUmbrella.MixProject do
defp jq_dep() do
if enable_jq?(),
do: [{:jq, github: "emqx/jq", tag: "v0.3.10", override: true}],
do: [{:jq, github: "emqx/jq", tag: "v0.3.11", override: true}],
else: []
end

View File

@ -42,7 +42,7 @@ quicer() ->
{quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.202"}}}.
jq() ->
{jq, {git, "https://github.com/emqx/jq", {tag, "v0.3.10"}}}.
{jq, {git, "https://github.com/emqx/jq", {tag, "v0.3.11"}}}.
deps(Config) ->
{deps, OldDeps} = lists:keyfind(deps, 1, Config),