summaryrefslogtreecommitdiff
path: root/rebar.lock
Commit message (Collapse)AuthorAgeFilesLines
* upgrade ssl_veirfy_fun to 1.1.5Tristan Sloughter2019-05-301-2/+2
|
* upgrade relx to 3.32.0Tristan Sloughter2019-05-271-2/+2
|
* Fix cth_readable crash with bad lager interactionFred Hebert2019-05-041-2/+2
| | | | fixed #2063
* upgrade relx 3.31.0Tristan Sloughter2019-04-141-2/+2
|
* Update certifi, ssl_verify_fun, bbmustacheFred Hebert2019-04-131-6/+6
|
* upgrad relx to 3.30.0Tristan Sloughter2019-04-121-2/+2
|
* upgrade relx 3.29.0Tristan Sloughter2019-03-131-2/+2
|
* Fix fetching of private packages from orgs on hex repos (#2020)Bryan Paxton2019-03-071-2/+0
| | | | | | | | | | | | | - vendor in hex_core at v0.5.0 - Change where repo_name should be the org and not the parent - Changed rebar_utils:url_append_path/2 to not explicitly add a '?', this is returned in the Query chunk by http_uri:parse/1 (e.g., "?foo=bar") - update organization_merging test to expect the sub-repo as the repo_name - Add tests for rebar_utils:url_append_path/2 - Stop referencing/setting "organization" in config and use new organization settings (api_repository and repo_organization) - Do not set (assume) the read key is valid for any/every repo - Set repo_organization and api_repository to org - Update tests to check for new config opts
* Bump cth_readableFred Hebert2019-02-051-2/+2
| | | | | Handles some internal changes in logger in OTP-21.2 that broke the follow-up error printouts after the first failure of a CT run
* update relx to 3.28.0Tristan Sloughter2019-01-051-2/+2
|
* Update hex_core and add mirror_of repo configEric Meadows-Jönsson2018-12-301-2/+2
|
* bump erlware_commons to 1.3.1Tristan Sloughter2018-12-181-2/+2
|
* fix finding transitive deps with prerelease versions (#1914)Tristan Sloughter2018-10-141-2/+2
|
* Bump bbmustache and fix templates (#1862)Fred Hebert2018-10-051-2/+2
| | | | | | | | | * bump bbmustache to version 1.6.0 * Use alternative bbmustache brackets in templates This fixes the problems where literal nested tuples (`{{a,b},c}` or `{{a,b}}`) would blow up and spaces needed to be inserted.
* upgrade relx and set base_dir in overlay_vars (#1902)Tristan Sloughter2018-10-051-2/+2
|
* support for hex v2, multiple repository fetching, private organizations (#1884)Tristan Sloughter2018-09-131-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
* Bump certifiFred Hebert2018-08-021-2/+4
| | | | Includes an update to parse_trans on an OTP-21 friendly version
* bump erlware_commons and relx for eperm otp-21 fixTristan Sloughter2018-06-231-4/+4
|
* Bump cth_readable for OTP-21 compatFred Hebert2018-06-191-2/+2
|
* Revert "upgrade certifi to 2.3.1"Tristan Sloughter2018-06-191-4/+2
|
* upgrade relx to 3.25.0Tristan Sloughter2018-06-191-2/+2
|
* upgrade certifi to 2.3.1Tristan Sloughter2018-06-121-2/+4
|
* upgrade bbmustache to 1.5.0Tristan Sloughter2018-06-121-2/+2
|
* Logger OTP-21-rc2 supportFred Hebert2018-05-301-2/+2
| | | | Also small output fix in rebar3 shell
* Logger support in cth_readable; compact CT outputFred Hebert2018-05-051-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | 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.
* Update erlware_commons for stacktraces supportFred Hebert2018-05-031-2/+2
|
* Bump cth_readable to 1.3.4: restor eunit formatFred Hebert2018-04-221-2/+2
|
* Bump cth_readable to 1.3.3Fred Hebert2018-04-031-2/+2
| | | | Fixes some lager warnings since config changes
* upgrade erlware commons and relxTristan Sloughter2018-02-031-4/+4
|
* Merge pull request #1665 from ferd/bump-cth_readable-1.3.2Fred Hebert2017-11-221-2/+2
|\ | | | | Bump cth_readable to 1.3.2
| * Bump cth_readable to 1.3.2Fred Hebert2017-11-201-2/+2
| | | | | | | | Eliminates a lager warning due to config format deprecation
* | upgrade relx to 3.24.3Tristan Sloughter2017-11-211-2/+2
|/
* upgrade relx and erlware commonsTristan Sloughter2017-11-171-4/+4
|
* OTP-21 readiness, Full Unicode supportFred Hebert2017-11-161-14/+14
| | | | | | | | | | | | This replaces all deprecated function usage by alternative ones based on a version switch enacted at compile time, preventing all warnings. This will likely introduce some possible runtime errors in using a Rebar3 compiled on OTP-20 or OTP-21 back in versions 19 and earlier, but we can't really work around that. A bunch of dependencies have been updated to support OTP-21 without warnings as well.
* Update rebar.lockSean Cribbs2017-09-251-2/+2
|
* Merge pull request #1578 from ferd/bump-cth-show-groupsFred Hebert2017-08-071-2/+2
|\ | | | | Bump cth_readable to 1.3.0: shows test groups
| * Bump cth_readable to 1.3.0: shows test groupsFred Hebert2017-06-271-2/+2
| |
* | Also upgrade ssl_verify_fun while we're at itFred Hebert2017-07-311-2/+2
| |
* | Upgrade certifi dependenciesFred Hebert2017-07-311-2/+2
| | | | | | | | | | | | | | | | | | | | Get more up-to-date root certs. This was blocked for a while because certifi wouldn't build on windows, but this is now fixed, with minimal changes to the use case -- only a small change in the bootstrap script is required. The new certifi lib is also a few megabytes lighter than before, which is good for rebar3.
* | upgrade relxTristan Sloughter2017-07-141-2/+2
|/
* upgrade relx to 3.23.0Tristan Sloughter2017-05-241-2/+2
|
* Bump cth_readable to 1.2.6Fred Hebert2017-05-121-2/+2
| | | | | | | | This fixes the output of end_per_testcase crash notifications when the test passes. This also detect an issue of the kind with rebar_pkg_SUITE which is now fixed.
* Adds support for new ct hook callbackFred Hebert2017-05-071-2/+2
|
* Bump relx to 3.22.4Luis Rascao2017-03-281-2/+2
|
* upgrade relx to 3.22.3Tristan Sloughter2017-03-201-2/+2
|
* Bump cth_readable to 1.2.4Fred Hebert2017-02-251-2/+2
| | | | | | Fixes an issue where some skipped test suites could end up misreported as the previous suite. See https://github.com/ferd/cth_readable/issues/10
* upgrade erlware_commons to 1.0.0 for OTP20 supportTristan Sloughter2017-01-101-2/+2
|
* upgrade relx to fixed hex package 3.22.2Tristan Sloughter2017-01-061-2/+2
|
* Bump relx to 3.22.1Luis Rascao2016-12-271-2/+2
|
* Upgrade relx, erlware_commons and cfLuis Rascao2016-11-271-6/+6
| | | | | | relx ~> 3.22.0 erlware_commons ~> 0.22.0 cf ~> 0.2.2