chore(deps): update all non-major dependencies #68
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.15.31
^10.1.0
->^10.1.1
10.8.0
->10.12.1
^2.12.1
->^2.13.0
^8.4.0
->^8.5.0
^0.28.2
->^0.28.5
^2.26.5
->^2.31.1
^3.1.1
->^3.2.3
Release Notes
antfu-collective/bumpp (bumpp)
v10.1.1
Compare Source
🐞 Bug Fixes
View changes on GitHub
pnpm/pnpm (pnpm)
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.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.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.wevm/viem (viem)
v2.31.1
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! - ZKsync Extension: Fixed default data value.v2.29.4
Compare Source
Patch Changes
61d8df4c205bef20e6d141d2f809665128737a5d
Thanks @jxom! - Fixed parsing of zeroish nonces onparseTransaction
.#3654
256a81b4e154c7f03ad4d5b2b8dcfa6f61c32f08
Thanks @lucasloisp! - Updated dependencies.v2.29.3
Compare Source
Patch Changes
#3639
54d5114f7fbdfa4e866f16d8f1fa5ee851bc9979
Thanks @izayl! - Addedaccount
parameter to multicall.ba718e23e3e19a064abc35e31234b7759b0d1b6e
Thanks @jxom! - Fixed ERC-7677paymasterService
capability types.v2.29.2
Compare Source
Patch Changes
#3635
1fab6bb67fef1d274fa947ea9b088cf1285ccd1e
Thanks @joroshiba! - Added Flame mainnet chain.786d95e067918520dbf183e32f6ff391bac4afe2
Thanks @jxom! - Experimental: Updated EIP-7895 to latest spec.#3637
636c7bde0bea5877202107affe539a7a4577fc0c
Thanks @deodad! - Hardened address validation invalidateSiweMessage
.v2.29.1
Compare Source
Patch Changes
#3631
1a49c75e44552c3bbb37f165adbb512fff0ed81b
Thanks @cruzdanilo! - Added support forblockOverrides
oncall
.#3625
c8b6a18a229c8fc7137dfee67cd805c0d6c4f01f
Thanks @alien-max! - Added arenaz chain.#3632
31cdcda9383cb880bbe2e63852c5c881f12d1a02
Thanks @zainbacchus! - UpdateddisputeGameFactory
contract for World Sepolia.f3ec11e0688e57953b48628dde34a23ad9b4a01b
Thanks @jxom! - Added./experimental/erc7895
topackage.json#exports
.#3623
5cf857b6d2f1e25b635626c0e3056dc769bbf75d
Thanks @aaronmgdr! - Celo: UpdatedCeloBlock
&CeloRpcBlock
types.v2.29.0
Compare Source
Minor Changes
#3621
cede184b5ed9519ce8538bd9e99db4961d531798
Thanks @jxom! - Experimental: AddedaddSubAccount
Action as per ERC-7895.#3619
4563ed5147f13c679043fae30d955b7a72cfc60f
Thanks @jxom! - Experimental: Added capabilities for theconnect
Action:unstable_addSubAccount
: Adds a sub-account to the connected account. See more.unstable_getSubAccounts
: Returns all sub-accounts of the connected account. See more.unstable_signInWithEthereum
: Connect + Authenticate using Sign-In with Ethereum.See more.#3619
4563ed5147f13c679043fae30d955b7a72cfc60f
Thanks @jxom! - Experimental: Addedconnect
+disconnect
Actions as per ERC-7836: Wallet Connection API (wallet_connect
).Patch Changes
da3a50f01b8383c2c6023a57806aae0fb6e6e585
Thanks @fubhy! - UpdatedwatchBlocks
to also work from genesis blocks usingemitMissed
.v2.28.4
Compare Source
Patch Changes
804187c8c8b48654605f47e4383a57ec66a21064
Thanks @jxom! - Added typed EIP-5792 capabilities.v2.28.3
Compare Source
Patch Changes
6cc31bbc87c788b0ccad15ab648e467222ae9105
Thanks @jxom! - PassedchainId
towallet_getCapabilities
.v2.28.2
Compare Source
Patch Changes
#3600
198504d07507e9ece02f00241a567bec43eae38a
Thanks @TateB! - Addedtype
parameter tosendTransaction
.#3607
e39d6c1ea4a54866bfeb7eadb445598d20033798
Thanks @Ryan-Adami! - Updated Fraxtal and Fraxtal testnet native currency to FRAX.v2.28.1
Compare Source
Patch Changes
982e2cadbe8647fbe59108080b5cb13327cbfbaa
Thanks @jxom! - Added assertion for signature length in signature validation.#3596
4b960104bd5bd3b277fc697a11dd0b7ff01be065
Thanks @tech-memecore! - Added MemeCore mainnet and testnet.#3599
4bbab5f3e88268b8a4138460a4701ee3eb07adb8
Thanks @Yutaro-Mori-eng! - Added Shardeum mainnet.v2.28.0
Compare Source
Minor Changes
#3580
6aa70af8324612d8aeb0bb15ebe9d7b6d1688f4a
Thanks @jxom! - Account Abstraction: Added support for EIP-7702 Authorizations on User Operations.#3580
6aa70af8324612d8aeb0bb15ebe9d7b6d1688f4a
Thanks @jxom! - Account Abstraction: Added support for EntryPoint 0.8.#3592
e88edb2087ad31cf80ceb04549c12fb2cb46b62f
Thanks @jxom! - Stabilized EIP-5792 (moved out of experimental).Patch Changes
573e7d70ec3a58c2bd395f47987422a5ab6d0475
Thanks @RobbyUitbeijerse! - Added ERC-1155 export.v2.27.3
Compare Source
Patch Changes
#3581
bb9398a43ebbb8d9af52832a845c0ebe19495a2e
Thanks @Yutaro-Mori-eng! - Added Gunz Mainnet.#3588
0098740f4930a80744efc218303fb986f961d4db
Thanks @talentlessguy! - Updated noble dependencies.v2.27.2
Patch Changes
#3570
a9f33168c0c11ade302bd66373c57c1e2386e2bd
Thanks @manuelbarbas! - Updated SKALE Network Chains.#3579
295e4f9e1a8aab79f88f8e59c4d5e7ac25def1ae
Thanks @jxom! - Account Abstraction: MadetoCoinbaseSmartWallet
prefersignTypedData
on owners.#3571
b43af337761520f9c4d616d05387e5aae9473348
Thanks @gr-akshaya! - Added Core Blockchain Testnet details#3568
2ad4736e25ddfe8f4ad3f4d031440f6e72f912e2
Thanks @Markeljan! - Fixed Metis & Metis Sepolia rpcUrls config#3567
f28503e0f96f14bc0c75b56d92bf08a00c70f490
Thanks @Markeljan! - Fixed Newton chain rpc url typov2.27.0
Compare Source
Minor Changes
e06a46a732d075f3a0d3bca916f82f39ee9d4344
Thanks @adraffy! - Added support for ENSIP-21: Batch Gateway Offchain Lookup Protocol.Patch Changes
#3564
f22fe5ac63a4e403949fe301f548f28ac0c1a070
Thanks @abs3ntdev! - Added Tron Shasta network#3561
8053048eaac6d3ad8e800742681ac27cbd8ed18a
Thanks @menefrego15! - Added multicall3 contract to Hoodi chain151e8944cd2eb2eb742dc84e566e886d0d638d3b
Thanks @jxom! - Fixed ERC-7739signMessage
domain to not include salt.#3565
542371cce67fa2bb2730e24a267629f4a2e89520
Thanks @foxtrotravi! - Added Lestnet chain.4ba1a41f6b309d4d77236b073eb5b9da0f6330f5
Thanks @jxom! - FixedgetCallsStatus
failure status codes.vitest-dev/vitest (vitest)
v3.2.3
Compare Source
🚀 Features
🐞 Bug Fixes
expect.any
return type - by @sheremet-va in https://github.com/vitest-dev/vitest/issues/8129 (47514)process.send()
- by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/8125 (dfe81)View changes on GitHub
v3.2.2
Compare Source
🚀 Features
🐞 Bug Fixes
createTesters
call on the main thread - by @sheremet-va in https://github.com/vitest-dev/vitest/issues/8101 (142c7)vitest-browser-*
packages - by @sheremet-va in https://github.com/vitest-dev/vitest/issues/8103 (247ef)toEqual
- by @dubzzz in https://github.com/vitest-dev/vitest/issues/8094 (02ec8)dot
reporter to work in non interactive terminals - by @bstephen1 and @AriPerkkio in https://github.com/vitest-dev/vitest/issues/7994 (6db9f)View changes on GitHub
v3.2.1
Compare Source
🐞 Bug Fixes
DeeplyAllowMatchers
- by @sheremet-va in https://github.com/vitest-dev/vitest/issues/8078 (30ab4)View changes on GitHub
v3.2.0
Compare Source
v3.1.4
Compare Source
v3.1.3
Compare Source
🐞 Bug Fixes
inline: true
is set - by @sheremet-va in https://github.com/vitest-dev/vitest/issues/7856 (a83f3)--merge-reports
to show each total run times - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/7877 (d613b)View changes on GitHub
v3.1.2
Compare Source
🚀 Features
🐞 Bug Fixes
chai
variable invitest/globals
(fix: #7474) - by @Jay-Karia in https://github.com/vitest-dev/vitest/issues/7771 and https://github.com/vitest-dev/vitest/issues/7474 [(d9297)](https://redirect.github.com/vitest-dev/vConfiguration
📅 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.