This repository has been archived by the owner on Oct 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Conversation
This file contains 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
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
renovate
bot
force-pushed
the
renovate/pnpm-7.x
branch
from
March 11, 2023 04:11
ede7e77
to
e33c948
Compare
renovate
bot
changed the title
chore(deps): update pnpm to v7.29.0
chore(deps): update pnpm to v7.29.1
Mar 11, 2023
renovate
bot
force-pushed
the
renovate/pnpm-7.x
branch
from
March 18, 2023 10:48
e33c948
to
6494167
Compare
renovate
bot
changed the title
chore(deps): update pnpm to v7.29.1
chore(deps): update pnpm to v7.29.3
Mar 18, 2023
renovate
bot
changed the title
chore(deps): update pnpm to v7.29.3
chore(deps): update pnpm to v7.30.0
Mar 20, 2023
renovate
bot
force-pushed
the
renovate/pnpm-7.x
branch
from
March 20, 2023 14:35
6494167
to
701d821
Compare
renovate
bot
force-pushed
the
renovate/pnpm-7.x
branch
from
March 26, 2023 13:13
701d821
to
989ab2d
Compare
renovate
bot
changed the title
chore(deps): update pnpm to v7.30.0
chore(deps): update pnpm to v7.30.1
Mar 26, 2023
renovate
bot
force-pushed
the
renovate/pnpm-7.x
branch
from
March 27, 2023 06:37
989ab2d
to
76bf313
Compare
renovate
bot
changed the title
chore(deps): update pnpm to v7.30.1
chore(deps): update pnpm to v7.30.2
Mar 27, 2023
renovate
bot
changed the title
chore(deps): update pnpm to v7.30.2
chore(deps): update pnpm to v7.30.3
Mar 27, 2023
renovate
bot
force-pushed
the
renovate/pnpm-7.x
branch
from
March 27, 2023 13:58
76bf313
to
0cbfab5
Compare
renovate
bot
changed the title
chore(deps): update pnpm to v7.30.3
chore(deps): update pnpm to v7.30.4
Mar 29, 2023
renovate
bot
force-pushed
the
renovate/pnpm-7.x
branch
from
March 29, 2023 04:01
0cbfab5
to
be209bb
Compare
renovate
bot
changed the title
chore(deps): update pnpm to v7.30.4
chore(deps): update pnpm to v7.30.5
Mar 30, 2023
renovate
bot
force-pushed
the
renovate/pnpm-7.x
branch
from
March 30, 2023 14:07
be209bb
to
12a824d
Compare
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
This PR contains the following updates:
7.28.0
->7.30.5
Release Notes
pnpm/pnpm
v7.30.5
Compare Source
Patch Changes
pnpm audit
should work even if there are nopackage.json
file, just apnpm-lock.yaml
file.dedupe-peer-dependents
istrue
#6154.Our Gold Sponsors
Our Silver Sponsors
v7.30.4
Compare Source
v7.30.3
Compare Source
Patch Changes
Our Gold Sponsors
Our Silver Sponsors
v7.30.2
Compare Source
v7.30.1
Compare Source
Patch Changes
pnpm-lock.yaml
file if it has no changes andpnpm install --frozen-lockfile
was executed #6158.git+ssh
that use semver selectors #6239.pnpm audit
output #6203Our Gold Sponsors
Our Silver Sponsors
v7.30.0
Compare Source
Minor Changes
patches-dir
setting #6215Patch Changes
Our Gold Sponsors
Our Silver Sponsors
v7.29.3
Compare Source
Patch Changes
node_modules/.pnpm/node_modules
directory through theNODE_PATH
env variable, then the command's ownnode_modules
directory #5176.extend-node-path
is set back totrue
by default. It was set tofalse
in v7.29.2 in order to fix issues with multiple versions of Jest in one workspace. It has caused other issues, so now we keep extendingNODE_PATH
. We have fixed the Jest issue with a different solution #6213.Our Gold Sponsors
Our Silver Sponsors
v7.29.2
Compare Source
v7.29.1
Compare Source
Patch Changes
Our Gold Sponsors
Our Silver Sponsors
v7.29.0
Compare Source
Minor Changes
A new setting is now supported:
dedupe-peer-dependents
.When this setting is set to
true
, packages with peer dependencies will be deduplicated after peers resolution.For instance, let's say we have a workspace with two projects and both of them have
webpack
in their dependencies.webpack
hasesbuild
in its optional peer dependencies, and one of the projects hasesbuild
in its dependencies. In this case, pnpm will link two instances ofwebpack
to thenode_modules/.pnpm
directory: one withesbuild
and another one without it:This makes sense because
webpack
is used in two projects, and one of the projects doesn't haveesbuild
, so the two projects cannot share the same instance ofwebpack
. However, this is not what most developers expect, especially since in a hoistednode_modules
, there would only be one instance ofwebpack
. Therefore, you may now use thededupe-peer-dependents
setting to deduplicatewebpack
when it has no conflicting peer dependencies (explanation at the end). In this case, if we setdedupe-peer-dependents
totrue
, both projects will use the samewebpack
instance, which is the one that hasesbuild
resolved:What are conflicting peer dependencies? By conflicting peer dependencies we mean a scenario like the following one:
In this case, we cannot dedupe
webpack
aswebpack
hasreact
in its peer dependencies andreact
is resolved from two different versions in the context of the two projects.Patch Changes
The configuration added by
pnpm setup
should check if the pnpm home directory is already in the PATH before adding to the PATH.Before this change, this code was added to the shell:
Now this will be added:
Add
skipped
status in exec report summary when script is missing #6139.pnpm env -g
should fail with a meaningful error message if pnpm cannot find the pnpm home directory, which is the directory into which Node.js is installed.Should not throw an error when local dependency use file protocol #6115.
Fix the incorrect error block when subproject has been patched #6183
Our Gold Sponsors
Our Silver Sponsors
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.