Skip to content

Commit

Permalink
Dependency Recon updated from 2.5.3 to 2.5.6
Browse files Browse the repository at this point in the history
(cherry picked from commit 7702a92)
(cherry picked from commit 7c816a4)
  • Loading branch information
SimonUnge authored and mergify[bot] committed Oct 8, 2024
1 parent 6fca3b7 commit 63c3afb
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 25 deletions.
4 changes: 2 additions & 2 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,8 @@ erlang_package.hex_package(
erlang_package.hex_package(
name = "recon",
build_file = "@rabbitmq-server//bazel:BUILD.recon",
sha256 = "6c6683f46fd4a1dfd98404b9f78dcabc7fcd8826613a89dcb984727a8c3099d7",
version = "2.5.3",
sha256 = "96c6799792d735cc0f0fd0f86267e9d351e63339cbe03df9d162010cefc26bb0",
version = "2.5.6",
)

erlang_package.hex_package(
Expand Down
38 changes: 16 additions & 22 deletions bazel/BUILD.recon
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,9 @@ erlang_bytecode(
"src/recon_rec.erl",
"src/recon_trace.erl",
],
outs = [
"ebin/recon.beam",
"ebin/recon_alloc.beam",
"ebin/recon_lib.beam",
"ebin/recon_map.beam",
"ebin/recon_rec.beam",
"ebin/recon_trace.beam",
],
hdrs = [],
hdrs = [":public_and_private_hdrs"],
app_name = "recon",
beam = [],
dest = "ebin",
erlc_opts = "//:erlc_opts",
)

Expand All @@ -57,20 +49,11 @@ filegroup(
],
)

filegroup(
name = "private_hdrs",
srcs = [],
)
filegroup(name = "private_hdrs")

filegroup(
name = "public_hdrs",
srcs = [],
)
filegroup(name = "public_hdrs")

filegroup(
name = "priv",
srcs = [],
)
filegroup(name = "priv")

filegroup(
name = "licenses",
Expand All @@ -96,12 +79,23 @@ filegroup(
erlang_app(
name = "erlang_app",
srcs = [":all_srcs"],
hdrs = [":public_hdrs"],
app_name = "recon",
beam_files = [":beam_files"],
extra_apps = ["syntax_tools"],
license_files = [":license_files"],
priv = [":priv"],
)

alias(
name = "recon",
actual = ":erlang_app",
visibility = ["//visibility:public"],
)

filegroup(
name = "license_files",
srcs = [
"LICENSE",
],
)
2 changes: 1 addition & 1 deletion rabbitmq-components.mk
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ dep_looking_glass = git https://github.com/rabbitmq/looking_glass.git main
dep_prometheus = hex 4.11.0
dep_ra = hex 2.13.5
dep_ranch = hex 2.1.0
dep_recon = hex 2.5.3
dep_recon = hex 2.5.6
dep_redbug = hex 2.0.7
dep_thoas = hex 1.0.0
dep_observer_cli = hex 1.7.5
Expand Down

0 comments on commit 63c3afb

Please sign in to comment.