Attention is currently required from: laforge.
fixeria has posted comments on this change by fixeria. ( https://gerrit.osmocom.org/c/erlang/osmo_dia2gsup/+/40910?usp=email )
Change subject: rebar.config: fix invalid branch for rebar3_diameter_compiler.git ......................................................................
Patch Set 1:
(1 comment)
Patchset:
PS1:
I guess the real problem here is that there is a need to specify the name of the default branch in t […]
If I omit `{branch, "main"}`, then rebar3 complains:
``` ===> Fetching rebar3_diameter_compiler (from {git,"https://github.com/carlosedp/rebar3_diameter_compiler.git%22%7D) ===> WARNING: It is recommended to use {branch, Name}, {tag, Tag} or {ref, Ref} since default branch selection is not consistent across all versions of rebar. ```
We have several options here:
* Use the commit hash (`{ref, ...}`), so that we "stick" to a specific commit. * Use the latest tag (`{tag, "0.8.0"}`) -- it's quite old though, from 2022. * Use the latest hex package (`{plugins, [rebar3_diameter_compiler]}`).