From 8fe471c9673cff5ed6493e4c5a4c114e6bcb6915 Mon Sep 17 00:00:00 2001 From: William Yang Date: Tue, 16 Apr 2024 10:02:57 +0200 Subject: [PATCH] fix(mqtt): enhanced auth with scram Bump esasl to 0.2.1 --- changes/ce/fix-12887.en.md | 2 ++ mix.exs | 2 +- rebar.config | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 changes/ce/fix-12887.en.md diff --git a/changes/ce/fix-12887.en.md b/changes/ce/fix-12887.en.md new file mode 100644 index 000000000..c25d3a320 --- /dev/null +++ b/changes/ce/fix-12887.en.md @@ -0,0 +1,2 @@ +Fix MQTT enhanced auth with sasl scram. + diff --git a/mix.exs b/mix.exs index 09116bff0..46aa00280 100644 --- a/mix.exs +++ b/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}, diff --git a/rebar.config b/rebar.config index 042c57b66..ee28b32c7 100644 --- a/rebar.config +++ b/rebar.config @@ -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"}}},