├── .awconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── other-issues.md └── workflows │ ├── erlang.yml │ └── lint.yml ├── .gitignore ├── .markdownlint.yml ├── .yamllint.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── elvis.config ├── nextroll.dict ├── rebar.config ├── rebar.lock ├── src ├── dep_hex.erl ├── dep_updater.erl ├── rebar3_depup.app.src ├── rebar3_depup.erl └── rebar3_depup_prv.erl └── test ├── default_updates.config ├── depup_SUITE.erl ├── ignore.config ├── ignore_config.config ├── just.config ├── just_hex.config ├── no_approx.config ├── no_replace.config ├── no_updates.config ├── only_major.config ├── only_minor.config ├── only_override.config ├── only_patch.config └── profile_updates.config /.awconfig: -------------------------------------------------------------------------------- 1 | --- 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/.github/ISSUE_TEMPLATE/other-issues.md -------------------------------------------------------------------------------- /.github/workflows/erlang.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/.github/workflows/erlang.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.yml: -------------------------------------------------------------------------------- 1 | --- 2 | default: true 3 | MD013: 4 | line_length: 100 5 | -------------------------------------------------------------------------------- /.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/.yamllint.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/README.md -------------------------------------------------------------------------------- /elvis.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/elvis.config -------------------------------------------------------------------------------- /nextroll.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/nextroll.dict -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/rebar.config -------------------------------------------------------------------------------- /rebar.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/rebar.lock -------------------------------------------------------------------------------- /src/dep_hex.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/src/dep_hex.erl -------------------------------------------------------------------------------- /src/dep_updater.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/src/dep_updater.erl -------------------------------------------------------------------------------- /src/rebar3_depup.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/src/rebar3_depup.app.src -------------------------------------------------------------------------------- /src/rebar3_depup.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/src/rebar3_depup.erl -------------------------------------------------------------------------------- /src/rebar3_depup_prv.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/src/rebar3_depup_prv.erl -------------------------------------------------------------------------------- /test/default_updates.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/test/default_updates.config -------------------------------------------------------------------------------- /test/depup_SUITE.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/test/depup_SUITE.erl -------------------------------------------------------------------------------- /test/ignore.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/test/ignore.config -------------------------------------------------------------------------------- /test/ignore_config.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/test/ignore_config.config -------------------------------------------------------------------------------- /test/just.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/test/just.config -------------------------------------------------------------------------------- /test/just_hex.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/test/just_hex.config -------------------------------------------------------------------------------- /test/no_approx.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/test/no_approx.config -------------------------------------------------------------------------------- /test/no_replace.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/test/no_replace.config -------------------------------------------------------------------------------- /test/no_updates.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/test/no_updates.config -------------------------------------------------------------------------------- /test/only_major.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/test/only_major.config -------------------------------------------------------------------------------- /test/only_minor.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/test/only_minor.config -------------------------------------------------------------------------------- /test/only_override.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/test/only_override.config -------------------------------------------------------------------------------- /test/only_patch.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/test/only_patch.config -------------------------------------------------------------------------------- /test/profile_updates.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdRoll/rebar3_depup/HEAD/test/profile_updates.config --------------------------------------------------------------------------------