-
Notifications
You must be signed in to change notification settings - Fork 59
Fix protocol_for_deps
allow for git_subdir
's ref
and tag
#373
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
093171e
Identify as branch, even if in `git_subdir`
paulo-ferraz-oliveira f2a62f6
Move hex-specific comparison to "proper" place in code
paulo-ferraz-oliveira d6a9d52
Ease identification of legacy formats
paulo-ferraz-oliveira 15b9954
Ease code analysis for future us
paulo-ferraz-oliveira f7b8dce
Allow tag and ref in git_subdir, as per rebar3
paulo-ferraz-oliveira 37eade5
Fix for backward compatibility case (with opts)
paulo-ferraz-oliveira 9591fdb
Fix test validations now that we match further
paulo-ferraz-oliveira 130b8fd
Include new file to test with
paulo-ferraz-oliveira 4b411cd
Fix as per test results.
paulo-ferraz-oliveira cdd09a4
protocol_for_deps: support git:// alongside https://
paulo-ferraz-oliveira 292099e
Merge branch 'main' into fix/protocol_for_deps
elbrujohalcon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ | |
{deps_dir, "deps"}. | ||
{deps, | ||
[ | ||
{lager, "2.*", {git, "git://github.com/basho/lager.git", "2.0.0"}}, | ||
{lager, "2.*", {git, "git2://github.com/basho/lager.git", "2.0.0"}}, | ||
{getopt, "0.*", {git, "[email protected]:jcomellas/getopt.git", {branch, "main"}}}, | ||
{meck, "0.*", {git, "https://github.com/eproxus/meck.git", "0.8.2"}}, | ||
{jiffy, "0.*", {git, "https://github.com/davisp/jiffy.git", "0.11.3"}}, | ||
|
@@ -30,7 +30,7 @@ | |
{aleppo, "0.*", {git, "https://github.com/inaka/aleppo.git", "main"}}, | ||
{jsx, {raw, {git, "[email protected]:talentdeficit.git", {branch, "develop"}}}}, | ||
|
||
{lager, {git, "git://github.com/basho/lager.git", "2.0.0"}}, | ||
{lager, {git, "git2://github.com/basho/lager.git", "2.0.0"}}, | ||
{getopt, {git, "[email protected]:jcomellas/getopt.git", {branch, "main"}}}, | ||
{meck, {git, "https://github.com/eproxus/meck.git", "0.8.2"}}, | ||
{jiffy, {git, "https://github.com/davisp/jiffy.git", "0.11.3"}}, | ||
|
elbrujohalcon marked this conversation as resolved.
Show resolved
Hide resolved
elbrujohalcon marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{deps, | ||
[ | ||
rebar, | ||
{rebar, "1.0.0"}, | ||
{rebar, {pkg, rebar_fork}}, | ||
{rebar, "1.0.0", {pkg, rebar_fork}}, | ||
{rebar, {git, "git://github.com/rebar/rebar.git", {branch, "main"}}}, | ||
{rebar, {git, "https://github.com/rebar/rebar.git", {tag, "1.0.0"}}}, | ||
{rebar, {git, "https://github.com/rebar/rebar.git", {ref, "7f73b8d6"}}}, | ||
{rebar, {hg, "https://github.com/rebar/rebar.git", {tag, "1.0.0"}}}, | ||
{rebar, {git_subdir, "https://github.com/rebar/rebar.git", {branch, "main"}, "subdir"}}, | ||
{rebar, {git_subdir, "git://github.com/rebar/rebar.git", {tag, "1.0.0"}, "sub/dir"}}, | ||
{rebar, {git_subdir, "https://github.com/rebar/rebar.git", {ref, "7f73b8d6"}, "dir"}}, | ||
%% Alternative formats, backwards compatible declarations | ||
{rebar, {git, "https://github.com/rebar/rebar.git"}}, | ||
{rebar, "1.0.*", {git, "https://github.com/rebar/rebar.git"}}, | ||
{rebar, "1.0.*", {git, "https://github.com/rebar/rebar.git", "Rev"}}, | ||
{rebar, ".*", {git, "https://github.com/rebar/rebar.git", {branch, "main"}}, [raw]} | ||
]}. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.