Skip to content

Commit

Permalink
fix: bump to quicer 0.0.202
Browse files Browse the repository at this point in the history
bring in urgent fixs from msquic 2.2.3
  • Loading branch information
qzhuyan committed Oct 11, 2023
1 parent a2e86c6 commit a69c534
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/emqx/rebar.config.script
Expand Up @@ -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.201"}}}.
Quicer = {quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.202"}}}.

Dialyzer = fun(Config) ->
{dialyzer, OldDialyzerConfig} = lists:keyfind(dialyzer, 1, Config),
Expand Down
2 changes: 2 additions & 0 deletions changes/ce/fix-11747.en.md
@@ -0,0 +1,2 @@
Update QUIC stack to msquic 2.2.3.

2 changes: 2 additions & 0 deletions changes/ce/fix-11747.zh.md
@@ -0,0 +1,2 @@
更新 QUIC 栈至 msquic 2.2.3

2 changes: 1 addition & 1 deletion mix.exs
Expand Up @@ -836,7 +836,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.201", override: true}],
do: [{:quicer, github: "emqx/quic", tag: "0.0.202", override: true}],
else: []
end

Expand Down
2 changes: 1 addition & 1 deletion rebar.config.erl
Expand Up @@ -39,7 +39,7 @@ bcrypt() ->
{bcrypt, {git, "https://github.com/emqx/erlang-bcrypt.git", {tag, "0.6.1"}}}.

quicer() ->
{quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.201"}}}.
{quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.0.202"}}}.

jq() ->
{jq, {git, "https://github.com/emqx/jq", {tag, "v0.3.10"}}}.
Expand Down

0 comments on commit a69c534

Please sign in to comment.