chore: bump emqtt 1.7.1-pre2 & quicer 0.0.108

This commit is contained in:
William Yang 2023-02-03 11:28:11 +01:00
parent c457c1092b
commit c7efccb996
4 changed files with 4 additions and 4 deletions

View File

@ -43,7 +43,7 @@
{meck, "0.9.2"},
{proper, "1.4.0"},
{bbmustache, "1.10.0"},
{emqtt, {git, "https://github.com/qzhuyan/emqtt", {tag, "1.7.1-pre"}}} %% @TODO revert
{emqtt, {git, "https://github.com/qzhuyan/emqtt", {tag, "1.7.1-pre2"}}} %% @TODO revert
]},
{extra_src_dirs, [{"test", [recursive]}]}
]}

View File

@ -24,7 +24,7 @@ IsQuicSupp = fun() ->
end,
Bcrypt = {bcrypt, {git, "https://github.com/emqx/erlang-bcrypt.git", {tag, "0.6.0"}}},
Quicer = {quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.107"}}}.
Quicer = {quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.108"}}}.
Dialyzer = fun(Config) ->
{dialyzer, OldDialyzerConfig} = lists:keyfind(dialyzer, 1, Config),

View File

@ -645,7 +645,7 @@ defmodule EMQXUmbrella.MixProject do
defp quicer_dep() do
if enable_quicer?(),
# in conflict with emqx and emqtt
do: [{:quicer, github: "emqx/quic", tag: "0.0.107", override: true}],
do: [{:quicer, github: "emqx/quic", tag: "0.0.108", override: true}],
else: []
end

View File

@ -39,7 +39,7 @@ bcrypt() ->
{bcrypt, {git, "https://github.com/emqx/erlang-bcrypt.git", {tag, "0.6.0"}}}.
quicer() ->
{quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.107"}}}.
{quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.108"}}}.
jq() ->
{jq, {git, "https://github.com/emqx/jq", {tag, "v0.3.9"}}}.