fix(deps): update all non-major dependencies #159
Merged
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:
^1.10.0->^1.10.4^8.17.0->^8.19.0^5.3.0->^5.4.1^0.24.0->^0.24.2^9.16.0->^9.17.0^4.5.0->^4.6.1^2.4.1->^2.4.29.14.4->9.15.2^17.10.0->^17.11.0^8.17.0->^8.19.0Release Notes
swc-project/swc (@swc/core)
v1.10.4Compare Source
Bug Fixes
(deps) Update cargo (patch) (#9733) (fb2f6e4)
Remove
Caused by: 'failed to parse'from TS blank space (#9820) (aaeb0ab)v1.10.3Compare Source
Bug Fixes
v1.10.2Compare Source
Bug Fixes
(es) Don't panic when wasm bytecheck faild (#9803) (c81be2e)
(es/parser) Do not parse empty stmt after using decl (#9798) (c2696db)
Documentation
v1.10.1Compare Source
Bug Fixes
Features
module.outFileExtension(#9784) (e04c7b3)typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v8.19.0Compare Source
🚀 Features
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.18.2Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.18.1Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.18.0Compare Source
🚀 Features
🩹 Fixes
toString()declarations are present for a type (#10432)❤️ Thank You
You can read about our versioning strategy and releases on our website.
chalk/chalk (chalk)
v5.4.1Compare Source
navigatornot definedReferenceError(#642)4ebb62dv5.4.0Compare Source
CIRCLECIenvironments to return level 3 color supportf838120evanw/esbuild (esbuild)
v0.24.2Compare Source
Fix regression with
--defineandimport.meta(#4010, #4012, #4013)The previous change in version 0.24.1 to use a more expression-like parser for
definevalues to allow quoted property names introduced a regression that removed the ability to use--define:import.meta=.... Even thoughimportis normally a keyword that can't be used as an identifier, ES modules special-case theimport.metaexpression to behave like an identifier anyway. This change fixes the regression.This fix was contributed by @sapphi-red.
v0.24.1Compare Source
Allow
es2024as a target intsconfig.json(#4004)TypeScript recently added
es2024as a compilation target, so esbuild now supports this in thetargetfield oftsconfig.jsonfiles, such as in the following configuration file:{ "compilerOptions": { "target": "ES2024" } }As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in the documentation.
This fix was contributed by @billyjanitsch.
Allow automatic semicolon insertion after
get/setThis change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error:
The above code will be considered valid starting with this release. This change to esbuild follows a similar change to TypeScript which will allow this syntax starting with TypeScript 5.7.
Allow quoted property names in
--defineand--pure(#4008)The
defineandpureAPI options now accept identifier expressions containing quoted property names. Previously all identifiers in the identifier expression had to be bare identifiers. This change now makes--defineand--pureconsistent with--global-name, which already supported quoted property names. For example, the following is now possible:Note that if you're passing values like this on the command line using esbuild's
--defineflag, then you'll need to know how to escape quote characters for your shell. You may find esbuild's JavaScript API more ergonomic and portable than writing shell code.Minify empty
try/catch/finallyblocks (#4003)With this release, esbuild will now attempt to minify empty
tryblocks:This can sometimes expose additional minification opportunities.
Include
entryPointmetadata for thecopyloader (#3985)Almost all entry points already include a
entryPointfield in theoutputsmap in esbuild's build metadata. However, this wasn't the case for thecopyloader as that loader is a special-case that doesn't behave like other loaders. This release adds theentryPointfield in this case.Source mappings may now contain
nullentries (#3310, #3878)With this change, sources that result in an empty source map may now emit a
nullsource mapping (i.e. one with a generated position but without a source index or original position). This change improves source map accuracy by fixing a problem where minified code from a source without any source mappings could potentially still be associated with a mapping from another source file earlier in the generated output on the same minified line. It manifests as nonsensical files in source mapped stack traces. Now thenullmapping "resets" the source map so that any lookups into the minified code without any mappings resolves tonull(which appears as the output file in stack traces) instead of the incorrect source file.This change shouldn't affect anything in most situations. I'm only mentioning it in the release notes in case it introduces a bug with source mapping. It's part of a work-in-progress future feature that will let you omit certain unimportant files from the generated source map to reduce source map size.
Avoid using the parent directory name for determinism (#3998)
To make generated code more readable, esbuild includes the name of the source file when generating certain variable names within the file. Specifically bundling a CommonJS file generates a variable to store the lazily-evaluated module initializer. However, if a file is named
index.js(or with a different extension), esbuild will use the name of the parent directory instead for a better name (since many packages have files all namedindex.jsbut have unique directory names).This is problematic when the bundle entry point is named
index.jsand the parent directory name is non-deterministic (e.g. a temporary directory created by a build script). To avoid non-determinism in esbuild's output, esbuild will now useindexinstead of the parent directory in this case. Specifically this will happen if the parent directory is equal to esbuild'soutbaseAPI option, which defaults to the lowest common ancestor of all user-specified entry point paths.Experimental support for esbuild on NetBSD (#3974)
With this release, esbuild now has a published binary executable for NetBSD in the
@esbuild/netbsd-arm64npm package, and esbuild's installer has been modified to attempt to use it when on NetBSD. Hopefully this makes installing esbuild via npm work on NetBSD. This change was contributed by @bsiegert.eslint/eslint (eslint)
v9.17.0Compare Source
un-ts/eslint-plugin-import-x (eslint-plugin-import-x)
v4.6.1Compare Source
Patch Changes
be9c3e8Thanks @mrginglymus! - Fix enhanced-resolve dependencyv4.6.0Compare Source
Minor Changes
#209
46d2360Thanks @SukkaW! - Wheneslint-plugin-import-xwas forked fromeslint-plugin-import, we copied over the default resolver (which iseslint-import-resolver-node) as well. However, this resolver doesn't supportsexportsin thepackage.jsonfile, and the current maintainer of theeslint-import-resolver-node(ljharb) doesn't have the time implementing this feature and he locked the issue https://github.com/import-js/eslint-plugin-import/issues/1810.So we decided to implement our own resolver that "just works". The new resolver is built upon the
enhanced-resolvethat implements the full Node.js Resolver Algorithm. The new resolver only implements the import resolver interface v3, which means you can only use it with ESLint Flat config. For more details about the import resolver interface v3, please check out #192.In the next major version of
eslint-plugin-import-x, we will remove theeslint-import-resolver-nodeand use this new resolver by default. In the meantime, you can try out this new resolver by setting theimport-x/resolver-nextoption in youreslint.config.jsfile:We do not plan to implement reading
baseUrlandpathsfrom thetsconfig.jsonfile in this resolver. If you need this feature, please checkout eslint-import-resolver-typescript (also powered byenhanced-resolve), eslint-import-resolver-oxc (powered byoxc-resolver), eslint-import-resolver-next (also powered byoxc-resolver), or other similar resolvers.Patch Changes
449738fThanks @privatenumber! - insert type prefix without new linev4.5.1Compare Source
Patch Changes
#198
ac6d2e1Thanks @voxpelli! - Fix #197 with missing types#204
32e9b55Thanks @privatenumber! - fix type-import and value-import merging when import-as is usedunjs/jiti (jiti)
v2.4.2Compare Source
compare changes
🩹 Fixes
+mapsuffix to fs entries whensourceMapsenabled (#352)🏡 Chore
✅ Tests
❤️ Contributors
pnpm/pnpm (pnpm)
v9.15.2: pnpm 9.15.2Compare Source
Patch Changes
publish/packerror with workspace dependencies with relative paths #8904. It was broken inv9.4.0(398472c).pnpm patchon Windows #7546.git ls-remoteworks via HTTPS #8906.Platinum Sponsors
Gold Sponsors
v9.15.1Compare Source
v9.15.0Compare Source
release-it/release-it (release-it)
v17.11.0Compare Source
182e992)54399c9)04a36d2)09d7d1b)b161114)28213bf)667cd6a)716b44f)typescript-eslint/typescript-eslint (typescript-eslint)
v8.19.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.18.2Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
v8.18.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.18.0Compare Source
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
Configuration
📅 Schedule: Branch creation - "* 0-3 1 * *" in timezone Pacific/Auckland, 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.