[QUESTION]: Why are minor updates released with the old minor version number? #1928
Unanswered
markterrill
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Why aren't minor updates published as minor version increments? The current full "dev.master-xxxxxx" tag negates the ability to setup yarn/npm to fetch and install minor updates or check for outdated packages.
I honestly thought it was a bug in the NPM publishing process, where the 'latest' points to the last (old) major release.
You need to use the full tag to actually get the latest version. Seems the publish process isn't actually publishing as the version number, but is publishing as the version + branch + commit.
A clear and concise description of the problem...Look at https://www.npmjs.com/package/@ngxs/storage-plugin/v/3.7.3-dev.master-b00eeb3
The wrong version installs if you happen to use @latest or @3.7.3, though works if you use the full dev master tag, ie
yarn add @ngxs/storage-plugin@3.7.3-dev.master-b00eeb3
Environment
For Tooling issues:
Beta Was this translation helpful? Give feedback.
All reactions