-
Notifications
You must be signed in to change notification settings - Fork 145
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
Communicating that only the latest version of a major release line is supported #393
Comments
In the PACKAGE_SUPPORT.md I think the assumption (at least for me) is that the maintainer has said So for example if you've chosen But I guess that is different than which versions the package itself will work with and it is possible that a package might only work for a subset of the 12.x versions. In that case though you could use the engines so say it only runs on 12.5 or later. It is an interesting question. If a module consumes a SemVer patch release of Node.js that forces users to update their Node.js version if they consume corresponding SemVer Patch version of the module. I guess the question is if there needs some way for maintainers to say for a given LTS release line I won't use any of the SemVer minor features so you won't have to update Node.js when accepting SemVer minor/patch versions of the module. That actually sounds useful for end users, but I'm not sure I've seen that being done, except possibly in cases where people like @ljharb tries to support as far back as he can. |
Explicitly in semver tho, 14.x means any 14, including 14.0.0. There is no way in semver or npm to specify the latest minor on a major dynamically. |
Unfortunately I too have always interpreted 14.x by the semver definition as above. Is it a common interpretation to think of this as latest? |
i assumed the same thing as well. I think of 14.x to be all of 14 |
Adding to next meeting agenda, let's talk this over. |
Actions for @dominykas:
|
Included a note about this issue in nodejs/ci-config-travis#12. |
This came up in discussions in nodejs/ci-config-travis#6.
When people say they support e.g. Node 14.x, the usually (is that true?) mean that they only support the latest version in the 14.x line. At this time neither semver, nor
PACKAGE-SUPPORT
allows to define that as such?Should we clarify that in the
PACKAGE-SUPPORT
doc?Ideally, one would be able to communicate that via
engines
as well, but moving the semver standard might be trickier (if possible at all).The text was updated successfully, but these errors were encountered: