Bump credentials_obfuscation to 3.4.0

This commit is contained in:
Michal Kuratczyk 2023-05-04 14:42:27 +02:00
parent f296765551
commit 48086bfec9
No known key found for this signature in database
2 changed files with 21 additions and 20 deletions

View File

@ -172,8 +172,8 @@ erlang_package.hex_package(
erlang_package.hex_package( erlang_package.hex_package(
name = "credentials_obfuscation", name = "credentials_obfuscation",
build_file = "@rabbitmq-server//bazel:BUILD.credentials_obfuscation", build_file = "@rabbitmq-server//bazel:BUILD.credentials_obfuscation",
sha256 = "fe8ece91a1ba6c8a08eb1063cfd5b063a723c5fe29a1fad6b7cbd76cb18d2eeb", sha256 = "738ace0ed5545d2710d3f7383906fc6f6b582d019036e5269c4dbd85dbced566",
version = "3.2.0", version = "3.4.0",
) )
erlang_package.hex_package( erlang_package.hex_package(

View File

@ -24,16 +24,9 @@ erlang_bytecode(
"src/credentials_obfuscation_sup.erl", "src/credentials_obfuscation_sup.erl",
"src/credentials_obfuscation_svc.erl", "src/credentials_obfuscation_svc.erl",
], ],
outs = [ hdrs = [":public_and_private_hdrs"],
"ebin/credentials_obfuscation.beam",
"ebin/credentials_obfuscation_app.beam",
"ebin/credentials_obfuscation_pbe.beam",
"ebin/credentials_obfuscation_sup.beam",
"ebin/credentials_obfuscation_svc.beam",
],
hdrs = ["include/credentials_obfuscation.hrl"],
app_name = "credentials_obfuscation", app_name = "credentials_obfuscation",
beam = [], dest = "ebin",
erlc_opts = "//:erlc_opts", erlc_opts = "//:erlc_opts",
) )
@ -54,20 +47,17 @@ filegroup(
], ],
) )
filegroup( filegroup(name = "private_hdrs")
name = "private_hdrs",
srcs = [],
)
filegroup( filegroup(
name = "public_hdrs", name = "public_hdrs",
srcs = ["include/credentials_obfuscation.hrl"], srcs = [
"include/credentials_obfuscation.hrl",
"include/otp_crypto.hrl",
],
) )
filegroup( filegroup(name = "priv")
name = "priv",
srcs = [],
)
filegroup( filegroup(
name = "licenses", name = "licenses",
@ -101,6 +91,8 @@ erlang_app(
app_name = "credentials_obfuscation", app_name = "credentials_obfuscation",
beam_files = [":beam_files"], beam_files = [":beam_files"],
extra_apps = ["crypto"], extra_apps = ["crypto"],
license_files = [":license_files"],
priv = [":priv"],
) )
alias( alias(
@ -108,3 +100,12 @@ alias(
actual = ":erlang_app", actual = ":erlang_app",
visibility = ["//visibility:public"], visibility = ["//visibility:public"],
) )
filegroup(
name = "license_files",
srcs = [
"LICENSE",
"LICENSE-APACHE2",
"LICENSE-MPL-RabbitMQ",
],
)