Hacker Read top | best | new | newcomments | leaders | about | bookmarklet login

How exactly does the workaround make packages "always be stale"?


sort by: page size:

Well, why did you choose packages that change quickly and are poorly documented then? There are packages that, OTOH, have up to zero dependencies, and haven't changed in years; if you consider those stale, I guess nobody can help you.

Out of curiosity is patching and updating all packages also a common consistent issue? Is there regularly breaking changes?

So if they need to apply a small patch to a given package they'll sometimes discover that it was built 3 versions ago and no longer compiles? Yuck.

Seems like a feature. Packages shouldn't update themselves. That's what package managers are for.

Packages breaking is a real problem. I’ve found that explicitly versioning them (eg comitting their source) has made this much less of a problem.

Also: The utility file will never be updated and fix existing issues within the utility itself (unless you look up the package and diff it yourself). It's a trade-off.

How does that solve the issue here of new broken versions of packages being published?

Ok maybe i am missing something, but it seems to me you may want some mutability in a package manager. For example, updates that are simply bug fixes and security fixes but are backward compatible should be substituted for older versions.

Suppose you have a networking library, which is used by several applications. All of a sudden you find a security hole in the networking library. And then you fix it. But the fix does not affect any of the published APIs or functionality and is thus completely backwards compatible for all legal uses.

When you fix the library you release a new version of it. Shouldn't that new version be automatically used for all applications that use the library? If you have an immutable packaging system, all applications will still use the old version of the library and they would have to have their packages explicitly modified to use the new version.

Now this may work for super high value and super secure systems, where someone has the time to individually test the new version of the library with each application that uses it and then individually update each application.

But for the usual desktop system this sounds like a recipe for having a bunch of out-dated hole ridden software, where multiple badly maintained applications still carry known security holes from many years ago; or, in other words, this sounds very much like Windows.


It's useless in cases like this though, where the package is already invalidated in the yarn cache, which is the case right now for many packages.

> packages broke during routine updates

> How do emacs people deal with this

The same way anybody working with any package system does, by pinning ancient versions and/or just never updating all packages, at least for packages that aren't so widely used that they pretty much are never broken


Inability to install multiple versions of the same package can be a feature. It encourages the creation of stable, backwards-compatible packages.

Because nobody got around to fixing it yet. Infrastructure can be built to keep these packages' dependencies up-to-date by default. If they break on dependency update, the maintainer should be alerted, and the package should no longer be recommended until it is fixed. Relying on individual maintainers to do everything correctly themselves has never worked.

By default don't they keep old generations (and thus previously-installed packages) literally forever?

Why not get the package added to backports and then instructing users to update? This happens with tons of other similar packages.

My bad I meant `package-lock`, updated for clarity.

> Especially when the old project in question is not yours

Then it falls out of the stated scope of "updating my small website once every 5 years or so"


Then you get 5 year out of date packages, which eventually have a security vulnerability, and now you have the task of upgrading and working through 5 years of (potentially) breaking changes and deprecations.

It's generally easier in the long run to keep your dependencies up to date. If a package has a new breaking change each week, that's a sign you probably shouldn't be using it for production code.


Not necessarily. Package managers can cache things, especially if you're fetching the same version over and over.

Also, separation of concerns is a good thing IMO.


The problem with that is that many of these projects are production-ready enough and end up being used in pretty big projects because the alternative is starting from scratch or using an inferior solution. Because they're eternally under v1.0, APIs break and so the package never gets updated in production.

Given that no bugs exist, it's not possible to get inconsistencies by installing packages in random order because they declare their dependencies. If no bugs existed we would not need updates at all...
next

Legal | privacy