chore(deps): update all non-major dependencies #140
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:
^2.1.1
->^2.1.3
^0.3.8
->^0.3.12
^0.23.1
->^0.24.0
^9.11.0
->^9.12.0
^0.3.2
->^0.4.1
^9.0.1
->^9.1.0
^4.6.2
->^4.6.5
^2.0.0-rc.1
->^2.3.3
^1.7.2
->^1.9.0
9.11.0
->9.12.2
^5.6.2
->^5.6.3
^3.0.0-rc.7
->^3.0.0-rc.11
^2.1.1
->^2.1.3
Release Notes
vitest-dev/vitest (@vitest/coverage-v8)
v2.1.3
Compare Source
🐞 Bug Fixes
toBeNaN, toBeUndefined, toBeNull, toBeTruthy, toBeFalsy
- by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/6697 (e0027)/mockServiceWorker.js
instead of/__vitest_msw__
- by @sheremet-va in https://github.com/vitest-dev/vitest/issues/6687 (4b2ce)toMatchObject
diff - by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/6620 (d289e)<empty line>
logs when interleavingconsole.log/error
- by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/6644 (9ece3)fast-glob
instead oftinyglobby
in Vitest - by @sheremet-va in https://github.com/vitest-dev/vitest/issues/6688 (70baa)🏎 Performance
View changes on GitHub
v2.1.2
Compare Source
🐞 Bug Fixes
Vitest.setServer
to postconfigureServer
hook to enable import analysis for workspace config loading - by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/6584 (e7f35)BenchmarkResult.samples
array to reduce memory usage - by @hi-ogawa and @AriPerkkio in https://github.com/vitest-dev/vitest/issues/6541 (a6407)data:
protocol on preview provider file upload - by @userquin in https://github.com/vitest-dev/vitest/issues/6501 (e9821)*.astro
by default - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/6565 (f8ff7)cleanOnRerun: false
to invalidate previous results - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/6592 (88bde)toBeDefined
withexpect.poll
- by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/6562 (f7da6)--cpu-prof
and--heap-prof
not working by default - by @AriPerkkio in https://github.com/vitest-dev/vitest/pull/6555 (2e4d894)beforeAll
failed - by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/6524 (fb797)onTestFinished
andonTestFailed
duringretry
andrepeats
- by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/6609 (c5e29)--standalone
- by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/6577 (d0bf8)View changes on GitHub
unjs/automd (automd)
v0.3.12
Compare Source
compare changes
🩹 Fixes
❤️ Contributors
v0.3.11
Compare Source
compare changes
🩹 Fixes
🏡 Chore
lint:fix
script (1ed252e)❤️ Contributors
v0.3.10
Compare Source
compare changes
💅 Refactors
npm.chart.dev
for npm downloads (#75)🏡 Chore
❤️ Contributors
v0.3.9
Compare Source
compare changes
🚀 Enhancements
🏡 Chore
❤️ Contributors
evanw/esbuild (esbuild)
v0.24.0
Compare Source
This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of
esbuild
in yourpackage.json
file (recommended) or be using a version range syntax that only accepts patch upgrades such as^0.23.0
or~0.23.0
. See npm's documentation about semver for more information.Drop support for older platforms (#3902)
This release drops support for the following operating system:
This is because the Go programming language dropped support for this operating system version in Go 1.23, and this release updates esbuild from Go 1.22 to Go 1.23. Go 1.23 now requires macOS 11 Big Sur or later.
Note that this only affects the binary esbuild executables that are published to the esbuild npm package. It's still possible to compile esbuild's source code for these older operating systems. If you need to, you can compile esbuild for yourself using an older version of the Go compiler (before Go version 1.23). That might look something like this:
Fix class field decorators in TypeScript if
useDefineForClassFields
isfalse
(#3913)Setting the
useDefineForClassFields
flag tofalse
intsconfig.json
means class fields use the legacy TypeScript behavior instead of the standard JavaScript behavior. Specifically they use assign semantics instead of define semantics (e.g. setters are triggered) and fields without an initializer are not initialized at all. However, when this legacy behavior is combined with standard JavaScript decorators, TypeScript switches to always initializing all fields, even those without initializers. Previously esbuild incorrectly continued to omit field initializers for this edge case. These field initializers in this case should now be emitted starting with this release.Avoid incorrect cycle warning with
tsconfig.json
multiple inheritance (#3898)TypeScript 5.0 introduced multiple inheritance for
tsconfig.json
files whereextends
can be an array of file paths. Previously esbuild would incorrectly treat files encountered more than once when processing separate subtrees of the multiple inheritance hierarchy as an inheritance cycle. With this release,tsconfig.json
files containing this edge case should work correctly without generating a warning.Handle Yarn Plug'n'Play stack overflow with
tsconfig.json
(#3915)Previously a
tsconfig.json
file thatextends
another file in a package with anexports
map could cause a stack overflow when Yarn's Plug'n'Play resolution was active. This edge case should work now starting with this release.Work around more issues with Deno 1.31+ (#3917)
This version of Deno broke the
stdin
andstdout
properties on command objects for inherited streams, which matters when you run esbuild's Deno module as the entry point (i.e. whenimport.meta.main
istrue
). Previously esbuild would crash in Deno 1.31+ if you ran esbuild like that. This should be fixed starting with this release.This fix was contributed by @Joshix-1.
eslint/eslint (eslint)
v9.12.0
Compare Source
Features
5a6a053
feat: update tojiti
v2 (#18954) (Arya Emami)17a07fb
feat: Hooks for test cases (RuleTester) (#18771) (Anna Bocharova)2ff0e51
feat: Implement alternate config lookup (#18742) (Nicholas C. Zakas)2d17453
feat: Implement modified cyclomatic complexity (#18896) (Dmitry Pashkevich)Bug Fixes
ea380ca
fix: Upgrade retry to avoid EMFILE errors (#18986) (Nicholas C. Zakas)fdd6319
fix: Issues with type definitions (#18940) (Arya Emami)Documentation
ecbd522
docs: Mention code explorer (#18978) (Nicholas C. Zakas)7ea4ecc
docs: Clarifying the Use of Meta Objects (#18697) (Amaresh S M)d3e4b2e
docs: Clarify how to exclude.js
files (#18976) (Milos Djermanovic)57232ff
docs: Mention plugin-kit in language docs (#18973) (Nicholas C. Zakas)b80ed00
docs: Update README (GitHub Actions Bot)cb69ab3
docs: Update README (GitHub Actions Bot)7fb0d95
docs: Update README (GitHub Actions Bot)493348a
docs: Update README (GitHub Actions Bot)87a582c
docs: fix typo inid-match
rule (#18944) (Jay)Chores
555aafd
chore: upgrade to@eslint/[email protected]
(#18987) (Francesco Trotta)873ae60
chore: package.json update for @eslint/js release (Jenkins)d0a5414
refactor: replace strip-ansi with native module (#18982) (Cristopher)b827029
chore: Enable JSON5 linting (#18979) (Milos Djermanovic)8f55ca2
chore: Upgrade espree, eslint-visitor-keys, eslint-scope (#18962) (Nicholas C. Zakas)c1a2725
chore: update dependency mocha to ^10.7.3 (#18945) (Milos Djermanovic)v9.11.1
Compare Source
unjs/eslint-config (eslint-config-unjs)
v0.4.1
Compare Source
compare changes
💅 Refactors
Linter.Config
as return type (2cce21a)🏡 Chore
❤️ Contributors
v0.4.0
Compare Source
compare changes
🏡 Chore
❤️ Contributors
delvedor/find-my-way (find-my-way)
v9.1.0
Compare Source
What's Changed
New Contributors
Full Changelog: delvedor/find-my-way@v9.0.1...v9.1.0
honojs/hono (hono)
v4.6.5
Compare Source
Security fix for CSRF Protection Middleware
This release includes a security fix for CSRF Protection Middleware. If you are using CSRF Protection Middleware, please upgrade this
hono
package immediately.Before this release, a request without a
Content-Type
header can bypass the protection. This fix does not allow it. See: GHSA-2234-fmw7-43wrWhat's Changed
v2
by @yusukebe in https://github.com/honojs/hono/pull/3506Access-Control-Allow-Origin
if there is no matching origin by @uki00a in https://github.com/honojs/hono/pull/3510New Contributors
Full Changelog: honojs/hono@v4.6.4...v4.6.5
v4.6.4
Compare Source
What's Changed
crypto-js
from dev dependencies by @yusukebe in https://github.com/honojs/hono/pull/3447createMiddleware
by @yusukebe in https://github.com/honojs/hono/pull/3498globalThis
by @sapphi-red in https://github.com/honojs/hono/pull/3500override
totoStringToBuffer
in classes extendingJSXNode
by @yusukebe in https://github.com/honojs/hono/pull/3505New Contributors
Full Changelog: honojs/hono@v4.6.3...v4.6.4
v4.6.3
Compare Source
This release has many new features, but each feature is small, so we've released it as a patch release.
What's Changed
runtime_tests
toruntime-tests
by @yusukebe in https://github.com/honojs/hono/pull/3419every
middleware work with short-circuiting middlewares by @paolostyle in https://github.com/honojs/hono/pull/3441renderToString
by @usualoma in https://github.com/honojs/hono/pull/3432New Contributors
Full Changelog: honojs/hono@v4.6.2...v4.6.3
unjs/jiti (jiti)
v2.3.3
Compare Source
compare changes
🩹 Fixes
💅 Refactors
❤️ Contributors
v2.3.2
Compare Source
compare changes
🩹 Fixes
🏡 Chore
❤️ Contributors
v2.3.1
Compare Source
compare changes
🩹 Fixes
mod.default
(8c30a94)🏡 Chore
❤️ Contributors
v2.3.0
Compare Source
compare changes
🚀 Enhancements
jiti.import(id, {default: true})
(#323)🩹 Fixes
in
operator for primitive inputs (#321)💅 Refactors
📖 Documentation
🏡 Chore
❤️ Contributors
v2.2.1
Compare Source
compare changes
🩹 Fixes
❤️ Contributors
v2.2.0
Compare Source
compare changes
🚀 Enhancements
interopDefault
(#318)💅 Refactors
🤖 CI
❤️ Contributors
v2.1.2
Compare Source
compare changes
🌊 Types
NodeModule
type (718bea2)❤️ Contributors
v2.1.1
Compare Source
compare changes
🩹 Fixes
🏡 Chore
✅ Tests
❤️ Contributors
v2.1.0
Compare Source
compare changes
🚀 Enhancements
interopDefault
by default (#310)import.meta.dirname
andimport.meta.filename
(#308)🔥 Performance
🩹 Fixes
TransformOptions
type strict to allow auto-complete (#305)💅 Refactors
📦 Build
/register
and/native
subpath types forNode10
module resolution (#304)🏡 Chore
❤️ Contributors
v2.0.0
Compare Source
compare changes
🚀 Enhancements
data:
imports (non-native only) (#299)import.meta.resolve
(#301)🩹 Fixes
Reflect.metadata
(#165)paths
option to nativerequire.resolve
(50e4280)💅 Refactors
jiti.esmResolve
consistent withimport.meta.resolve
(#303)📖 Documentation
JITI_ALIAS
(a53715a)🏡 Chore
❤️ Contributors
unjs/listhen (listhen)
v1.9.0
Compare Source
compare changes
🚀 Enhancements
📦 Build
🏡 Chore
❤️ Contributors
v1.8.0
Compare Source
compare changes
🚀 Enhancements
🩹 Fixes
pathe
(#166)📖 Documentation
🏡 Chore
🤖 CI
❤️ Contributors
Configuration
📅 Schedule: Branch creation - "after 2am and before 3am" (UTC), Automerge - "after 1am and before 2am" (UTC).
🚦 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 was generated by Mend Renovate. View the repository job log.