-
Notifications
You must be signed in to change notification settings - Fork 922
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
⚠️ATTENTION: Using version range like ^
or ~
for packages in this repo will fail.
#1195
Comments
^
for packages in this repo will fail.^
or ~
for packages in this repo will fail.
^
or ~
for packages in this repo will fail.^
or ~
for packages in this repo will fail.
If use "packageRules": [
{
"packageNames": ["vuepress", "@vuepress/client", "@vuepress/markdown", "@vuepress/utils"],
"allowedVersions": "!/pre.*$/"
}
] |
Other official plug-in may be included as well |
Updated package.json to include the correct version range for dependencies. See vuepress/core#1195
Are there any plans to officially release v2? It has been in beta for 2+ years |
If Something like this should do the trick: npm deprecate [email protected] "Old test version"
npm deprecate [email protected] "Old test version" |
We already deprecated them, and deprecated version won't stop package manager installing them. |
Jumping to |
Absolutely that could not be an option, what's the difference between yours and v2.0.0?That's far worse than a version number like v2.0.0-chi.0 or v2.0.0-delta.0 |
* fix: vuepress-next breaking change See vuepress/core#1195. Other fixes: * fix: website js tests triggering properly * chore: clean up test workflows * fix: yarn packages * fix: renovate config & medium rate limit * fix: don't need to require docker build for JS code * fix: muffet config * fix: properly name website test --------- Co-authored-by: PePe Amengual <[email protected]>
This issue is marked as |
* fix: vuepress-next breaking change See vuepress/core#1195. Other fixes: * fix: website js tests triggering properly * chore: clean up test workflows * fix: yarn packages * fix: renovate config & medium rate limit * fix: don't need to require docker build for JS code * fix: muffet config * fix: properly name website test --------- Co-authored-by: PePe Amengual <[email protected]>
* fix: vuepress-next breaking change See vuepress/core#1195. Other fixes: * fix: website js tests triggering properly * chore: clean up test workflows * fix: yarn packages * fix: renovate config & medium rate limit * fix: don't need to require docker build for JS code * fix: muffet config * fix: properly name website test --------- Co-authored-by: PePe Amengual <[email protected]>
Description
If you use
^2.0.0-beta.xx
for any packages in this repo, you may get an installation failure, or you may get your app broke when upgrading to latestnext
version.This is because we published 2 test versions
2.0.0-beta.50-pre.0
,2.0.0-beta.50-pre.1
, while50-pre.x
is higher than any numberxx
.Solution
The easiest way to solve this is to upgrade vuepress with
vp-update
.For:
Manual solution
You can solve this issue by specifying exact version in package.json. e.g.:
Note that all the
^
or~
marker shall be changed for packages in this repo, but you can keep others as is.Also you can use
next
tag (But we do not recommend this because we may introduce breaking changes in future versions)The text was updated successfully, but these errors were encountered: