Przeglądaj źródła

Merge pull request #14283 from qzhuyan/dev/william/bump-quicer-0.1.9

feat(quic): bump to quicer 0.1.9
William Yang 1 rok temu
rodzic
commit
d0ebbab48b
4 zmienionych plików z 10 dodań i 3 usunięć
  1. 1 1
      apps/emqx/rebar.config.script
  2. 7 0
      changes/ce/feat-14283.en.md
  3. 1 1
      mix.exs
  4. 1 1
      rebar.config.erl

+ 1 - 1
apps/emqx/rebar.config.script

@@ -25,7 +25,7 @@ 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.1.6"}}}.
+    {quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.1.9"}}}.
 
 Dialyzer = fun(Config) ->
     {dialyzer, OldDialyzerConfig} = lists:keyfind(dialyzer, 1, Config),

+ 7 - 0
changes/ce/feat-14283.en.md

@@ -0,0 +1,7 @@
+Improve QUIC transport, bump quicer to 0.1.9.
+
+- Early release remote stream resource in the abnormal scenario.
+- Bring in more troubleshooting APIs
+
+ref: 
+https://github.com/emqx/quic/compare/0.1.6...0.1.9

+ 1 - 1
mix.exs

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

+ 1 - 1
rebar.config.erl

@@ -36,7 +36,7 @@ assert_otp() ->
     end.
 
 quicer() ->
-    {quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.1.6"}}}.
+    {quicer, {git, "https://github.com/emqx/quic.git", {tag, "0.1.9"}}}.
 
 jq() ->
     {jq, {git, "https://github.com/emqx/jq", {tag, "v0.3.12"}}}.