fix(deps): update npm - - package.json #1307
Open
+806
−1,484
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:
^3.940.0->^3.957.0^0.27.0->^0.27.2^0.27.0->^0.27.20.27.0->0.27.20.27.0->0.27.2^9.39.1->^9.39.2^19.21.0->^19.21.1^5.0.5->^5.0.6^4.17.20->^4.17.21^22.19.1->^22.19.3^13.15.9->^13.15.10^5.1.1->^5.1.2^15.6.0->^15.8.1^9.39.1->^9.39.2^5.1.0->^5.2.1^4.3.0->^4.5.2^1.35.0->^1.36.1^9.0.2->^9.0.3^16.2.6->^16.2.7^3.6.2->^3.7.4^4.20.6->^4.21.0^8.46.4->^8.50.1^13.15.23->^13.15.26^7.1.9->^7.3.0Release Notes
aws/aws-sdk-js-v3 (@aws-sdk/credential-providers)
v3.957.0Compare Source
3.957.0(2025-12-22)
Chores
Documentation Changes
New Features
Bug Fixes
For list of updated packages, view updated-packages.md in assets-3.957.0.zip
v3.956.0Compare Source
3.956.0(2025-12-19)
Chores
Documentation Changes
New Features
Bug Fixes
For list of updated packages, view updated-packages.md in assets-3.956.0.zip
v3.955.0Compare Source
3.955.0(2025-12-18)
Chores
New Features
For list of updated packages, view updated-packages.md in assets-3.955.0.zip
v3.954.0Compare Source
Note: Version bump only for package @aws-sdk/credential-providers
v3.953.0Compare Source
Features
v3.952.0Compare Source
Bug Fixes
evanw/esbuild (@esbuild/darwin-arm64)
v0.27.2Compare Source
Allow import path specifiers starting with
#/(#4361)Previously the specification for
package.jsondisallowed import path specifiers starting with#/, but this restriction has recently been relaxed and support for it is being added across the JavaScript ecosystem. One use case is using it for a wildcard pattern such as mapping#/*to./src/*(previously you had to use another character such as#_*instead, which was more confusing). There is some more context in nodejs/node#49182.This change was contributed by @hybrist.
Automatically add the
-webkit-maskprefix (#4357, #4358)This release automatically adds the
-webkit-vendor prefix for themaskCSS shorthand property:This change was contributed by @BPJEnnova.
Additional minification of
switchstatements (#4176, #4359)This release contains additional minification patterns for reducing
switchstatements. Here is an example:Forbid
usingdeclarations insideswitchclauses (#4323)This is a rare change to remove something that was previously possible. The Explicit Resource Management proposal introduced
usingdeclarations. These were previously allowed insidecaseanddefaultclauses inswitchstatements. This had well-defined semantics and was already widely implemented (by V8, SpiderMonkey, TypeScript, esbuild, and others). However, it was considered to be too confusing because of how scope works in switch statements, so it has been removed from the specification. This edge case will now be a syntax error. See tc39/proposal-explicit-resource-management#215 and rbuckton/ecma262#14 for details.Here is an example of code that is no longer allowed:
That code will now have to be modified to look like this instead (note the additional
{and}block statements around each case body):This is not being released in one of esbuild's breaking change releases since this feature hasn't been finalized yet, and esbuild always tracks the current state of the specification (so esbuild's previous behavior was arguably incorrect).
v0.27.1Compare Source
Fix bundler bug with
varnested insideif(#4348)This release fixes a bug with the bundler that happens when importing an ES module using
require(which causes it to be wrapped) and there's a top-levelvarinside anifstatement without being wrapped in a{ ... }block (and a few other conditions). The bundling transform needed to hoist thesevardeclarations outside of the lazy ES module wrapper for correctness. See the issue for details.Fix minifier bug with
forinsidetryinside label (#4351)This fixes an old regression from version v0.21.4. Some code was introduced to move the label inside the
trystatement to address a problem with transforming labeledfor awaitloops to avoid theawait(the transformation involves converting thefor awaitloop into aforloop and wrapping it in atrystatement). However, it introduces problems for cross-compiled JVM code that uses all three of these features heavily. This release restricts this transform to only apply toforloops that esbuild itself generates internally as part of thefor awaittransform. Here is an example of some affected code:Inline IIFEs containing a single expression (#4354)
Previously inlining of IIFEs (immediately-invoked function expressions) only worked if the body contained a single
returnstatement. Now it should also work if the body contains a single expression statement instead:The minifier now strips empty
finallyclauses (#4353)This improvement means that
finallyclauses containing dead code can potentially cause the associatedtrystatement to be removed from the output entirely in minified builds:Allow tree-shaking of the
SymbolconstructorWith this release, calling
Symbolis now considered to be side-effect free when the argument is known to be a primitive value. This means esbuild can now tree-shake module-level symbol variables:eslint/eslint (@eslint/js)
v9.39.2Compare Source
primer/octicons (@primer/octicons-react)
v19.21.1Compare Source
Patch Changes
97cefc9fThanks @dependabot! - Bump js-yaml from 3.13.1 to 4.1.1vitejs/vite-plugin-react (@vitejs/plugin-react)
v5.1.2Compare Source
cypress-io/cypress (cypress)
v15.8.1Compare Source
Changelog: https://docs.cypress.io/app/references/changelog#15-8-1
v15.8.0Compare Source
Changelog: https://docs.cypress.io/app/references/changelog#15-8-0
v15.7.1Compare Source
Changelog: https://docs.cypress.io/app/references/changelog#15-7-1
v15.7.0Compare Source
eslint/eslint (eslint)
v9.39.2Compare Source
dubzzz/fast-check (fast-check)
v4.5.2Compare Source
Attach tarballs to GitHub releases
[Code][Diff]
Fixes
v4.5.1Compare Source
Rename tarballs before publishing
[Code][Diff]
Fixes
v4.5.0Compare Source
Add an arbitrary based on a schema definition
[Code][Diff]
Features
entityGraphfor schema-based structuresentityGraphentityGraphentityGraphentityGraphentityGraphentityGraphFixes
entityGraphdocumentationentityGraphentityGraphinto sub-helpersv4.4.0Compare Source
Expose hidden arbitraries and widen capabilities of existing ones from a typing point of view
[Code][Diff]
Features
PropertyKeyinfc.dictionary(...)fc.maparbitrarycircularoption tofc.letrecfc.setarbitraryletrecFixes
@traversable/zod-testto ecosystemletrecimplementationsletrecLazyArbitraryisomorphic-git/isomorphic-git (isomorphic-git)
v1.36.1Compare Source
Bug Fixes
v1.36.0Compare Source
Features
v1.35.1Compare Source
Bug Fixes
auth0/node-jsonwebtoken (jsonwebtoken)
v9.0.3Compare Source
lint-staged/lint-staged (lint-staged)
v16.2.7Compare Source
Patch Changes
ef74c8dThanks @iiroj! - Do not display a "failed to spawn" error message when a task fails normally. This message is reserved for when the task didn't run because spawning it failed.prettier/prettier (prettier)
v3.7.4Compare Source
diff
LWC: Avoid quote around interpolations (#18383 by @kovsu)
TypeScript: Fix comment inside union type gets duplicated (#18393 by @fisker)
TypeScript: Fix unstable comment print in union type comments (#18395 by @fisker)
v3.7.3Compare Source
diff
API: Fix
prettier.getFileInfo()change that breaks VSCode extension (#18375 by @fisker)An internal refactor accidentally broke the VSCode extension plugin loading.
v3.7.2Compare Source
diff
JavaScript: Fix string print when switching quotes (#18351 by @fisker)
JavaScript: Preserve quote for embedded HTML attribute values (#18352 by @kovsu)
TypeScript: Fix comment in empty type literal (#18364 by @fisker)
v3.7.1Compare Source
diff
API: Fix performance regression in doc printer (#18342 by @fisker)
Prettier 3.7.1 can be very slow when formatting big files, the regression has been fixed.
v3.7.0Compare Source
diff
🔗 Release Notes
privatenumber/tsx (tsx)
v4.21.0Compare Source
typescript-eslint/typescript-eslint (typescript-eslint)
v8.50.1Compare Source
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v8.50.0Compare Source
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v8.49.0Compare Source
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v8.48.1Compare Source
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
v8.48.0Compare Source
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
validatorjs/validator.js (validator)
v13.15.26Compare Source
Fixes, New Locales and Enhancements
isHexColor: addrequire_hashtagoption @Numbers0689isURL: handle possible bypass with URL-encoded content @WikiRikisIBAN: improveIRlocale @ds1371danivitejs/vite (vite)
v7.3.0Compare Source
Please refer to CHANGELOG.md for details.
v7.2.7Compare Source
v7.2.6Compare Source
7.2.6 (2025-12-01)
v7.2.4Compare Source
Bug Fixes
v7.2.3Compare Source
Bug Fixes
bindCLIShortcutscalls with shortcut merging (#21103) (5909efd)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.
👻 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.