summaryrefslogtreecommitdiff
path: root/src/rebar_prv_deps.erl
Commit message (Collapse)AuthorAgeFilesLines
* Use maps syntax for OTP 17 in deps cmdJose M Perez2019-04-021-2/+2
|
* Refactor deps command to show lock vs config fileJose M Perez2019-04-011-34/+107
| | | | | | Deps command shows an * if the local state of the dependencies do not match the config file, highlighting the differences between the lock file and the config file if there are any.
* Make deps command check needs_update for every depJose M Perez2019-03-271-71/+27
| | | | | deps command was printing an * even when deps were updated, this commit makes it call rebar_fetch:needs_update/2 for each of them
* support for hex v2, multiple repository fetching, private organizations (#1884)Tristan Sloughter2018-09-131-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * update to hex_core for hex-v2 repo support (#1865) * update to hex_core for hex-v2 repo support This patch adds only single repo hex-v2 support through hex_core. Packages no longer filtered out by buildtool metadata and the package index is updated per-package instead of fetched as one large ets dump. * tell travis to also build hex_core branch * support list of repos for hex packages (#1866) * support list of repos for hex packages repos are defined under the hex key in rebar configs. They can be defined at the top level of a project or globally, but not in profiles and the repos configured in dependencies are also ignored. Searching for packages involves first checking for a match in the local repo index cache, in the order repos are defined. If not found each repo is checked through the hex api for any known versions of the package and the first repo with a version that fits the constraint is used. * add {repos, replace, []} for overriding the global & default repos * add hex auth handling for repos (#1874) auth token are kept in a hex.config file that is modified by the rebar3 hex plugin. Repo names that have a : separating a parent and child are considered organizations. The parent repo's auth will be included with the child. So an organization named hexpm:rebar3_test will include any hexpm auth tokens found in the rebar3_test organization's configuration. * move packages to top level of of hexpm cache dir (#1876) * move packages to top level of of hexpm cache dir * append organization name to parent's repo_url when parsing repos * only eval config scripts and apply overrides once per app (#1879) * only eval config scripts and apply overrides once per app * move new resource behaviour to rebar_resource_v2 and keep v1 * cleanup use of rebar_resource module and unused functions * cleanup error messages and unused code * when discovering apps support mix packages as unbuilt apps (#1882) * use hex_core tarball unpacking support in pkg resource (#1883) * use hex_core tarball unpacking support in pkg resource * ignore etag if package doesn't exist and delete if checksum fails * add back tests for bad package checksums * improve bad registry checksum error message
* Unicode support in all the placesFred Hebert2017-08-061-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This is done through 3 main change groups: - replacing `~s` by `~ts` in format strings, so that strings that contain unicode are properly printed rather than crashing - adding the `unicode` argument to all function of the `re` module to ensure transformations on strings containing unicode data are valid instead of crashing (see issue #1302) - replacing `ec_cnv:to_binary/1` and `ec_cnv:to_list/1` with matching functions in `rebar_utils`. The last point has been done, rather than modifying and updating erlware commons, because binary and list conversions can be a contentious subject. For example, if what is being handled is actually bytes from a given binary stream, then forcing a byte-oriented interpretation of the data can corrupt it. As such, it does not appear safe to modify erlware commons' conversion functions since it may not be safe for all its users. Instead, rebar3 reimplements a subset of them (only converting atoms and chardata, ignoring numbers) with the explicit purpose of handling unicode string data. Tests were left as unchanged as possible. This may impact the ability to run rebar3's own suites in a unicode path, but respects a principle of least change for such a large patch.
* Fix rebar3 dialyzer warningsFred Hebert2016-11-191-1/+1
| | | | Some tricky changes in there but should be okay
* Support package hashes in structure and lockfileFred Hebert2016-05-241-1/+1
| | | | | | | | | - the internal representation for package locks moves from `{Name, {pkg, PkgName, Vsn}, Lvl}` to `{Name, {pkg, PkgName, Vsn, Hash}, Lvl}` - the internal representation for packages moves from `{pkg, PkgName, Vsn}` to `{pkg, PkgName, Vsn, Hash}` - the hash can be `undefined`, meaning no check will be done - no checking is done yet.
* track parent app of deps and add tree provider to display the relationsTristan Sloughter2015-08-151-31/+6
|
* install package deps in same level/profile order as src depsTristan Sloughter2015-08-131-1/+2
|
* fix dialyzer warnings, except 'no local return' warningsTristan Sloughter2015-08-081-1/+1
|
* add to deps tree help message that only packages are supportedTristan Sloughter2015-08-031-1/+1
|
* add tree option to deps command that prints pkg deps treeTristan Sloughter2015-08-031-6/+29
|
* fix bareness issuesFred Hebert2015-05-311-1/+1
| | | | | | - Crashes in providers lib when no providers in a namespace are bare - Making sure bareness matches semantics; i.e. a bare provider is visible, a non-bare provider is hidden.
* make deps task listed in help and update zsh/bash completionsTristan Sloughter2015-05-211-1/+1
|
* Use resource handlers to deal with deps/semverFred Hebert2015-05-051-20/+6
|
* Fix dupes in deps provider, support atom pkgsFred Hebert2015-05-041-48/+45
| | | | | | | | | | | | | | Whenever files were being locked *and* provided in rebar.config duplicates could be printed. This is taken care of. Also whenever atom packages were being used, they would cause the merge step to fail. The new format does proper name-based deduplication of resources, giving priority to locks to work. ModificatioN/needs-update support is still in. This may also act as a fix for #341, if automation isn't required too much.
* move resource modules list to rebar_state, no longer staticTristan Sloughter2015-04-041-3/+3
|
* Fix dialyzer warningsJames Fish2015-03-181-1/+1
|
* update all examples in providers to use rebar3Tristan Sloughter2015-03-071-1/+1
|
* Fix crash on non-git source deps in deps providerFred Hebert2015-02-251-1/+1
| | | | The 'element(1, ..)' guard would always fail and cause crashes.
* Initial `deps` commandFred Hebert2015-02-161-1/+69
|
* move back to using format_error/1Tristan Sloughter2014-11-091-4/+4
|
* add format_error/2 provider callback to providersTristan Sloughter2014-10-221-1/+6
|
* move providers to separate appTristan Sloughter2014-10-031-9/+9
|
* return error messages from providersTristan Sloughter2014-09-271-1/+1
|
* reworking of help display and parse of commandsTristan Sloughter2014-09-171-1/+1
|
* improved dep handling and add package list taskTristan Sloughter2014-08-241-220/+4
|
* use dict for depsTristan Sloughter2014-08-231-90/+115
|
* fix fetch name logTristan Sloughter2014-08-231-1/+1
|
* fix state of rebar for building depsTristan Sloughter2014-08-231-2/+8
|
* simplify dep download and buildingTristan Sloughter2014-08-231-12/+7
|
* rename deps providerTristan Sloughter2014-08-231-0/+252