Merge pull request #12887 from qzhuyan/fix/william/esasl
fix(mqtt): enhanced auth with scram
This commit is contained in:
commit
a1c879a6f8
|
@ -0,0 +1,2 @@
|
|||
Fix MQTT enhanced auth with sasl scram.
|
||||
|
2
mix.exs
2
mix.exs
|
@ -74,7 +74,7 @@ defmodule EMQXUmbrella.MixProject do
|
|||
{:snabbkaffe, github: "kafka4beam/snabbkaffe", tag: "1.0.8", override: true},
|
||||
{:hocon, github: "emqx/hocon", tag: "0.42.1", override: true},
|
||||
{:emqx_http_lib, github: "emqx/emqx_http_lib", tag: "0.5.3", override: true},
|
||||
{:esasl, github: "emqx/esasl", tag: "0.2.0"},
|
||||
{:esasl, github: "emqx/esasl", tag: "0.2.1"},
|
||||
{:jose, github: "potatosalad/erlang-jose", tag: "1.11.2"},
|
||||
# in conflict by ehttpc and emqtt
|
||||
{:gun, github: "emqx/gun", tag: "1.3.11", override: true},
|
||||
|
|
|
@ -99,7 +99,7 @@
|
|||
{snabbkaffe, {git, "https://github.com/kafka4beam/snabbkaffe.git", {tag, "1.0.8"}}},
|
||||
{hocon, {git, "https://github.com/emqx/hocon.git", {tag, "0.42.1"}}},
|
||||
{emqx_http_lib, {git, "https://github.com/emqx/emqx_http_lib.git", {tag, "0.5.3"}}},
|
||||
{esasl, {git, "https://github.com/emqx/esasl", {tag, "0.2.0"}}},
|
||||
{esasl, {git, "https://github.com/emqx/esasl", {tag, "0.2.1"}}},
|
||||
{jose, {git, "https://github.com/potatosalad/erlang-jose", {tag, "1.11.2"}}},
|
||||
{telemetry, "1.1.0"},
|
||||
{hackney, {git, "https://github.com/emqx/hackney.git", {tag, "1.18.1-1"}}},
|
||||
|
|
Loading…
Reference in New Issue