-
Notifications
You must be signed in to change notification settings - Fork 0
chore(deps): update all non-major dependencies #2
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
base: main
Are you sure you want to change the base?
Conversation
d94180a to
8d5b043
Compare
6c03fb0 to
09fa14c
Compare
09fa14c to
d8562fd
Compare
d8562fd to
c6c6e2f
Compare
e24e1ad to
949c321
Compare
949c321 to
19354e5
Compare
19354e5 to
e4ed897
Compare
b370247 to
93c76e6
Compare
eb1d2ad to
c5e73c2
Compare
52b2500 to
d319a96
Compare
d319a96 to
628757f
Compare
628757f to
658a635
Compare
658a635 to
7e7ddcc
Compare
7e7ddcc to
cafea8c
Compare
cafea8c to
30fccb1
Compare
30fccb1 to
505b7b9
Compare
505b7b9 to
64a879b
Compare
⚠ Artifact update problemRenovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens:
The artifact failure details are included below: File name: pnpm-lock.yamlFile name: packages/core/pnpm-lock.yamlFile name: docs/pnpm-lock.yaml |
64a879b to
128d068
Compare
|
This PR contains the following updates:
6.28.0->6.35.1^4.5.4->^4.9.5^2.9.0->^2.9.18^0.22.3->^0.22.4^0.8.3->^0.34.6Release Notes
pnpm/pnpm (pnpm)
v6.35.1Compare Source
Patch Changes
.npmrcfiles in subdirectories inside a workspace #2570.v6.35.0Compare Source
Patch Changes
Installing a package with
binthat points to an.exefile on Windows #5159.Ignore the
always-authsetting.pnpm will never reuse the registry auth token for requesting the package tarball, if the package tarball is hosted on a different domain.
So, for example, if your registry is at
https://company.registry.com/but the tarballs are hosted athttps://tarballs.com/, then you will have to configure the auth token for both domains in your.npmrc:When an error happens during installation of a subdependency, print some context information in order to be able to locate that subdependency. Print the exact chain of packages that led to the problematic dependency.
v6.34.0Compare Source
Minor Changes
ignore-compatibility-dbis set totrue, the compatibility database will not be used to patch dependencies #5132.Full Changelog: pnpm/pnpm@v6.33.1...v6.34.0
v6.33.1Compare Source
Patch Changes
v6.33.0Compare Source
v6.32.25Compare Source
Patch Changes
pnpm audit --fixshould not add an override for a vulnerable package that has no fixes released.pnpm env useshould throw an error on a system that use the MUSL libc.v6.32.24Compare Source
Patch Changes
Don't crash when
pnpm update --interactiveis cancelled with Ctrl+c.The
use-node-versionsetting should work with prerelease Node.js versions. For instance:v6.32.23Compare Source
Patch Changes
v6.32.22Compare Source
Patch Changes
v6.32.21Compare Source
Patch Changes
v6.32.20Compare Source
Patch Changes
package.jsonfile #4822.v6.32.19Compare Source
Patch Changes
v6.32.18Compare Source
Patch Changes
auto-install-peersis set totrue#4796.NODE_ENV=production pnpm install --devshould only install dev deps #4745.Full Changelog: pnpm/pnpm@v6.32.17...v6.32.18
v6.32.17Compare Source
Patch Changes
v6.32.16Compare Source
Patch Changes
auto-install-peersis set totrue, automatically install missing peer dependencies without writing them topackage.jsonas dependencies. This makes pnpm handle peer dependencies the same way as npm v7 #4776.v6.32.15Compare Source
Patch Changes
pnpm setupshould not fail on Windows ifPNPM_HOMEis not yet in the system registry #4757pnpm dlxshouldn't modify the lockfile in the current working directory #4743.v6.32.14Compare Source
Patch Changes
node_modules/.pnpmand inside the global store #4716Full Changelog: pnpm/pnpm@v6.32.13...v6.32.14
v6.32.13Compare Source
Patch Changes
pnpm setupshould update the config of the current shell, not the preferred shell.pnpm dlxshould work with git-hosted packages. For example:pnpm dlx gengjiawen/envinfo#4714.pnpm setupshould not override the PNPM_HOME env variable on Windows, unless--forceis used.pnpm create <pkg>should be passed to the executed create app package. Sopnpm create next-app --typescriptshould work`.pnpm run --streamshould prefix the output with directory #4702Full Changelog: pnpm/pnpm@v6.32.12...v6.32.13
v6.32.12Compare Source
Patch Changes
pnpm dlxshould work when the bin name of the executed package isn't the same as the package name #4672.pnpm pruneworks in a workspace #4647.pnpm prunedoes not remove hoisted dependencies.pnpm dlxshould print messages about installation to stderr #1698.v6.32.11Compare Source
Patch Changes
pnpm publishshould work correctly in a workspace, when the latest npm CLI is installed #4348.node_modules/.ignoredsubfolder and a package with that name is already present in `node_modules/.ignored' #4626.v6.32.10Compare Source
Patch Changes
v6.32.9Compare Source
Patch Changes
Fix an error with peer resolutions, which was happening when there was a circular dependency and another dependency that had the name of the circular dependency as a substring.
When
pnpm execis running a command in a workspace project, the commands that are in the dependencies of that workspace project should be in the PATH #4481.Hide "WARN deprecated" messages on loglevel error #4507
Don't show the progress bar when loglevel is set to warn or error.
v6.32.8Compare Source
Patch Changes
v6.32.7Compare Source
Patch Changes
auto-install-peerstotrueshould work.v6.32.6Compare Source
Patch Changes
v6.32.5Compare Source
Patch Changes
dependenciesMetashould be saved into the lockfile, when it is added to the package manifest by a hook.v6.32.4Compare Source
Patch Changes
dependenciesMetafield in the manifest should be satisfied by a not set field in the lockfile #4463.package.json#4487.v6.32.3Compare Source
Patch Changes
4941f31: The location of an injected directory dependency should be correctly located, when there is a chain of local dependencies (declared via thefile:protocol`).The next scenario was not working prior to the fix. There are 3 projects in the same folder: foo, bar, qar.
foo/package.json:{ "name": "foo", "dependencies": { "bar": "file:../bar" }, "dependenciesMeta": { "bar": { "injected": true } } }bar/package.json:{ "name": "bar", "dependencies": { "qar": "file:../qar" }, "dependenciesMeta": { "qar": { "injected": true } } }qar/package.json:{ "name": "qar" }Related PR: #4415.
v6.32.2Compare Source
Patch Changes
pnpm installwhen the lockfile is broken andnode-linkeris set tohoisted#4387.v6.32.1Compare Source
Patch Changes
pnpm publishshould work correctly in a workspace, when the latest npm CLI is installed #4348.node_modules/.ignoredsubfolder and a package with that name is already present in `node_modules/.ignored' #4626.v6.32.0Compare Source
Minor Changes
A new setting is supported in the
pnpmsection of thepackage.jsonfile #4001.onlyBuiltDependenciesis an array of package names that are allowed to be executed during installation. If this field exists, only mentioned packages will be able to run install scripts.{ "pnpm": { "onlyBuiltDependencies": ["fsevents"] } }-Fis a short alias of--filter#3467.When adding a new dependency, use the version specifier from the overrides, when present #4313.
Normally, if the latest version of
foois2.0.0, thenpnpm add fooinstallsfoo@^2.0.0. This behavior changes iffoois specified in an override:{ "pnpm": { "overrides": { "foo": "1.0.0" } } }In this case,
pnpm add foowill add[email protected]to the dependency. However, if a version is explicitly specifying, then the specified version will be used and the override will be ignored. Sopnpm add foo@0will install v0 and it doesn't matter what is in the overrides.Patch Changes
*, just replace any range with*.v6.31.0Compare Source
Minor Changes
Added
--shell-mode/-coption support topnpm exec#4328--shell-mode: shell interpreter. See: https://github.com/sindresorhus/execa/tree/484f28de7c35da5150155e7a523cbb20de161a4f#shellUsage example:
{ "scripts": { "check": " pnpm -r --shell-mode exec -- echo \"\\$PNPM_PACKAGE_NAME\"" } }Patch Changes
publishConfigwhen thepackorpublishcommands are used #4311pnpx,pnpm dlx,pnpm create, andpnpm execcommands should set thenpm_config_user_agentenv variable #3985.v6.30.1Compare Source
Patch Changes
This fixes an issue introduced in pnpm v6.30.0.
When a package is not linked to
node_modules, no info message should be printed about it being "relinked" from the store #4314.v6.30.0Compare Source
Minor Changes
v6.29.2Compare Source
Patch Changes
node_modulesdirectories inside injected dependencies should not be overwritten #4299.v6.29.1Compare Source
Patch Changes
node_modules.v6.29.0Compare Source
Minor Changes
update-notifierconfiguration option #4158.Patch Changes
microsoft/TypeScript (typescript)
v4.9.5: TypeScript 4.9.5Compare Source
For release notes, check out the release announcement.
Downloads are available on:
Changes:
69e88efPort ignore deprecations to 4.9 (#52419)daf4e81Port timestamp fix to 4.9 (#52426)v4.9.4: TypeScript 4.9.4Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
Changes:
e286821Bump version to 4.9.4 and LKG.eb5419fCherry-pick #51704 to release 4.9 (#51712)b4d382bCherry-pick changes for narrowing to tagged literal types.e7a02f4Port of #51626 and #51689 to release-4.9 (#51627)1727912Cherry-pick fix aroundvisitEachChildto release-4.9. (#51544)This list of changes was auto generated.
v4.9.3: TypeScript 4.9Compare Source
For release notes, check out the release announcement.
Downloads are available on:
Changes:
93bd577Bump version to 4.9.3 and LKG.107f832Update LKG.31bee56Cherry-pick PR #50977 into release-4.9 (#51363) [ #50872 ]1e2fa7aUpdate version to 4.9.2-rc and LKG.7ab89e5Merge remote-tracking branch 'origin/main' into release-4.9e5cd686Update package-lock.json8d40dc1Update package-lock.json5cfb3a2Only call return() for an abrupt completion in user code (#51297)a7a9d15Fix for broken baseline in yieldInForInInDownlevelGenerator (#51345)7f8426ffix for-in enumeration containing yield in generator (#51295)See More
3d2b401Fix assertion functions accessed via wildcard imports (#51324)64d0d5afix(51301): Fixing an unused import at the end of a line removes the newline (#51320)754eeb2Update CodeQL workflow and configuration, fix found bugs (#51263)d8aad26Update package-lock.jsond4f26c8fix(51245): Class with parameter decorator in arrow function causes "convert to default export" refactoring failure (#51256)16faf45Update package-lock.json8b1ecdbfix(50654): "Move to a new file" breaks the declaration of referenced variable (#50681)170a17fDom update 2022-10-25 (#51300)9c4e14dRemove "No type information for this code" from baseline (#51311)88d25b4fix(50068): Refactors trigger debug failure when JSX text has a ' and a tag on the same line. (#51299)8bee69aUpdate package-lock.json702de1eFix early call to return/throw on generator (#51294)2c12b14Add a GH Action to file a new issue if we go a week without seeing a typescript-error-deltas issue (#51271)6af270dUpdate package-lock.json2cc4c16Update package-lock.json6093491Fix apparent typo in getStringMappingType (#51248)61c2609Update package-lock.jsonef69116Generate shortestrootDirsmodule specifier instead of first possible (#51244)bbb42f4Fix typo in canWatchDirectoryOrFile found by CodeQL (#51262)a56b254Include 'this' type parameter in isRelatedTo fast path (#51230)3abd351Fix super property transform in async arrow in method (#51240)eed0511Update package-lock.json2625c1fMake the init config category order predictable (#51247)1ca99b3fix(50551): Destructuring assignment with var bypasses "variable is used before being assigned" check (2454) (#50560)3f28fa1Update package-lock.json906ebe4Revert structuredTypeRelatedTo change and fix isUnitLikeType (#51076)8ac4652change type (#51231)245a02cfix(51222): Go-to-definition on return statements should jump to the containing function declaration (#51227)2dff34emarkAliasReferenced should include ExportValue as well (#51219)5ef2634Update package-lock.jsond0f0e35Remove old tslint comments (#51220)85d405aFixed a false positive "await has no effect on the type" diagnostic with mixed generic union (#50833)1f8959ffix: avoid downleveled dynamic import closing over specifier expression (#49663)11066b2Rename internal functions tonarrowTypeBySwitchOnTypeOfandnarrowTypeByInKeyword(#51215)4c9afe8Update package-lock.jsonf25bcb7fix(49196): add jsdoc snippet for interface member functions (#51135)7406ee9fix(51170): Completing an unimplemented property overwrites rest of line (#51175)a1d82fcRemove some unnecessary code discovered by rollup (#51204)0481773LEGO: Merge pull request 5120098c19cbLEGO: Merge pull request 5119013c9b05Update package-lock.json673475eUpdate package-lock.jsonf6cf510Add more tracing to node16/nodenext resolution (#51168)83c5581Update package-lock.jsonbe5f0feAdd an extra regression test for awaited unresolvable recursive union (#51167)2cb7e77fix(50416): correctly names disabled export refactors (#50663) [ #50416 ]2bcfed0feat(37440): Provide a quick-fix for non-exported types (#51038)a24201cRemove VSDevMode.ps1 and createPlaygroundBuild (#51166)2da62a7fix(51112): omit parameter names that precede the type (#51142)cf1b6b7feat(51163): show QF to fill in the missing properties for the mapped type. (#51165)bdcc240Remove bug-causing carve-out in conditional type instantiation that hopefully is no longer required (#51151)37317a2Check nested weak types in intersections on target side of relation (#51140)9f49f9cUpdate package-lock.json4f54e7eFix isExhaustiveSwitchStatement to better handle circularities (#51095)503604cOverloads shouldn't gain @deprecated tags of other overloads in quick info (#50904)e14a229Update package-lock.json67256e5Remove unused declarations array in extractSymbol's TargetRange (#51091)9c87dedfix(51100): ensure tsserver shuts down when parent process is killed (#51107)c01ae01Fix nightly publish oops in Gulpfile (#51131)a7d10f1Update package-lock.jsond0bfd8cfix(51072): ts.preProcessFile finds import in template string after conditional expression with template strings (#51082)ad56b5cConvert scripts/Gulpfile to checked mjs/cjs so they can run without compilation (#50988)dbeae5dfix(51017): Make lineText in the references response opt-out (#51081)d06a592Properly defer resolution of mapped types with genericasclauses (#51050)42b1049Update package-lock.json5f3e6ccPlugin probe location is higher priority than peer node_modules (#51079) [ #34616 ]2648f6aPlugins in project were adding up after every config file reload (#51087)c18791cFix incorrect options type to WatchOptions (#51064)b0795e9Update package-lock.json43c6fd4Covert some of the config testing to baselines for easy validation (#51063)fc5e72bRemove unused defaultWatchFileKind method since useFsEvents is default for tsserver and tsc (#51044)8af9a93Use typescript.d.ts in APISample tests (#51061)4953316Remove configureLanguageServiceBuild, instrumenter (#51048)9dfffd0Update GitHub Actions (#51045)4635a5cUpdate package-lock.json33a34e5Adding a JSDoc comment to the es5 type declarations to describe the functionality of Date.now() (#50630)299745cFix crash in goto-def on@override(#51016)7dcf11ffix(50750): Object type literal with string literal property in contextual typing position causes language service error on all literal type references (#50757)5cd49f6Update package-lock.json8a1b858Update package-lock.json96894dbInclude type parameter defaults in contextual typing (#50994) [ #51002 ]0d0a793Allow Unicode extended escapes in ES5 and earlier (#50918)58bae8dUpdate package-lock.json0ce72efAdd option to OrganizeImports for removal only (#50931)42f9143feat: codefix forfor await of(#50623)ecf50e8Properly computeSymbolFlags.Optionalfor intersected properties (#50958)d1586deFully resolve aliases when checking symbol flags (#50853)45148ddUpdate LKG to 4.8.4 (#50987)9a83f25Update package-lock.json865848fFix<=and>comparisons when compared against prerelease versions (#50915)fbfe934Fix comparability between type parameters related by a union constraint (#50978)b09e93dMerge pull request #50041 from microsoft/fix/479690ac12bbUpdate package-lock.json8192d55Pick correct compilerOptions when checking if we can share emitSignatures (#50910) [ #50902 ]16faef1During uptodate ness check with buildInfo, check if there are errors explicitly with noEmit (#50974) [ #50959 ]63791f5Update package-lock.json09368bcHandle if project for open file will get recollected because of pending cleanup from closed script info (#50908) [ #50868 ]c81bf4dfix(49594): Typescript 4.7.3 bracketed class property compilation error strictPropertyInitialization:true (#49619)bc9cbbeMerge pull request #49912 from microsoft/fix/475085a10f46Update package-lock.json8e71f42Fixing pr commentsc100c64Update package-lock.json2a91107Update package-lock.json4ab9e76Use paths in package.json 'files' array that work with npm 6 and later. (#50930)549b542Use paths in package.json 'files' array that work with npm 6 and later.7f37d25Update version to 4.9.1-beta and LKG.f16ca7dRemove 'async' dependency, used only in errorCheck.ts, modernize file (#50667)c6bef3fLEGO: Merge pull request 509216753027Update package-lock.json9740bccPluralizedhasInvalidatedResolution->hasInvalidatedResolutions(#50912)84c29cd🤖 Pick PR #50912 (Pluralized `hasInvalidatedResolutio...) into release-4.9 (#50913)a26f634Merge remote-tracking branch 'origin/main' into release-4.9a455955Make hasInvalidatedResolution non internal for program and add it watchApi (#50776) [ #48057 ]645d1cdFix assert in addIndirectUser in FAR (#50905)bbec17dLEGO: Merge pull request 50900a9ecc67Update package-lock.json221cf55package.jsonexportsshould have priority overtypesVersions(#50890)acb8977Remove .github/tsc.json (#50664)7a3de81fix(49993): skip the quick fix for an expression with an enum type (#50625)2644f28fix(49200): skip duplicated method declarations (#50609)98652a3Bump version to 4.9.0-beta and LKG.4d91204fix(37030): Expand Selection in function and arrow function skips body block (#50711)e2dd508DOM update 2022/09/21 (#50884)1d9ab83fix(50866): emit modifiers from exportConfiguration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.