Skip to content
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

Private repo with a semver tag hangs #850

Closed
3 tasks done
midgleyc opened this issue Mar 12, 2021 · 13 comments · Fixed by #852
Closed
3 tasks done

Private repo with a semver tag hangs #850

midgleyc opened this issue Mar 12, 2021 · 13 comments · Fixed by #852
Labels

Comments

@midgleyc
Copy link
Contributor

  • I have searched for similar issues
  • I am using the latest version of npm-check-updates
  • I am using node >= 10.17

Steps to Reproduce

  1. Add a private GitHub repo with a semver tag, e.g.
    "dependencies": {
        "@newredo/my-private-repo": "NewRedo/my-private-repo#semver:^1.0.0"
    }
    
  2. Run ncu.

Current Behavior

Hangs forever.

Expected Behavior

Either tells you it can't access the private repo or checks it.

Comments

Removing the semver tag works fine -- it only hangs when the semver tag is present.

@raineorshine
Copy link
Owner

Thanks for reporting! It sounds like a bug, but I unfortunately could not manage to reproduce it. I created a private repository both with and without personal access and with and without #semver, and it returned promptly each time.

What happens when you do npx pacote packument @newredo/my-private-repo?

@midgleyc
Copy link
Contributor Author

HttpErrorGeneral: 404 Not Found - GET https://registry.npmjs.org/@newredo%2fmy-private-repo - Not found

This is expected I think, because it's not on the NPM registry -- it's only on GitHub.

@raineorshine
Copy link
Owner

Yes, that's expected. npm-check-updates does the same thing (that's why without #semver works). But when #semver is used with a git url, it uses git remote instead of npm/pacote.

What do you get with npx remote-git-tags-cli https://github.com/sindresorhus/remote-git-tags?

@midgleyc
Copy link
Contributor Author

midgleyc commented Mar 12, 2021

Ah, I see what's happening: it prompts me for Username for 'https://github.com': but that's overridden by the progress bar, so my perception was that it hung. If I press Enter there I see Password for 'https://github.com': and if I hit enter again I can see the packages as usual.

I pull this package using an SSH key instead of a username and password -- that works transparently on an npm install.

npx remote-git-tags-cli https://github.com/newredo/my-private-repo prompts me for a username / password.

/usr/bin/git ls-remote -t ssh://git@github.com/NewRedo/my-private-repo.git shows me the tags.

npx remote-git-tags-cli ssh://git@github.com/NewRedo/my-private-repo.git also works.

@raineorshine
Copy link
Owner

Ah, I see what's happening: it prompts me for Username for 'https://github.com': but that's overridden by the progress bar, so my perception was that it hung. If I press Enter there I see Password for 'https://github.com': and if I hit enter again I can see the packages as usual.

Interesting, thanks! Maybe if I log an extra line at the beginning of remote-git-tags then the password prompt will be visible. Unfortunately I'm not sure how to get that prompt for myself. remote-git-tags-cli throws an error when I use my private GitHub url.

I pull this package using an SSH key instead of a username and password -- that works transparently on an npm install.

npm-check-updates loads your npm config and tries to make identical requests, but this logic doesn't carry over to remote-git-tags. Having npm-check-updates work seamlessly with SSH and/or private repos has been notoriously tricky.

@midgleyc
Copy link
Contributor Author

Thanks for the help debugging this -- now that I know what's causing it, I can see a workaround (press enter twice). I could also use the full form: I expect git+ssh://git@github.com:NewRedo/my-private-repo#semver:^1.0.0 to work, as it states the ssh explicitly.

I don't know how npm works out whether NewRedo/my-private-repo should be git+ssh or git+https. You could create a promise for both and take the one that returns successfully first? Seems like it would lead to unnecessary calls.

@raineorshine
Copy link
Owner

raineorshine commented Mar 12, 2021

npm does a fair amount of magic to try different protocols and urls. npm-check-updates really shouldn't be doing any magic, and should just reuse your existing npm config as much as possible.

I'm not sure exactly why it works with npm install but prompts for password with npm-check-updates.

@raineorshine
Copy link
Owner

Marking as unable-to-reproduce since I cannot get the password prompt, which I would need to be able to troubleshoot further.

@midgleyc
Copy link
Contributor Author

Interesting, I get the password prompt every time.

Do you also not get a password prompt for /usr/bin/git ls-remote -t https://github.com/[your private repo]? If so, you might have a git credential helper configured, which could be saving the username / password. On Windows, this is probably the Credential Manager.

@raineorshine
Copy link
Owner

raineorshine commented Mar 12, 2021

Good call. This does the trick for me:

/usr/local/bin/git -c credential.helper= ls-remote -t https://github.com/raineorshine/ncu-test-private

I should be able to make the password prompt visible, although I'm still not sure how to have it use your SSH credentials.

@raineorshine
Copy link
Owner

When I print a blank line, it does place the password prompt on a separate line, however it causes the progress bar to be rendered twice (even when there is no password prompt).

FWIW, when I get the password prompt it's not completely hidden, but is rendered immediately to the right of the progress bar. So I'm not sure why it's completely hidden for you.

@midgleyc
Copy link
Contributor Author

FWIW, when I get the password prompt it's not completely hidden, but is rendered immediately to the right of the progress bar.

Might be a race condition? I first saw this on a repository with ~30 packages.

Testing, I see:

  • 0/2
  • 0/2 with prompt
  • 1/2 prompt disappears

So yes, I think the prompt disappears when the progress bar updates.

although I'm still not sure how to have it use your SSH credentials.

It changes with the URL you pass to remote-git-tags. Starting with raineorshine/ncu-test-private:

  • If you pass https://github.com/raineorshine/ncu-test-private it asks for a username and password
  • If you pass ssh://git@github.com/raineorshine/ncu-test-private.git it uses your SSH key

It looks like npm plans to use CDN, then git+ssh, then git+https if the repo is specified as username/repository. For version 6, which I'm using, I expect them to do something similar: try ssh, if that fails try https and prompt.

@raineorshine
Copy link
Owner

FWIW, when I get the password prompt it's not completely hidden, but is rendered immediately to the right of the progress bar.

Might be a race condition? I first saw this on a repository with ~30 packages.

Testing, I see:

  • 0/2
  • 0/2 with prompt
  • 1/2 prompt disappears

So yes, I think the prompt disappears when the progress bar updates.

Yeah, by the time git remote ls is run, the progress bar is already being rendered.

  • If you pass https://github.com/raineorshine/ncu-test-private it asks for a username and password
  • If you pass ssh://git@github.com/raineorshine/ncu-test-private.git it uses your SSH key

It looks like npm plans to use CDN, then git+ssh, then git+https if the repo is specified as username/repository. For version 6, which I'm using, I expect them to do something similar: try ssh, if that fails try https and prompt.

That's fair. That's a bit beyond what I'm available for, but I'm open to PRs. npm-check-updates currently does not do any magic with the url, so this was be new territory.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants