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

this tag has otp 26 compatibility fixed
This commit is contained in:
Zaiming (Stone) Shi 2023-12-12 17:06:24 +01:00
parent 9487635957
commit bd209678b3
2 changed files with 5 additions and 5 deletions

View File

@ -4,7 +4,7 @@
%% The following two are dependencies of rabbit_common %% The following two are dependencies of rabbit_common
{thoas, {git, "https://github.com/emqx/thoas.git", {tag, "v1.0.0"}}} {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"}}} , {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 %% 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 %% from the official version as it includes app and hrl files
%% generated by make files in subdirectories deps/rabbit_common and %% generated by make files in subdirectories deps/rabbit_common and
@ -17,11 +17,11 @@
%% packages that we don't have control over. %% packages that we don't have control over.
, {rabbit_common, {git_subdir, , {rabbit_common, {git_subdir,
"https://github.com/emqx/rabbitmq-server.git", "https://github.com/emqx/rabbitmq-server.git",
{tag, "v3.11.13-emqx"}, {tag, "v3.11.13.2"},
"deps/rabbit_common"}} "deps/rabbit_common"}}
, {amqp_client, {git_subdir, , {amqp_client, {git_subdir,
"https://github.com/emqx/rabbitmq-server.git", "https://github.com/emqx/rabbitmq-server.git",
{tag, "v3.11.13-emqx"}, {tag, "v3.11.13.2"},
"deps/amqp_client"}} "deps/amqp_client"}}
, {emqx_connector, {path, "../../apps/emqx_connector"}} , {emqx_connector, {path, "../../apps/emqx_connector"}}
, {emqx_resource, {path, "../../apps/emqx_resource"}} , {emqx_resource, {path, "../../apps/emqx_resource"}}

View File

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