Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump to quicer 0.0.202 #11747

Merged
merged 1 commit into from Oct 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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