Browse Source

chore(rabbitmq): upgrade rabbitmq dependency to v3.11.13.2

this tag has otp 26 compatibility fixed
Zaiming (Stone) Shi 2 years atrás
parent
commit
bd209678b3
2 changed files with 5 additions and 5 deletions
  1. 3 3
      apps/emqx_bridge_rabbitmq/rebar.config
  2. 2 2
      mix.exs

+ 3 - 3
apps/emqx_bridge_rabbitmq/rebar.config

@@ -4,7 +4,7 @@
         %% The following two are dependencies of rabbit_common
          {thoas, {git, "https://github.com/emqx/thoas.git", {tag, "v1.0.0"}}}
        , {credentials_obfuscation, {git, "https://github.com/emqx/credentials-obfuscation.git", {tag, "v3.2.0"}}}
-       %% The v3.11.13_with_app_src tag, employed in the next two dependencies,
+       %% The v3.11.13.2 (v3.11.13_with_app_src branch), employed in the next two dependencies,
        %% represents a fork of the official RabbitMQ v3.11.13 tag. This fork diverges
        %% from the official version as it includes app and hrl files
        %% generated by make files in subdirectories deps/rabbit_common and
@@ -17,11 +17,11 @@
        %% packages that we don't have control over.
        , {rabbit_common, {git_subdir,
                           "https://github.com/emqx/rabbitmq-server.git",
-                          {tag, "v3.11.13-emqx"},
+                          {tag, "v3.11.13.2"},
                           "deps/rabbit_common"}}
        , {amqp_client, {git_subdir,
                         "https://github.com/emqx/rabbitmq-server.git",
-                        {tag, "v3.11.13-emqx"},
+                        {tag, "v3.11.13.2"},
                         "deps/amqp_client"}}
        , {emqx_connector, {path, "../../apps/emqx_connector"}}
        , {emqx_resource, {path, "../../apps/emqx_resource"}}

+ 2 - 2
mix.exs

@@ -214,12 +214,12 @@ defmodule EMQXUmbrella.MixProject do
        github: "emqx/credentials-obfuscation", tag: "v3.2.0", override: true},
       {:rabbit_common,
        github: "emqx/rabbitmq-server",
-       tag: "v3.11.13-emqx",
+       tag: "v3.11.13.2",
        sparse: "deps/rabbit_common",
        override: true},
       {:amqp_client,
        github: "emqx/rabbitmq-server",
-       tag: "v3.11.13-emqx",
+       tag: "v3.11.13.2",
        sparse: "deps/amqp_client",
        override: true}
     ]