fix(deps): update all non-major dependencies - autoclosed#179
Closed
renovate[bot] wants to merge 1 commit intotrunkfrom
Closed
fix(deps): update all non-major dependencies - autoclosed#179renovate[bot] wants to merge 1 commit intotrunkfrom
renovate[bot] wants to merge 1 commit intotrunkfrom
Conversation
95898ad to
981c84a
Compare
e0f7f5f to
c3d88f2
Compare
3d170df to
174cce5
Compare
ed8f7e8 to
208c969
Compare
9e9cd8f to
479e7ec
Compare
b934b3d to
0eb71ed
Compare
d035124 to
99ecaa0
Compare
0af3956 to
f8bff25
Compare
f8bff25 to
f7b50da
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:
19.6.0->19.6.11000.0.0->1000.1.1^5.1.3->^5.1.422.10.1->22.12.0^5.3.0->^5.4.1^4.0.1->^4.0.3^0.24.0->^0.24.20.24.0->0.24.29.16.0->9.19.0^9.5.1->^9.5.2^11.2.0->^11.3.05.39.2->5.43.61.9.0->1.10.10^0.30.14->^0.30.17^1.7.3->^1.7.44.28.1->4.32.1^7.6.3->^7.7.05.7.2->5.7.3^1.16.0->^1.16.1^3.23.8->^3.24.1Release Notes
conventional-changelog/commitlint (@commitlint/cli)
v19.6.1Compare Source
Note: Version bump only for package @commitlint/cli
evanw/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.19.0Compare Source
v9.18.0Compare Source
v9.17.0Compare Source
jprichardson/node-fs-extra (fs-extra)
v11.3.0Compare Source
fsmethods (#1044, #1045)fs.opendirincopy()/copySync()for better perf/scalability (#972, #1028)webpro-nl/knip (knip)
v5.43.6Compare Source
f3669e2)18612d2)3815fae)c1de2ba)2d0876b)plugins: []to dummy expo obj to cause less issues (15b8aac)v5.43.5Compare Source
881de38)v5.43.4Compare Source
d02db68)v5.43.3Compare Source
fc5982e)f93a410)895434b) - thanks @TkDodo!0259b87)v5.43.2Compare Source
b70958a)productionentries by default in expo plugin (resolves #918) (9b8cb69)47460d2)c8ce64d)serializeanddeserializedirectly fromnode:v8(cbfc56e)b7b6273)9b4f695)v5.43.1Compare Source
ignoreUnresolvedto json schema (ec1cca7)d1f05c1)v5.43.0Compare Source
ignoreUnresolvedfeature (resolves #920) (081a776)a418b57)v5.42.3Compare Source
10575b8) - thanks @guillaumebrunerie!030ac40) - thanks @filipw01!02a300c) - thanks @dakro!containingFilePathfor inputs + debug output for failed script parser (8ccee81)v5.42.2Compare Source
96b6783)4b78b61)c510a35)4011b23)e568802) - thanks @davidlj95!v5.42.1Compare Source
a28cc02)* Edit docs + gen (d850cbe)7ff0b70)be5ba91)86b2123)4a212ad)0530465)959b64c)node ../../node_modules/.bin/executable(resolves #908) (5a77dcc)be1f9d4)optionaldependencies & improve pm cli arg handling (1731ee5)execamethods in visitor (5f2cf34)052375f)isDependencycase (e908cfe)0f67016)yarn lint:spellcheck(03abffd)5a3177f)8d206a0) - thanks @filipw01!b9aff83)1731ee5(938496c)v5.42.0Compare Source
3cb27eb)17f2224)94474cb) - thanks @davidlj95!4fc91eb)e1ba447) - thanks @davidlj95!zipglobal binary (#888) (62fbc76) - thanks @davidlj95!rsyncglobal binary (#889) (d29ec34) - thanks @davidlj95!f43b638) - thanks @davidlj95!9590b92)337de52) - thanks @jjjjonathan!79a7d48) - thanks @heystewart!26331c0) - thanks @heystewart!metroplugin (#895) (b106a5f) - thanks @jjjjonathan!91130f8) - thanks @davidlj95!9c82470)5e54e1d)169dba1)fbaec01)566d11c)f1e6770)5d6fe80)b5f426c)4fa4a03)a9f2d74)5dc317a)daf92ce)a6b2b9e)argsto webpack plugin to find webpack config files (0866302)argsto jest plugin to find jest config files (3c0a6c5)f5a1ede)2e8c8ac)093dcca)6471cf1)releaseNotes.committemplate (0c49689)4a9ff56)2bd03e0)5fe4cb4)ac7e933)v5.41.1Compare Source
v5.41.0Compare Source
expoplugin (#879) (40f7be9)9ce4a49)34004ba)17ddcb7)f696807)9ba0998)v5.40.0Compare Source
3d29854)e43304b)c738561)e6340b0)v5.39.4Compare Source
df390a0)containingFilePath(de6682b)v5.39.3Compare Source
0f640e1)055a2e3)c80ac0e)evilmartians/lefthook (lefthook)
v1.10.10Compare Source
v1.10.9Compare Source
v1.10.8Compare Source
v1.10.7Compare Source
v1.10.6Compare Source
Changelog
3d0f05dchore: cleanup dotfiles9873ceechore: remove .lefthook.toml6d6977ffeat: add schema.json to npm packages (#928)6621921fix: increase timeout for self-update to 2 minse8bf594fix: typoce2058dfix: use lefthook option in ghost hook too (#929)v1.10.5Compare Source
v1.10.4Compare Source
v1.10.3Compare Source
v1.10.2Compare Source
v1.10.1Compare Source
v1.10.0Compare Source
v1.9.3Compare Source
v1.9.2Compare Source
v1.9.1Compare Source
rollup/rollup (rollup)
v4.32.1Compare Source
2025-01-28
Bug Fixes
Pull Requests
v4.32.0Compare Source
2025-01-24
Features
Bug Fixes
Pull Requests
v4.31.0Compare Source
2025-01-19
Features
Bug Fixes
Pull Requests
v4.30.1Compare Source
2025-01-07
Bug Fixes
Pull Requests
v4.30.0Compare Source
2025-01-06
Features
Pull Requests
v4.29.2Compare Source
2025-01-05
Bug Fixes
import()expressions from CommonJS (#5781)Pull Reques
Configuration
📅 Schedule: Branch creation - "* 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 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.