Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | (#1743): Add specs for dialyzer | Laszlo Toth | 2018-04-11 | 1 | -3/+118 | |
| | | ||||||
* | | Merge pull request #1756 from ferd/handle-schemeless-proxy | Fred Hebert | 2018-04-20 | 2 | -7/+17 | |
|\ \ | | | | | | | Handle Schema-less Proxy URLs in ENV vars | |||||
| * | | Add proxy auto-scheme test | Fred Hebert | 2018-04-20 | 1 | -6/+8 | |
| | | | ||||||
| * | | Handle Schemaless Proxy URLs in ENV vars | Fred Hebert | 2018-04-20 | 1 | -1/+9 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We've had multiple tickets opened because of unclear PROXY settings when the scheme is missing form the URI. To be helpful, we instead add them dynamically whenever they're missing. Example issues: - https://github.com/erlang/rebar3/issues/1747 - https://github.com/erlang/rebar3/issues/1697 | |||||
* | | | Merge branch 'tothlac-1743' | Fred Hebert | 2018-04-20 | 2 | -15/+38 | |
|\ \ \ | |/ / |/| | | ||||||
| * | | Do not die on a pkg etag cache write fail | Fred Hebert | 2018-04-20 | 1 | -1/+1 | |
| | | | | | | | | | | | | We can probably still move ahead without a cache if we must | |||||
| * | | Merge branch '1743' of https://github.com/tothlac/rebar3 into tothlac-1743 | Fred Hebert | 2018-04-20 | 2 | -15/+38 | |
| |\ \ |/ / / | | _ | ||||||
| * | (#1743): store the etags in cache files | Laszlo Toth | 2018-04-11 | 2 | -15/+38 | |
| | | ||||||
* | | Merge pull request #1750 from ferd/rework-dialyzer-options | Fred Hebert | 2018-04-18 | 2 | -32/+23 | |
|\ \ | |/ |/| | Make rebar3 work with dialyzer internally | |||||
| * | Make rebar3 work with dialyzer internally | Fred Hebert | 2018-04-14 | 2 | -32/+23 | |
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We got funny interactions since PR #1656: - the last `debug_info`-related option seen in a list of options after profile merge is kept, allowing later profiles from overtaking earlier ones - if you go `rebar3 as a,b,c compile`, the options from profile A come before B, which come before C, so C's options win - overrides are applied in order of profile as well, giving a priority to a later profile than an earlier one - The values in overrides are prepended rather than suffixed to the existing list - this means if we have to overrides adding options, such as `default` adding `no_debug_info', and `dialyze` adding `debug_info`, the results are `[debug_info]` as `dialyze` is applied first, and then `[no_debug_info, debug_info]` as `default` overrides are applied - the final result is `no_debug_info` always winning when erl_opts are overriden specifically. only `debug_info` options are going to suffer this, and in the context of overrides. Other `erl_opts` should be fine. I'm not sure how that can be fixed at all. In the meanwhile, we can add support back while leaving the default to not having debug information. This is done by: - moving all `no_debug_info` options to the `prod` profile - forcing `prod` to be called by `./bootstrap` so that most people keep getting no debug info - anyone calling `rebar3 clean -a` and then rebuilding with `rebar3 escriptize` (i.e. rebar3 devs) get debug info going This is up for review and discussion. | |||||
* | Merge pull request #1742 from tothlac/master | Fred Hebert | 2018-04-09 | 1 | -1/+2 | |
|\ | | | | | (#1741): Fix quotes in etag values | |||||
| * | (#1741): Fix quotes in etag values | tothlac | 2018-04-09 | 1 | -1/+2 | |
|/ | ||||||
* | Merge pull request #1739 from erlang/bump-cthreadble | Tristan Sloughter | 2018-04-03 | 2 | -3/+3 | |
|\ | | | | | Bump cth_readable to 1.3.3 | |||||
| * | Bump cth_readable to 1.3.3 | Fred Hebert | 2018-04-03 | 2 | -3/+3 | |
|/ | | | | Fixes some lager warnings since config changes | |||||
* | Merge pull request #1737 from ferd/remove-debug-noise | Fred Hebert | 2018-03-30 | 1 | -2/+0 | |
|\ | | | | | Remove noisy debug message | |||||
| * | Remove noisy debug message | Fred Hebert | 2018-03-30 | 1 | -2/+0 | |
|/ | | | | | It makes things worse than if it weren't there. Fixes issue #1726 | |||||
* | Merge pull request #1716 from fenollp/sort-as | Fred Hebert | 2018-03-30 | 2 | -1/+4 | |
|\ | | | | | sort-as: force an order on multiple profiles | |||||
| * | sort-as: a more general pattern | Pierre Fenoll | 2018-03-02 | 1 | -2/+2 | |
| | | ||||||
| * | sort-as: bar profile specializes dep "b" into a version anterior to what ↵ | Pierre Fenoll | 2018-03-02 | 1 | -1/+1 | |
| | | | | | | | | test profile wants | |||||
| * | do not append test profile if already there. Note that it comes from the prv ↵ | Pierre Fenoll | 2018-03-02 | 1 | -0/+3 | |
| | | | | | | | | list passed to providers:create/1 | |||||
| * | Revert "sort-as: found the issue. Will look into tests now" | Pierre Fenoll | 2018-03-02 | 1 | -5/+4 | |
| | | | | | | | | This reverts commit 0f7e6c31e97c238649e7ae0a1b7087e342174ecc. | |||||
| * | Revert "sort-as: show issue more clearly" | Pierre Fenoll | 2018-03-02 | 2 | -20/+3 | |
| | | | | | | | | This reverts commit 4ad1db97336a3ac070880876ada07d4c7b769327. | |||||
| * | sort-as: show issue more clearly | Pierre Fenoll | 2018-03-02 | 2 | -3/+20 | |
| | | ||||||
| * | sort-as: found the issue. Will look into tests now | Pierre Fenoll | 2018-03-02 | 1 | -4/+5 | |
| | | ||||||
| * | Revert "sort-as: force an order on multiple profiles" | Pierre Fenoll | 2018-03-02 | 1 | -1/+1 | |
| | | | | | | | | This reverts commit 3f8dd5eacebb913144f3615fdf44658b6223a791. | |||||
| * | sort-as: force an order on multiple profiles | Pierre Fenoll | 2018-03-02 | 1 | -1/+1 | |
| | | ||||||
* | | Merge branch 'hommeabeil-fix_skip_compile_dep' | Fred Hebert | 2018-03-30 | 7 | -5/+59 | |
|\ \ | |/ |/| | ||||||
| * | make systest suite work on linux | Fred Hebert | 2018-03-30 | 1 | -7/+6 | |
| | | ||||||
| * | add test in systest | hommeabeil | 2018-03-24 | 6 | -2/+56 | |
| | | ||||||
| * | remove the .app from app_info | Jean Bouchard | 2018-03-16 | 1 | -3/+4 | |
|/ | ||||||
* | Merge pull request #1723 from tsloughter/warn-to-debug | Fred Hebert | 2018-03-02 | 1 | -7/+7 | |
|\ | | | | | use debug level for logs about bad package versioning | |||||
| * | use debug level for logs about bad package versioning | Tristan Sloughter | 2018-02-27 | 1 | -7/+7 | |
|/ | ||||||
* | Merge pull request #1722 from tsloughter/fix-update-loop | Tristan Sloughter | 2018-02-27 | 2 | -1/+2 | |
|\ | | | | | don't attempt retry of missing packages when updating index | |||||
| * | don't attempt retry of missing packages when updating index | Tristan Sloughter | 2018-02-27 | 2 | -1/+2 | |
|/ | ||||||
* | Merge pull request #1706 from campanja-forks/env-for-providers | Fred Hebert | 2018-02-27 | 3 | -75/+91 | |
|\ | | | | | Env for providers | |||||
| * | make it easier to create env | Carl-Johan Kjellander | 2018-02-26 | 1 | -1/+8 | |
| | | ||||||
| * | remove whitespace | Carl-Johan Kjellander | 2018-02-23 | 1 | -1/+0 | |
| | | ||||||
| * | move and export create_env for use by providers | Carl-Johan Kjellander | 2018-02-23 | 2 | -57/+67 | |
| | | ||||||
| * | export env expansion | Carl-Johan Kjellander | 2018-02-23 | 1 | -18/+18 | |
| | | ||||||
* | | Merge pull request #1721 from tsloughter/no-constraint-match | Fred Hebert | 2018-02-26 | 2 | -6/+19 | |
|\ \ | |/ |/| | rebar_package: do not return first package version for constraint with no match | |||||
| * | rebar_package: do not return first package version for constraint with no match | Tristan Sloughter | 2018-02-26 | 2 | -6/+19 | |
|/ | ||||||
* | Merge pull request #1718 from shino/bugfix/io-opts-unicode | Fred Hebert | 2018-02-21 | 2 | -3/+2 | |
|\ | | | | | Set unicode option for standard_io at entry point | |||||
| * | Set unicode option for starndard_io at entry point | Shunichi Shinohara | 2018-02-22 | 2 | -3/+2 | |
| | | ||||||
* | | Merge pull request #1698 from campanja-forks/run-clean-hooks | Fred Hebert | 2018-02-21 | 3 | -6/+34 | |
|\ \ | |/ |/| | fix hooks and plugins usage when cleaning build artifacts for deps | |||||
| * | run hooks and plugins during clean for deps | Carl-Johan Kjellander | 2018-01-19 | 2 | -4/+9 | |
| | | | | | | | | | | | | find_apps didn't read config files so no hooks were in the app_infos, and now that hooks are being done rebar needs plugins to be able to run clean plugin hooks in deps. | |||||
| * | add test for provider_hook clean | Carl-Johan Kjellander | 2018-01-19 | 1 | -2/+25 | |
| | | ||||||
* | | Merge pull request #1714 from tsloughter/up-ec-relx | Fred Hebert | 2018-02-04 | 2 | -6/+6 | |
|\ \ | | | | | | | upgrade erlware commons and relx | |||||
| * | | upgrade erlware commons and relx | Tristan Sloughter | 2018-02-03 | 2 | -6/+6 | |
|/ / | ||||||
* | | Merge pull request #1707 from schlagert/issue_1704 | Fred Hebert | 2018-01-30 | 2 | -24/+72 | |
|\ \ | |/ |/| | Issue #1704: Fix alias provider argument passing | |||||
| * | Issue #1704: Fix alias provider argument passing | Tobias Schlager | 2018-01-24 | 2 | -24/+72 | |
|/ | | | | | | | | | | | | The way arguments are passed by the alias provider is not compatible with all rebar providers/commands. Especially the release (relx) provider does not like getting its arguments as a plain string. It expects its arguments in a pre-parsed format as returned by getopt:parse/2. Other commands, e.g. eunit, seem to be fine with both ways of argument passing. Therefore, this fix changes the alias provider argument passing to the getopt format in general. |