diff options
author | Fred Hebert <mononcqc@ferd.ca> | 2017-08-11 13:58:13 -0400 |
---|---|---|
committer | Fred Hebert <mononcqc@ferd.ca> | 2017-08-11 13:58:13 -0400 |
commit | 13bdb75b2961e1ae43e43e7c8d06bf463571d541 (patch) | |
tree | 5037a533f3f1461b40e27398411a1ee680abc70d /test/rebar_upgrade_SUITE.erl | |
parent | d9064768e842d0d685287755bc2b31b223488923 (diff) |
Fix recursive profile merging in umbrella apps
When a config file exists at the root of a project, defines a given
configuration value for a given profile, and that a sub-application
(umbrella app) also has the same profile defined with the same key (but
different values), the configuration values of the sub-application's
profile would get silently dropped.
The problem being that when the function to merge profiles is applied
recursively, it is applied to each profile (so it will merge on the keys
test, prod, etc.) rather than to each of the values of each profile.
This patch reworks the profile merging so that the current behaviour is
respected overall (a profile cannot be cancelled by a subdep's
non-existant profile since its value should have been ignored), but
ensures that sub-deps' profiles are otherwise applied recursively with
the proper rules:
- dependencies favor prior values
- plugins favor new values
- erl_first_files combine the lists
- relx uses the tuple merge algorithm
- erl_opts has its own custom merge as well
- otherwise the new value takes precedence
A test has also been added.
There is a risk of breakage in some applications that may have relied on
the buggy behaviour to work, though at this time we are aware of none of
them.
Diffstat (limited to 'test/rebar_upgrade_SUITE.erl')
0 files changed, 0 insertions, 0 deletions