Open
Conversation
817599f to
aa5f05c
Compare
ca9f7e9 to
aa35487
Compare
bfaf390 to
09ff673
Compare
122501f to
2540cbe
Compare
5c715f4 to
57fe0e7
Compare
6294ab3 to
bec3d57
Compare
bec3d57 to
2a12169
Compare
822ffa7 to
d27338f
Compare
6e3b27b to
75c5a53
Compare
fee0f06 to
d84c18a
Compare
61e7022 to
1030d3f
Compare
1030d3f to
1dea2bd
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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:
9.39.1→9.39.24.7.0→4.7.10.27.0→0.27.39.39.1→9.39.229.1.0→29.15.05.5.4→5.5.53.6.2→3.8.129.4.5→29.4.68.47.0→8.56.0Release Notes
eslint/eslint (@eslint/js)
v9.39.2Compare Source
ianvs/prettier-plugin-sort-imports (@ianvs/prettier-plugin-sort-imports)
v4.7.1Compare Source
What's Changed
Fixes
Dependencies
Docs
New Contributors
Full Changelog: IanVS/prettier-plugin-sort-imports@v4.7.0...v4.7.1
evanw/esbuild (esbuild)
v0.27.3Compare Source
Preserve URL fragments in data URLs (#4370)
Consider the following HTML, CSS, and SVG:
index.html:icons.css:triangle.svg:The CSS uses a URL fragment (the
#x) to reference theclipPathelement in the SVG file. Previously esbuild's CSS bundler didn't preserve the URL fragment when bundling the SVG using thedataurlloader, which broke the bundled CSS. With this release, esbuild will now preserve the URL fragment in the bundled CSS:Parse and print CSS
@scoperules (#4322)This release includes dedicated support for parsing
@scoperules in CSS. These rules include optional "start" and "end" selector lists. One important consequence of this is that the local/global status of names in selector lists is now respected, which improves the correctness of esbuild's support for CSS modules. Minification of selectors inside@scoperules has also improved slightly.Here's an example:
Fix a minification bug with lowering of
for await(#4378, #4385)This release fixes a bug where the minifier would incorrectly strip the variable in the automatically-generated
catchclause of loweredfor awaitloops. The code that generated the loop previously failed to mark the internal variable references as used.Update the Go compiler from v1.25.5 to v1.25.7 (#4383, #4388)
This PR was contributed by @MikeWillCook.
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)
v9.39.2Compare Source
jest-community/eslint-plugin-jest (eslint-plugin-jest)
v29.15.0Compare Source
Features
allowOptionalChainingis false (#1934) (3f5751e)v29.14.0Compare Source
Features
v29.13.0Compare Source
Features
29.12.2 (2026-02-03)
Bug Fixes
29.12.1 (2026-01-02)
Bug Fixes
anyandunknowntypes (#1918) (388a36c)v29.12.2Compare Source
Bug Fixes
v29.12.1Compare Source
Bug Fixes
anyandunknowntypes (#1918) (388a36c)v29.12.0Compare Source
Features
29.11.4 (2025-12-30)
Bug Fixes
29.11.3 (2025-12-30)
Bug Fixes
29.11.2 (2025-12-29)
Bug Fixes
29.11.1 (2025-12-29)
Bug Fixes
jest.mocked(...)(#1862) (3a50b97)v29.11.4Compare Source
Bug Fixes
v29.11.3Compare Source
Bug Fixes
v29.11.2Compare Source
Bug Fixes
v29.11.1Compare Source
Bug Fixes
jest.mocked(...)(#1862) (3a50b97)v29.11.0Compare Source
Features
prefer-mock-return-shorthandrule (#1897) (0eb94b6)29.10.1 (2025-12-22)
Bug Fixes
it.todo(#1896) (5511258)v29.10.1Compare Source
Features
prefer-mock-return-shorthandrule (#1897) (0eb94b6)29.10.1 (2025-12-22)
Bug Fixes
it.todo(#1896) (5511258)v29.10.0Compare Source
Features
prefer-mock-return-shorthandrule (#1897) (0eb94b6)29.10.1 (2025-12-22)
Bug Fixes
it.todo(#1896) (5511258)v29.9.0Compare Source
Features
toBeNaNtoo (#1890) (1dd5e5d)v29.8.0Compare Source
Features
valid-expect-with-promiserule (#1888) (753e5bb)v29.7.0Compare Source
Features
no-error-equalrule (#1886) (930edc4)29.6.1 (2025-12-22)
Bug Fixes
resolveandrejectchains (for now) (#1887) (64a5f0c)v29.6.1Compare Source
Features
no-error-equalrule (#1886) (930edc4)29.6.1 (2025-12-22)
Bug Fixes
resolveandrejectchains (for now) (#1887) (64a5f0c)v29.6.0Compare Source
Features
no-error-equalrule (#1886) (930edc4)29.6.1 (2025-12-22)
Bug Fixes
resolveandrejectchains (for now) (#1887) (64a5f0c)v29.5.0Compare Source
Features
no-unneeded-async-expect-functionrule (#1863) (6b8182d)29.4.1 (2025-12-14)
Bug Fixes
toHaveLength(#1878) (3415744)v29.4.1Compare Source
Features
no-unneeded-async-expect-functionrule (#1863) (6b8182d)29.4.1 (2025-12-14)
Bug Fixes
toHaveLength(#1878) (3415744)v29.4.0Compare Source
Features
prefer-to-have-been-called-timesrule (281085a)prefer-to-have-been-calledrule (24e2acd)v29.3.0Compare Source
Features
hasAssertionsinbeforeEachandafterEachhooks (#1871) (eed9acb)29.2.3 (2025-12-13)
Bug Fixes
29.2.2 (2025-12-12)
Bug Fixes
export =usage (#1870) (9d90466)29.2.1 (2025-11-23)
Bug Fixes
ERR_PACKAGE_PATH_NOT_EXPORTEDerrors (#1860) (6cd4e89)v29.2.3Compare Source
Bug Fixes
v29.2.2Compare Source
Bug Fixes
export =usage (#1870) (9d90466)v29.2.1Compare Source
Bug Fixes
ERR_PACKAGE_PATH_NOT_EXPORTEDerrors (#1860) (6cd4e89)v29.2.0Compare Source
Features
valid-mock-module-pathrule (#1845) (a8625f1)prettier/eslint-plugin-prettier (eslint-plugin-prettier)
v5.5.5Compare Source
Patch Changes
#772
7264ed0Thanks @BPScott! - Bump prettier-linter-helpers dependency to v1.0.1#776
77651a3Thanks @aswils! - fix: bump synckit for yarn PnP ESM issueprettier/prettier (prettier)
v3.8.1Compare Source
v3.8.0Compare Source
diff
🔗 Release note
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
kulshekhar/ts-jest (ts-jest)
v29.4.6Compare Source
Bug Fixes
typescript-eslint/typescript-eslint (typescript-eslint)
v8.56.0Compare Source
🚀 Features
❤️ Thank You
See GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
v8.55.0Compare Source
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
See GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
v8.54.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.53.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.53.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.52.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.51.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.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.
Configuration
📅 Schedule: Branch creation - "after 4am on saturday" (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.