summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Fix override_deps test from suite rebar_compile_SUITEAlexander Petrovsky2018-05-301-6/+7
|/ /
* | Merge pull request #1790 from ferd/autostart-shell-for-appsFred Hebert2018-05-202-1/+8
|\ \ | | | | | | Auto-boot main app in OTP app project templates
| * | Auto-boot main app in OTP app project templatesFred Hebert2018-05-202-1/+8
| | | | | | | | | | | | | | | | | | People are starting to expect these niceties! It's also easier to drop the config when you know it's there than add it when you don't know it exists.
* | | Merge pull request #1789 from CrowdHailer/patch-1Fred Hebert2018-05-201-0/+3
|\ \ \ | |/ / |/| | Use maps for child spec example
| * | add tuple and comment for prior to OTP 18Peter Saxton2018-05-201-0/+2
| | |
| * | Use maps for child spec examplePeter Saxton2018-05-201-1/+2
|/ /
* | return to git-based versioningFred Hebert2018-05-091-1/+1
| |
* | bump to 3.5.3Fred Hebert2018-05-092-2/+2
| |
* | Merge pull request #1783 from ferd/restore-templatesFred Hebert2018-05-091-0/+4
|\ \ | | | | | | Restore default templates in bootstrapped rebar3
| * | Restore default templates in bootstrapped rebar3Fred Hebert2018-05-091-0/+4
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | When allowing Dialyzer to work internally, we moved a bunch of config (such as no_debug_info) to the prod profile, but the escript included files remained locked onto the default profile. Because the bootstrapping phase now happened in a prod run, the priv/ dirs were never created for the default profile unless a prior run existed, which hid the bug from us. This patch overrides the path on the prod profile so that we don't rely on accidental leftovers for things to work on a bootstrap phase as a dev.
* | Merge pull request #1782 from velimir0xff/start-1-async-treadFred Hebert2018-05-084-5/+4
|\ \ | | | | | | start at least one async thread in async thread poll
| * | start at least one async thread in async thread poolGrigory Starinkin2018-05-084-5/+4
|/ / | | | | | | | | fixes an issue when shell is terminated with an error "Bus error: 10", on attempt to run rebar shell with verbose logging
* | Merge pull request #1779 from ferd/compact-cth_readableFred Hebert2018-05-054-20/+24
|\ \ | | | | | | Officially drop Erlang R16B support—Logger support in cth_readable, and compact CT output
| * | Officially Deprecate R16B releaseFred Hebert2018-05-051-3/+1
| | | | | | | | | | | | | | | Required for the Logger interface to be supported since it relies on maps
| * | Logger support in cth_readable; compact CT outputFred Hebert2018-05-053-17/+23
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cth_readable 1.4.0 supports the new logger interface from OTP-21, which likely breaks compatibility with R16 builds. It also includes a new compact interface, displaying output such as: ===> Running Common Test suites... %%% rebar_alias_SUITE: ...... %%% rebar_as_SUITE: ........... %%% rebar_compile_SUITE:................................ ............................ %%% rebar_compile_SUITE ==> test_name: SKIPPED %%% rebar_compile_SUITE ==> {tc_user_skip,"compile:env_compiler_options/0 available"} .. %%% rebar_cover_SUITE: ............. %%% rebar_ct_SUITE: .................................... Allowing to display more tests within less screen space. This mode has been added to the ct_readable option under the name 'compact' (now supporting true | false | compact), and has been made default for rebar3.
* | Return to git-based versioningFred Hebert2018-05-031-1/+1
|/
* Bump to 3.5.2Fred Hebert2018-05-032-2/+2
|
* Merge pull request #1775 from ferd/redisable-dbg-infoFred Hebert2018-05-031-0/+1
|\ | | | | Re-disable debug_info on prod profile
| * Re-disable debug_info on prod profileFred Hebert2018-05-031-0/+1
|/ | | | Had mistakenly only disabled it for deps.
* Back to git-based versioningFred Hebert2018-05-031-1/+1
|
* bump to 3.5.1Fred Hebert2018-05-032-2/+2
|
* Merge pull request #1773 from ferd/otp-21-stacktrace-compatFred Hebert2018-05-0314-48/+61
|\ | | | | Work around OTP-21 deprecation of get_stacktrace() and other incompatible changes
| * Fix handling of loosely formatted OTP_VERSION fileFred Hebert2018-05-031-6/+5
| | | | | | | | see https://github.com/erlang/rebar3/issues/1774
| * Confirm lack of regressions on new logger in shellFred Hebert2018-05-031-9/+16
| |
| * Work around OTP-21 deprecation of get_stacktrace()Fred Hebert2018-05-0312-30/+37
| | | | | | | | Based off a macro by @okeuday at https://github.com/erlang/otp/pull/1783
| * Update erlware_commons for stacktraces supportFred Hebert2018-05-032-3/+3
|/
* Merge pull request #1770 from ferd/danikp-feature_long_src_pathsFred Hebert2018-04-273-3/+36
|\ | | | | ensure dest exists before copying to it and fix src_dirs symlinking
| * Fix symlink/copying logic in compiler for privFred Hebert2018-04-271-1/+10
| | | | | | | | | | Priv and include dirs need the virtual symlink in order to preserve hook functionality in some edge cases.
| * Merge branch 'danikp-feature_long_src_paths' of github.com:ferd/rebar3 into ↵Fred Hebert2018-04-272-4/+4
| |\ | | | | | | | | | danikp-feature_long_src_paths
| | * Prevent copying or symlink non-existing src_dirsFred Hebert2018-04-272-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This would cause crashes on linux and force people to have a src_dirs config that is strictly matching what is on the file system rather than acting as a specification of those that are valid. To compare, if lib_dirs worked the same, then any repo that did not both have apps/ and lib/ would crash, as the spec mentions both options as valid.
| | * Merge branch 'feature_long_src_paths' of https://github.com/danikp/rebar3 ↵Fred Hebert2018-04-272-2/+26
| | |\ | |/ / |/| | | | | into danikp-feature_long_src_paths
| * | Merge branch 'feature_long_src_paths' of https://github.com/danikp/rebar3 ↵Fred Hebert2018-04-272-2/+26
| |\ \ |/ / / | | _ | | into danikp-feature_long_src_paths
| * fix & testDmitry2018-04-232-4/+28
| |
| * ensure Dest exists before copying to itDmitry2018-04-221-2/+2
| |
* | Merge pull request #1769 from ferd/warn-on-read-only-cachedirFred Hebert2018-04-272-2/+16
|\ \ | | | | | | Display warnings when cache dirs are read-only
| * | Display warnings when cache dirs are read-onlyFred Hebert2018-04-272-2/+16
|/ / | | | | | | | | | | | | This should provide more help to users directly and avoid having them go through opening tickets for help. Fixes #1767
* | Merge pull request #1765 from ferd/clear-all-dialyzer-errorsFred Hebert2018-04-253-2/+13
|\ \ | | | | | | Clear all dialyzer errors
| * | Clear all dialyzer errorsFred Hebert2018-04-233-2/+13
|/ / | | | | | | | | - this is done by adding a HiPE dependency - also in this: adding a test for directories, and fixing some indent
* | Merge pull request #1764 from ferd/bump-cth_readableFred Hebert2018-04-222-3/+3
|\ \ | |/ |/| Bump cth_readable to 1.3.4: restore eunit macro formatter
| * Bump cth_readable to 1.3.4: restor eunit formatFred Hebert2018-04-222-3/+3
|/
* Merge pull request #1762 from ferd/reload-shell-apps-for-cfgFred Hebert2018-04-211-3/+28
|\ | | | | Reload apps running in shell with new config
| * Reload apps running in shell with new configFred Hebert2018-04-201-3/+28
| | | | | | | | | | | | | | This patch makes it so that whenever the rebar3 shell has a new configuration for an application that is already running and would be restarted (without risking the stability of the node or functionality of rebar_agent), we stop and restart the app.
* | Merge pull request #1761 from ferd/fix-local-upgrade-etagFred Hebert2018-04-211-1/+10
|\ \ | |/ |/| Fix local upgrade etag handling
| * Fix local upgrade etag handlingFred Hebert2018-04-211-1/+10
|/ | | | | | Since packages store etags on disk directly, the local install feature can no longer depend on this; we instead port the etag feature back to local providers only.
* Merge pull request #1759 from ferd/fix-erlopts-test-profileFred Hebert2018-04-202-1/+37
|\ | | | | Fix precedence rules of erl_opts for test profile
| * Fix precedence rules of erl_opts for test profileFred Hebert2018-04-202-1/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | When adding the 'TEST' macro to the test profile, we mistakenly sourced the erl_opts values from the base profile rather than the test profile itself. This means that in cases where the base profile set an option such as 'no_debug_info' and a profile overrode it with 'debug_info', the default options would get injected within the test profile, and broke the precedence rules, yielding incompatible values. This patch fixes things by adding the macro to the values sourced from the test profile itself, fixing the issue.
* | Merge pull request #1758 from ferd/display-script-errorsFred Hebert2018-04-202-1/+3
|\ \ | |/ |/| Display script errors
| * Fix broken windows buildFred Hebert2018-04-201-1/+1
| | | | | | | | Let's bundle this with another PR
| * Display error when rebar.config.script failsFred Hebert2018-04-201-0/+2
|/ | | | | | | | | | This will at least display the script that failed with the stacktrace before failing as usual, but without altering the return value. This should make the common failure path more user-friendly without breaking any existing behaviour that may have relied on the script file working. If there's any unexpected side-effect, it will be visual only rather than blocking full builds if ?ABORT were used.
* Merge pull request #1757 from ferd/fix-dialyzer-warningsFred Hebert2018-04-206-13/+10
|\ | | | | Fix various Dialyzer warnings