chore(deps): update all non-major dependencies #64
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:
18.11.9
->18.11.10
5.44.0
->5.45.0
5.44.0
->5.45.0
0.15.16
->0.15.17
8.28.0
->8.29.0
1.5.0
->1.6.0
Release Notes
typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v5.45.0
Compare Source
Bug Fixes
Features
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v5.45.0
Compare Source
Note: Version bump only for package @typescript-eslint/parser
evanw/esbuild
v0.15.17
Compare Source
Search for missing source map code on the file system (#2711)
Source maps are JSON files that map from compiled code back to the original code. They provide the original source code using two arrays:
sources
(required) andsourcesContent
(optional). When bundling is enabled, esbuild is able to bundle code with source maps that was compiled by other tools (e.g. with Webpack) and emit source maps that map all the way back to the original code (e.g. before Webpack compiled it).Previously if the input source maps omitted the optional
sourcesContent
array, esbuild would usenull
for the source content in the source map that it generates (since the source content isn't available). However, sometimes the original source code is actually still present on the file system. With this release, esbuild will now try to find the original source code using the path in thesources
array and will use that instead ofnull
if it was found.Fix parsing bug with TypeScript
infer
andextends
(#2712)This release fixes a bug where esbuild incorrectly failed to parse valid TypeScript code that nests
extends
insideinfer
insideextends
, such as in the example below:TypeScript code that does this should now be parsed correctly.
Use
WebAssembly.instantiateStreaming
if available (#1036, #1900)Currently the WebAssembly version of esbuild uses
fetch
to downloadesbuild.wasm
and thenWebAssembly.instantiate
to compile it. There is a newer API calledWebAssembly.instantiateStreaming
that both downloads and compiles at the same time, which can be a performance improvement if both downloading and compiling are slow. With this release, esbuild now attempts to useWebAssembly.instantiateStreaming
and falls back to the original approach if that fails.The implementation for this builds on a PR by @lbwa.
Preserve Webpack comments inside constructor calls (#2439)
This improves the use of esbuild as a faster TypeScript-to-JavaScript frontend for Webpack, which has special magic comments inside
new Worker()
expressions that affect Webpack's behavior.eslint/eslint
v8.29.0
Compare Source
Features
49a07c5
feat: addallowParensAfterCommentPattern
option to no-extra-parens (#16561) (Nitin Kumar)e6a865d
feat:prefer-named-capture-group
add suggestions (#16544) (Josh Goldberg)a91332b
feat: In no-invalid-regexp validate flags also for non-literal patterns (#16583) (trosos)Documentation
0311d81
docs: Configuring Plugins page intro, page tweaks, and rename (#16534) (Ben Perlmutter)57089b1
docs: add a property assignment example for camelcase rule (#16605) (Milos Djermanovic)b6ab030
docs: add docs codeowners (#16601) (Strek)6380c87
docs: fix sitemap and feed (#16592) (Milos Djermanovic)ade621d
docs: perf debounce the search query (#16586) (Shanmughapriyan S)fbcf3ab
docs: fix searchbar clear button (#16585) (Shanmughapriyan S)f894035
docs: HTTPS link to yeoman.io (#16582) (Christian Oliff)de12b26
docs: Update configuration file pages (#16509) (Ben Perlmutter)1ae9f20
docs: update correct code examples forno-extra-parens
rule (#16560) (Nitin Kumar)Chores
7628403
chore: add discord channel link (#16590) (Amaresh S M)f5808cb
chore: fix rule doc headers check (#16564) (Milos Djermanovic)privatenumber/pkgroll
v1.6.0
Compare Source
Bug Fixes
Features
.d.ts
from.mts
(#25) (21f9dca).mts
&.cts
entry (#24) (3462822)Configuration
📅 Schedule: Branch creation - "before 3am on Monday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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 has been generated by Mend Renovate. View repository job log here.