| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|/
|
|
|
|
| |
When dialyzer_plt_warnings is false no warnings should be returned when
updating a PLT. Previously any callgraph warnings would be returned when
updating a PLT regardless of the get_warnings option.
|
|\
| |
| | |
Initial WTF provider implementation
|
| | |
|
| |
| |
| |
| | |
Tests missing
|
|\ \
| |/
|/| |
Fix #140 and preserve erl_first_files order
|
|/
|
|
|
|
| |
Match erl_first_files properly against all files needing
compilation and make sure the order of erl_first_files as specified in
rebar.config is preserved (rebar/rebar#445)
|
|\
| |
| | |
Upgrade procedure, from scratch (WIP)
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Apps that are no longer used are not automatically deleted, but we tell
users it can be done. This is safer while we're not sure of the
correctness of these messages.
Error messages are added for transient dependencies and dependencies not
found.
|
| |
| |
| |
| |
| |
| | |
- Many apps is supported through and through
- Not mentioning any app upgrades all apps
- Locks are refreshed on disk and tested as such after an upgrade
|
| |
| |
| |
| |
| |
| |
| |
| | |
todo:
- relock stuff
- default to all apps needing upgrade
- more tests?
- pkgs?
|
| |
| |
| |
| |
| |
| | |
- rename 'update' to 'upgrade' -- 'update' stands for package list
updates, not dependencies upgrades
- extracting some deeply nested code
|
| |
| |
| |
| |
| |
| | |
Only the most complex case is failing, where cross-dependencies would
need to be refetched as an update clears an app of its dependencies and
a different subtree should override it.
|
| |
| |
| |
| |
| | |
The problem with the current effort is handling of transitive dependency
upgrades and possible values.
|
| | |
|
|/
|
|
|
|
| |
Test that all the correct locks are set for an upgrade run.
Now to actually re-run the install deps and prove it works
|
|\
| |
| | |
factor out task/args parsing from `do` for use in other meta commands
|
| |
| |
| |
| | |
commands
|
|\ \
| | |
| | | |
Dialyzer fails if any warnings
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Add dialyzer tests
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
Fix dialyzer erts file lookup for releases prior to R16B02
|
| |/ /
| | |
| | |
| | |
| | | |
erts.app was introduced in R16B02 so read all beam files from the erts
ebin directory if erts.app file does not exist.
|
|\ \ \
| |/ /
|/| | |
Validate .app File Presence
|
|/ / |
|
|\ \
| | |
| | | |
Add packages to code path after installation
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Change mock_pkg_resource to use rebar_test_utils:create_empty_app so
that an ebin directory is created which is a good expectation for a
package. Also revert the check in rebar_fetch:download_source to check
for an ebin directory before adding it to the code path for package
installs. If a package does not have an ebin directory it is probably
a good for an exception to be thrown.
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Fix a bug where packages are not added to the code path after
installation. Dependent applications that build from source are not
affected by this issue since the build_apps function in
rebar_prv_compiler takes care of the code path changes for them. It is
only the precompiled packages that suffer from this issue.
|
|\ \ \
| |/ /
|/| | |
Add documentation for {ref, <sha>} syntax rebar.config.sample file
|
|/ /
| |
| |
| | |
Addresses: #130
|
|\ \
| | |
| | | |
Add xref support for multi-app projects
|
|/ /
| |
| |
| |
| |
| |
| | |
Add xref support for multi-app projects. Instead of only adding the
top-level ebin directory to the xref server use
rebar_state:project_apps/1 to enumerate the applications for the
project and add the ebin directory for each one.
|
|\ \
| | |
| | | |
package dep names are binary, fix install deps and related tests
|
| |/ |
|
|\ \
| |/
|/| |
Add xref provider for cross reference analysis
|
|/
|
|
|
|
|
|
|
|
|
| |
* Add a provider for the xref tool for running cross reference
analysis on a project. Most of the code has been ported directly
from the rebar2 rebar_xref module with some modification and cleanup
to support testing.
* Port over the eunit test suite from rebar2, but convert it to
common_test. The testing is the same, but now the
erlang term output is examined to determine if the test run is successful
instead of scanning the console output for the expected strings.
|
|\
| |
| | |
support for provider_hooks in config
|
| | |
|
| | |
|
| | |
|
| | |
|
|/ |
|
|\
| |
| | |
no more mode minimal
|
|/ |
|
|\
| |
| | |
app_info:valid needs to return a boolean and not throw an exception
|
|/ |
|
|\
| |
| | |
use processed app file for validation
|