Live data from Hacker News

The GitHub registry public beta is live

help.github.com

81–90 of 137 posts

Re: The GitHub registry public beta is live

#81

I think this beta sign-up has been up for a bit already. It still just adds you to a wait list as far as I can tell, unless I missed something.

I signed this up when they first announced it but I still don't get the invite to access it. I am not sure how they choose who will have early access to it.

Re: The GitHub registry public beta is live

#83

Deja vu https://github.blog/2008-04-25-github-s-rubygem-server/ And then removed 16 months later: https://github.blog/2009-10-08-gem-building-is-defunct/ Hopefully this one lasts longer.

Customers ability to 1. Punish innovation and 2. Punish a lack of innovation is a little bit hard to overestimate as a Product Manager. Experimentation = bad, no experimentation = also bad. It's like how Google makes some of the best software ever, and also people savagely denounce them every time they kill a failing product. As if they would have learned as fast if they either didn't make the product to begin with or kept it around to languish and maintain.

Re: The GitHub registry public beta is live

#84
post #24

Any word on what the price will be for private repos after the beta ends? Would be interesting to see how it compares to Docker Hub for hosting private images.

I think if it's at all comparable, GitHub will win out. It just seems convenient to not have one more subscription with another provider. Plus, hopefully, it will all be integrated well workflow-wise with a repository with actions that publish to the registry.

if docker loses, then who will maintain docker?

Re: The GitHub registry public beta is live

#85

Earlier quoted context omitted.

I think if it's at all comparable, GitHub will win out. It just seems convenient to not have one more subscription with another provider. Plus, hopefully, it will all be integrated well workflow-wise with a repository with actions that publish to the registry.

if docker loses, then who will maintain docker?

There's more to docker than Docker Hub, but I'm not sure what % of their revenue is from Docker Hub.

Even if GitHub "wins" there will still be a lot on Docker Hub.

Also, it's already possible to use other registries like Amazon's ECR or Google Cloud's GCR, or even your own private one.

Re: The GitHub registry public beta is live

#86
post #64
post #54

Earlier quoted context omitted.

git urls are tricky to use with many tools (like pip-compile) though. At best they're slow, since things like "what's the latest version?" require downloading the repo. We forked some things into a private DevPI instance at present for that reason (well, also for latency)

Pipenv locks the VCS dependency to the commit, making pulling very fast.

Does it do a shallow pull or pull a tarball of the source?

Re: The GitHub registry public beta is live

#87

> is a software package hosting service, similar to npmjs.org, rubygems.org, or hub.docker.com, that allows you to host your packages and code in one place. You can host software packages privately or publicly and use them as dependencies in your projects. I am... really confused by this. Isn't this just Github? Github is a hosting service that allows you to host your packages and code in one place. It has testing an…

They are implementing the APIs that the package managers expect to fetch artifacts, rather than the package managers having to know how to fetch files via Git.

[deleted]

Re: The GitHub registry public beta is live

#89

Deleting packages is not supported. Sobhow to handle a compromised package? Looks like you have to contact github and hope the act fast. Oh, and no pip registry :(

The alternate is that critical infrastructure can just... disappear. Like "leftpad", but worse. GitHub is already really great about alerting you with critical issues. Whenever there's a security bug, it pops up in our repo (and with Dependabot, it's become automatic).

I have appreciated the automated notifications from GitHib for projects that have known vulnerable dependencies in my package.json(s).

I just looked up Dependabot and linked it with a repo that I already have robust testing and CI pipeline for. Preliminarily Dependabot is great!

It automatically updates by dependencies to the latest versions and submits individual PRs. Since I have TravisCI hooked up to this particular repo, I can see all the test results for each PR and can (confidently) merge the changes into master without manually firing up my personal dev machine(s) and manually performing what Dependabot just did.

Anyway, thanks for the tip!

Re: The GitHub registry public beta is live

#90

Deja vu https://github.blog/2008-04-25-github-s-rubygem-server/ And then removed 16 months later: https://github.blog/2009-10-08-gem-building-is-defunct/ Hopefully this one lasts longer.

It’s incredible to read the casual tone of those postings. Ten years ago Github was just an amazing innovation that could just spin a service shutdown as an experiment - now everything it does is vital infrastructure for modern development.
Post reply on HN