chore(deps): unpinning semver and updating it#9349
Merged
Conversation
🦋 Changeset detectedLatest commit: 12c8481 The changes in this PR will be included in the next version bump. This PR includes changesets to release 9 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
66bd38f to
256819c
Compare
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
256819c to
9aa93d9
Compare
44fb354 to
b383b8d
Compare
3075949 to
1b04f1d
Compare
mmaietta
previously approved these changes
Dec 4, 2025
1b04f1d to
ae9ea57
Compare
Contributor
Author
|
any update with this? |
Collaborator
|
Trying to merge it but every time new commits are pushed, I have to requeue all the CI tests. No more pushes and I can get this into the next release 😅 |
Contributor
Author
|
Ok, only rebase. :-) Let's go. |
mmaietta
approved these changes
Dec 5, 2025
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
ref #9301
Why?
If one project has the version "7.7.3" and another project has "7.7.2", the bundle package (e.g., Webpack) will include both versions, 7.7.3 and 7.7.2. However, if a project uses
~or^, the build will include only one version in the bundle.This is just one example. If all dependencies have strict versions, all modules with different versions will be included in the bundle. This creates a cascading issue.
If it is not necessary to require a specific version (e.g., for bug fixes, security, etc.), I see no reason to do so.
Using the tilde (
~) is a good compromise.@mmaietta