chore(deps): update all non-major dependencies #68
+372
−552
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:
^22.14.1
->^22.17.0
^10.1.0
->^10.2.2
10.8.0
->10.14.0
^2.12.1
->^2.13.1
^8.4.0
->^8.5.0
^0.28.2
->^0.28.9
^5.8.3
->^5.9.2
^2.26.5
->^2.33.2
^3.1.1
->^3.2.4
Release Notes
antfu-collective/bumpp (bumpp)
v10.2.2
Compare Source
🐞 Bug Fixes
View changes on GitHub
v10.2.1
Compare Source
🐞 Bug Fixes
View changes on GitHub
v10.2.0
Compare Source
🚀 Features
View changes on GitHub
v10.1.1
Compare Source
🐞 Bug Fixes
View changes on GitHub
pnpm/pnpm (pnpm)
v10.14.0
Compare Source
Minor Changes
Added support for JavaScript runtime resolution
Declare Node.js, Deno, or Bun in
devEngines.runtime
(insidepackage.json
) and let pnpm download and pin it automatically.Usage example:
How it works:
pnpm install
resolves your specified range to the latest matching runtime version.Why this is better:
useNodeVersion
andexecutionEnv.nodeVersion
)executionEnv.nodeVersion
). So, different projects in a workspace can use different runtimes.devEngines.runtime
setting will install the runtime locally, which we will improve in future versions of pnpm by using a shared location on the computer.Related PR: #9755.
Add
--cpu
,--libc
, and--os
topnpm install
,pnpm add
, andpnpm dlx
to customizesupportedArchitectures
via the CLI #7510.Patch Changes
pnpm add
downloads packages whoselibc
differ frompnpm.supportedArchitectures.libc
.dlx
to parse CLI flags and options between thedlx
command and the command to run or between thedlx
command and--
#9719.pnpm install --prod
should removing hoisted dev dependencies #9782.pnpm install
to incorrectly assume the lockfile is up to date after changing a local tarball that has peers dependencies.v10.13.1
Compare Source
Patch Changes
v10.13.0
Compare Source
Minor Changes
Added the possibility to load multiple pnpmfiles. The
pnpmfile
setting can now accept a list of pnpmfile locations #9702.pnpm will now automatically load the
pnpmfile.cjs
file from any config dependency named@pnpm/plugin-*
orpnpm-plugin-*
#9729.The order in which config dependencies are initialized should not matter — they are initialized in alphabetical order. If a specific order is needed, the paths to the
pnpmfile.cjs
files in the config dependencies can be explicitly listed using thepnpmfile
setting inpnpm-workspace.yaml
.Patch Changes
pkg.pr.new
, treat them as Git tarball URLs #9694.dangerouslyAllowAllBuilds
,onlyBuiltDependencies
,onlyBuiltDependenciesFile
, andneverBuiltDependencies
#9628.pnpm-workspace.yaml
with deep #9701.pnpm rebuild
command should not add pkgs included inignoredBuiltDependencies
toignoredBuilds
innode_modules/.modules.yaml
#9338.shell-quote
withshlex
for quoting command arguments #9381.v10.12.4
Compare Source
Patch Changes
Fix
pnpm licenses
command for local dependencies #9583.Fix a bug in which
pnpm ls --filter=not-exist --json
prints nothing instead of an empty array #9672.Fix a deadlock that sometimes happens during peer dependency resolution #9673.
Running
pnpm install
afterpnpm fetch
should hoist all dependencies that need to be hoisted.Fixes a regression introduced in [v10.12.2] by [#9648]; resolves [#9689].
[v10.12.2]: https://redirect.github.com/pnpm/pnpm/releases/tag/v10.12.2Add commentMore actions
[#9648]: https://github.com/pnpm/pnpm/pull/9648
[#9689]: https://github.com/pnpm/pnpm/issues/9689
v10.12.3
Compare Source
Patch Changes
Regression introduced in v10.12.2 by #9648; resolves #9685.
v10.12.2
Compare Source
Patch Changes
enableGlobalVirtualStore
set totrue
#9648.--help
and-h
flags not working as expected for thepnpm create
command.pnpm licenses list --json
command is incorrect.pnpm deploy
fails due to overridden dependencies having peer dependencies causingERR_PNPM_OUTDATED_LOCKFILE
#9595.v10.12.1
Minor Changes
Experimental. Added support for global virtual stores. When enabled,
node_modules
contains only symlinks to a central virtual store, rather tonode_modules/.pnpm
. By default, this central store is located at<store-path>/links
(you can find the store path by runningpnpm store path
).In the central virtual store, each package is hard linked into a directory whose name is the hash of its dependency graph. This allows multiple projects on the system to symlink shared dependencies from this central location, significantly improving installation speed when a warm cache is available.
To enable the global virtual store, set
enableGlobalVirtualStore: true
in your rootpnpm-workspace.yaml
, or globally via:NOTE: In CI environments, where caches are typically cold, this setting may slow down installation. pnpm automatically disables the global virtual store when running in CI.
Related PR: #8190
pnpm update
command now supports updatingcatalog:
protocol dependencies and writes new specifiers topnpm-workspace.yaml
.--save-catalog
and--save-catalog-name=<name>
) topnpm add
to save new dependencies as catalog entries.catalog:
orcatalog:<name>
will be added topackage.json
and the package specifier will be added to thecatalogs
orcatalog[<name>]
object inpnpm-workspace.yaml
#9425.ci
for explicitly telling pnpm if the current environment is a CI or not.Patch Changes
pnpm patch
using semantic versioning rules.v10.11.1
Compare Source
Patch Changes
pnpm deploy --legacy
creates unexpected directories when the rootpackage.json
has a workspace package as a peer dependency #9550.strictPeerDependencies
istrue
but all issues are ignored bypeerDependencyRules
#9505.pnpm_config_
env variables instead ofnpm_config_
#9571.--lockfile-only
flag onpnpm update
to produce a differentpnpm-lock.yaml
than an update without the flag.pnpm deploy
work in repos withoverrides
wheninject-workspace-packages=true
#9283.pnpm -r --silent run
should not print out section #9563.v10.11.0
Compare Source
Minor Changes
A new setting added for
pnpm init
to create apackage.json
withtype=module
, wheninit-type
ismodule
. Works as a flag for the init command too #9463.Added support for Nushell to
pnpm setup
#6476.Added two new flags to the
pnpm audit
command,--ignore
and--ignore-unfixable
#8474.Ignore all vulnerabilities that have no solution:
> pnpm audit --ignore-unfixable
Provide a list of CVE's to ignore those specifically, even if they have a resolution.
> pnpm audit --ignore=CVE-2021-1234 --ignore=CVE-2021-5678
Added support for recursively running pack in every project of a workspace #4351.
Now you can run
pnpm -r pack
to pack all packages in the workspace.Patch Changes
dangerouslyAllowAllBuilds
is set totrue
#9472.pnpm link
should work from inside a workspace #9506.workspaceConcurrency
toMath.min(os.availableParallelism(), 4)
#9493.strictPeerDependencies
istrue
but all issues are ignored bypeerDependencyRules
#9505.updateConfig
frompnpm-workspace.yaml
#9500.recursive pack
url.parse
usage to fix warning on Node.js 24 #9492.pnpm run
should be able to run commands from the workspace root, ifignoreScripts
is set tottrue
#4858.v10.10.0
Compare Source
Minor Changes
preResolution
,importPackage
, andfetchers
hooks from local pnpmfile.Patch Changes
cd
command, whenshellEmulator
istrue
#7838.pnpm-workspace.yaml
#9453.npm_package_json
environment variable to the executed scripts #9452.--reporter=silent
option.v10.9.0
Compare Source
Minor Changes
Added support for installing JSR packages. You can now install JSR packages using the following syntax:
or with a version range:
For example, running:
will add the following entry to your
package.json
:When publishing, this entry will be transformed into a format compatible with npm, older versions of Yarn, and previous pnpm versions:
Related issue: #8941.
Note: The
@jsr
scope defaults to https://npm.jsr.io/ if the@jsr:registry
setting is not defined.Added a new setting,
dangerouslyAllowAllBuilds
, for automatically running any scripts of dependencies without the need to approve any builds. It was already possible to allow all builds by adding this topnpm-workspace.yaml
:dangerouslyAllowAllBuilds
has the same effect but also allows to be set globally via:It can also be set when running a command:
Patch Changes
verifyDepsBeforeRun
whennodeLinker
ishoisted
and there is a workspace package without dependencies andnode_modules
directory #9424.verifyDepsBeforeRun
support fornodeLinker: pnp
. CombiningverifyDepsBeforeRun
andnodeLinker: pnp
will now print a warning.v10.8.1
Compare Source
Patch Changes
package.json
,onlyBuiltDependencies
will be written topnpm-workspace.yaml
file #9404.toplenboren/simple-git-hooks (simple-git-hooks)
v2.13.1
Compare Source
Patch Changes
#128
2ad5514
Thanks @OlofFredriksson! - fix: postinstall should ignore adding hooks if SKIP_INSTALL_SIMPLE_GIT_HOOKS is defined#130
1abdcd7
Thanks @cexoso! - fix: only get localcoore.hooksPath
configv2.13.0
Compare Source
Minor Changes
#121
d9d7823
Thanks @chouchouji! - feat: only remove some hooks that are not inpreserveUnused
option#125
8486a22
Thanks @nathanwhit! - feat: supportdeno
'snode_modules
structure#127
8bb9818
Thanks @yyz945947732! - feat: optimize the migration experience fromhusky
egoist/tsup (tsup)
v8.5.0
Compare Source
🚀 Features
fix-dts-default-cjs-exports
to transform CJS types - by @userquin in https://github.com/egoist/tsup/issues/1310 (c654e)🐞 Bug Fixes
removeNodeProtocol
work withshims
- by @aryaemami59 (769aa)View changes on GitHub
TypeStrong/TypeDoc (typedoc)
v0.28.9
Compare Source
Features
Bug Fixes
v0.28.8
Compare Source
Features
plugin
function can now be given plugin functions to load.-
within tag names to supporttypescript-json-schema
's@TJS-type
tag, #2972.Context.createSymbolId
for use by plugins.Bug Fixes
<img srcset>
will now be discovered by TypeDoc, #2975.<source src>
and<source srcset>
elements will now be discovered by TypeDoc, #2975.Thanks!
v0.28.7
Compare Source
Features
@sortStrategy
tag to override thesort
option on a specific reflection, #2965.Bug Fixes
export { type X }
are no longer missing comments, #2970.locale
to an unknown value will now cause TypeDoc to operate in English instead of a debug locale.v0.28.6
Compare Source
Features
Bug Fixes
export { type X }
are now detected and converted as interfaces/type aliases, #2962.Thanks!
v0.28.5
Compare Source
Bug Fixes
ignoredHighlightLanguages
can now be used to prevent warnings for codeblocks containing languageswhich are supported by Shiki but are not loaded, #2956.
v0.28.4
Compare Source
Features
Bug Fixes
The
chevronSmall
helper is now deprecated and will be removed with v0.29.0.@hidden
will no longer appear in the"Hierarchy" section of the docs.
Thanks!
v0.28.3
Compare Source
Bug Fixes
@inline
now functions when referencing tuple types, #2932.@link
links to the current page are now rendered, #2934.@includeCode
now supports regions in TypeScript files with.mts
and.cts
file extensions, #2935.microsoft/TypeScript (typescript)
v5.9.2
Compare Source
wevm/viem (viem)
v2.33.2
Compare Source
Patch Changes
#3821
97d1eaa8326676652baa41bf534d3e3061f4acf9
Thanks @aaronmgdr! - Added Celo Sepolia chain.#3817
2fa22da5fc5f961f94cdd971e62116c468f98fc9
Thanks @coffeexcoin! - ZKsync: AddedgetGasPerPubdata
Action.58cc43ca6590468bc6ae8f99df8790fb1650fad2
Thanks @jxom! - Added `throwOnFailure` to `waitForCallsStatus`.#3806
d3ef08ec85ff17db53144b4bb9a7bab6a9e71558
Thanks @jeanregisser! - Account Abstraction: AddedtoUserOperation
utility to convertPackedUserOperation
toUserOperation
.v2.33.1
Compare Source
Patch Changes
#3814
4751e43e9c7b88de415f89a9d606d972104386b9
Thanks @b-tarczynski! - AddblockTime
to Arbitrum chains.#3811
95f2d44d0eca10714f96f965ba4001981be80696
Thanks @Yutaro-Mori-eng! - Added reddio mainnet.#3813
9a0ffe6e40e4d93d10721d8e90df27c989554461
Thanks @emrahsky! - Added Areum chain.#3824
86933772868c24bd491807869b4d51c205be6236
Thanks @smartcontracts! - OP Stack: FixedgetWithdrawalStatus
for Upgrade 16.v2.33.0
Compare Source
Minor Changes
#3810
d02d1faaeb8d59edff0c2bdd714a08a9428c5419
Thanks @jxom! - Experimental: Addedexperimental_blockTag
config option to the Client.This will be used as the default block tag for the following actions:
call
estimateGas
getBalance
getBlock
simulateBlocks
waitForTransactionReceipt
watchBlocks
#3810
d02d1faaeb8d59edff0c2bdd714a08a9428c5419
Thanks @jxom! - Experimental: Added anexperimental_preconfirmationTime
property to the Chain configuration for chains that support pre-confirmations (e.g. "Flashblocks").#3808
3fd9761a793c5e3b206b2381c8e145e914cd60e4
Thanks @jxom! - AddedcheckReplacement
parameter towaitForTransactionReceipt
.Patch Changes
66d59c4f9e9a5daede9bc19556cfefa879dcfd62
Thanks @jxom! - AddedbasePreconf
andbaseSepoliaPreconf
chains.v2.32.1
Compare Source
Patch Changes
76140d53636ed40bbb0a91ea8054848e34f71193
Thanks @alvrs! - Fixed reconnection logic for WebSocket clients.v2.32.0
Compare Source
Minor Changes
#3799
32f388b97126f3a30aa2f5c1ec04eae1fb52d23d
Thanks @jxom! - Types (Breaking): Addedversion
property totoCoinbaseSmartAccount
, and addversion: '1.1'
.To migrate to this new type change in a current implementation, add
version: '1'
as a property totoCoinbaseSmartAccount
.Patch Changes
#3792
6051ca36a7beb979e962366c2409307772542ce4
Thanks @rizwanmoulvi! - Added Xphere chain.#3802
6467a91ae2e794a1a6661ae288a82458a2ed651a
Thanks @hinsxdcro! - Updated block explorer url of Cronos Testnet#3796
23403edbc3b47998e912c494b6024f7e2b300d0b
Thanks @cuonghx-dev! - Added Japan Open Chain.#3797
e254f78b48eabbf9c134e0ffeed6fc264b100cae
Thanks @Yutaro-Mori-eng! - Added Plasma Testnet.#3785
1862bfc09cf10a4d3cde7218876058123030843a
Thanks @arongrp! - Added Graphite chainsv2.31.7
Compare Source
Patch Changes
d79fb7ea8274e98911aa4a42190b8810816585cc
Thanks @hazelnutcloud! - Fixed issue where WebSocket subscriptions did not replay on reconnect.v2.31.6
Compare Source
Patch Changes
ceb4dbbd4c8cd858b2d803bcaad1bfe470cbffae
Thanks @jxom! - Fixed narrowing of event args type.v2.31.4
Compare Source
Patch Changes
#3744
4842ee5b46f2b1d7f130a879b7267883365f2d26
Thanks @PaulRBerg! - Added multicall3 to Chiliz and Morph.#3751
ca1e87c70af644dc6b9d5bd498fbc1e171891ca1
Thanks @Iretse! - Fixed inferrence onCalls
type.#3748
e5d6a4b2a5b328830a2e26352f5be888b2e6a511
Thanks @croll83! - Added TAC and TAC SPB Testnet chains.#3745
08566af344c7c5cb3d79c959943ad6aefc89f092
Thanks @emmaodia! - Updated somniaTestnet Multicall3#3750
681208ac89660e730a0f657a265103426f426494
Thanks @Iretse! - Madeipc
reach parity withwebSocket
for action options.#3755
a19f1dd7be9aa73006b03b550ea53c1cfb167600
Thanks @mmv08! - Correctedeth_createAccessList
JSDoc in EIP-1193 types.v2.31.3
Compare Source
Patch Changes
#3736
a4159d7c9ebda462ee88ce9f0ca3a23c5c820057
Thanks @jxom! - Updated Celo blocktime from 2 seconds to 1 second to reflect the actual network block time.#3741
2d7e8fd3b3d6971f0bc3e01df3ab4068490dba1c
Thanks @azf20! - Added dataSuffix tosendCalls
andsimulateBlocks
.v2.31.2
Compare Source
Patch Changes
72cb74da6b605a525c81d94e8d7983c02853d084
Thanks @jxom! - Added support for emptyto
insimulateBlocks
.7ea9e83cbe46dd0a5f0764da043fb4bbbd198f82
Thanks @jxom! - FixedsimulateCalls
incorrectly setting nonce to 0 when usingaccount
parameter.2f66fc1ddb119617ae511cc1cf9e1f637f29f45e
Thanks @jxom! - Updated dependencies.9590a0def13049b7e8467a87b5b34c6f70ced509
Thanks @jxom! - Fixed watchBlocks block number reference to use data.result.number instead of data.blockNumber.ac4f03600bc628bf0d8aa4eda75c2918b9f98143
Thanks @jxom! - Fixed async cleanup handling inobserve
to prevent unhandled promise rejections.v2.31.1
Compare Source
Patch Changes
#3716
4f5d06623a158244bacdc9a0fcf35b504e32d90d
Thanks @mikeki! - Updated BSC Testnet name.#3717
25fcce76c41840390395b1fd86470d938507883a
Thanks @azf20! - Added additional known failure cases for the sendCalls experimental fallback#3722
851890821e3a7ef858d99dac05bb6fb448e31e3d
Thanks @cc7768! - Added Blast OP Stack addresses.v2.31.0
Compare Source
Minor Changes
#3702
b55ec5a6ee448367d3da844303a6f1a5bc71514a
Thanks @jxom! - AddedblockTime
to OP Stack (2s) & ZKsync (1s) chains.#3702
b55ec5a6ee448367d3da844303a6f1a5bc71514a
Thanks @jxom! - AddedblockTime
to theChain
type. Polling intervals are now influenced from this property (if set).Patch Changes
4b8bcc21b919addb1defe4872f7505d7d5bbc645
Thanks @jxom! - Loosened account requirement onsendCalls
.#3695
20b1ed2a08a4728e6b6e20b4e3ce1f2124fef20d
Thanks @ersanyakit! - Added multicall3 to Chiliz chain.#3707
32f30335c785d4a0a790e477ef9b732a3f09dd57
Thanks @jribbink! - AddedblockTime
to Flow chains.530928066db83540e57f8751308ebb2e557a3644
Thanks @jxom! - Fixed issue wheredecodeEventLog
would not check validity of the topic against the signature.v2.30.6
Compare Source
Patch Changes
#3687
96a638da2a9a2e56d0a40238a229d5b2a9d30e9f
Thanks @jgannonjr! - UpdatedWebSocketTransportSubscribe
type.#3681
628e05f8abeee4ecd2280e18d409acc2d29201db
Thanks @ga-reth! - Added Omni chains.f16aa05dce498bb08afa24a8bcfbf49131e0647b
Thanks @jxom! - Reverted 530f0f1.#3688
d88a55b8f41c928767f1cbc2fa82d04e4ca9e3a3
Thanks @jgalat! - Fixed ordering of decoded arguments indecodeEventLog
.v2.30.5
Compare Source
Patch Changes
f618732c28e68883513f5326b824b938b93c6ea5
Thanks @jxom! - PropagatedauthorizationList
property oncall
Action.v2.30.4
Compare Source
Patch Changes
d4f68e5aaafd901cd9ae6b92eb9b398e7b3a92bd
Thanks @jxom! - ZKSync: Fixed zero hash import.v2.30.3
Compare Source
v2.30.2
Compare Source
Patch Changes
#3555
5f5b984682814c7beb4a93579c648e7d1b252ef0
Thanks @danijelTxFusion! - Added support for ZKsync v26, removed support for v25.#3676
930be3d5381f738528cc5b1258319bef1bffdc62
Thanks @awesamarth! - Added RISE Testnet#3672
549dc06baed10f165f6dc9d97d221d310fb6ebe0
Thanks @gil7788! - Deprecated Zircuit Testnet.2e1c02d1f90ef8a8e097c4f0191b10d4268b82d5
Thanks @jxom! - Handled connection errors for Actions that use WebSockets.#3675
77b2704ec90de2a50c3f7991351a1924a5a873d7
Thanks @coshi190! - Updated KUB Chain and JB Chain2e1c02d1f90ef8a8e097c4f0191b10d4268b82d5
Thanks @jxom! - Default topending
block tag forcall
,estimateGas
,simulateBlocks
, and dependent Actions.v2.30.1
Compare Source
Patch Changes
#3660
1bde5ecadbd9f97220a51fee519dbb09f1a940ea
Thanks @ersanyakit! - Updated chiliz RPC URLs.71c424e217ffeca4b2d055619916eaf880deb868
Thanks @jxom! - Updated dependencies.#3671
9ed3cef1c4aea557098bbab8e33ea4f3c1eeddf9
Thanks @frankudoags! - FixedwaitForTransactionReceipt
leak on timeout.v2.30.0
Compare Source
Minor Changes
b9a1ac1673df3e17aba8e1157ac3da32be56018e
Thanks @jxom! - Addedexperimental_fallback
property tosendCalls
for wallets that do not support EIP-5792 (falls back toeth_sendTransaction
).Patch Changes
e20bf3a11782a829b8e1da5051e040624f5d3755
Thanks @jxom! - Fixed non-portable types.#3658
5d9bdabd61a95a22a914c78c242fa9cfbc803ed1
Thanks [@ly0va](https://redirect.githConfiguration
📅 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: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, 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.