Update about-semantic-versioning.mdx to clarify version resolution and pre-releases by LBaquedanoCordova · Pull Request #1655 · npm/documentation · GitHub | Latest TMZ Celebrity News & Gossip | Watch TMZ Live
Skip to content

Update about-semantic-versioning.mdx to clarify version resolution and pre-releases #1655

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

LBaquedanoCordova
Copy link

This pull request adds a note to the "About semantic versioning" guide to clarify how npm resolves versions within defined ranges in package.json. It specifies that npm installs the highest compatible stable version and ignores pre-releases like 1.2.0-beta.1 unless explicitly allowed by configuration.

The goal is to help developers better understand version behavior and prevent unexpected installations when using semver constraints.

References

None

<Note>

**Note:** When using version ranges in your `package.json`, npm resolves to the **highest available version** that satisfies the specified constraints. This behavior ensures that consumers automatically receive the most recent compatible stable release, as long as the changes remain within the defined semver range. Pre-release versions (e.g., `1.2.0-beta.1`) are ignored unless explicitly requested or allowed via specific configuration.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe that if your range includes a prerelease then new prereleases will be included.
example from semver.npmjs.com showing >11.0.0-pre.0 including 11.0.0-pre.1

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your input! You're absolutely right that when the version range explicitly includes a prerelease version — like >11.0.0-pre.0 — then further prereleases will be considered as valid candidates.

My contribution was intended to reflect the default behavior when the version range does not explicitly include a prerelease version — for example, using ^1.0.0 or ~2.2.0. In those cases, even if a prerelease version exists within the semantic range (like 1.1.0-beta.0), npm install will not install it unless:

  • the prerelease is explicitly included in the version range, or
  • the version is installed directly via npm install some-lib@1.1.0-beta.0.

This behavior has even led to some confusion in the community, as discussed in npm/cli#7851, where users expected >x.y.z-beta to include later prereleases — but npm does not currently resolve those by default.

This distinction between stable and prerelease resolution isn't always obvious, so I thought it would be helpful to clarify. Happy to refine the wording further if needed!

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

Successfully merging this pull request may close these issues.

2 participants

TMZ Celebrity News – Breaking Stories, Videos & Gossip

Looking for the latest TMZ celebrity news? You've come to the right place. From shocking Hollywood scandals to exclusive videos, TMZ delivers it all in real time.

Whether it’s a red carpet slip-up, a viral paparazzi moment, or a legal drama involving your favorite stars, TMZ news is always first to break the story. Stay in the loop with daily updates, insider tips, and jaw-dropping photos.

🎥 Watch TMZ Live

TMZ Live brings you daily celebrity news and interviews straight from the TMZ newsroom. Don’t miss a beat—watch now and see what’s trending in Hollywood.