Update all non-major dependencies #27
Merged
+394
−399
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.2.54
->1.2.59
1.2.41
->1.2.45
5.1.0
->5.1.1
66.3.2
->66.3.3
66.3.2
->66.3.3
66.3.2
->66.3.3
66.3.2
->66.3.3
66.3.2
->66.3.3
66.3.2
->66.3.3
0.25.5
->0.25.8
10.12.4
->10.14.0
0.6.13
->0.6.14
2.13.0
->2.13.1
5.34.9
->5.37.2
4.2.2
->4.3.0
11.1.1
->11.2.2
5.8.3
->5.9.2
7.0.0
->7.0.6
1.0.1
->1.0.2
Release Notes
sveltejs/vite-plugin-svelte (@sveltejs/vite-plugin-svelte)
v5.1.1
Compare Source
Patch Changes
svelteconfig.extensions
(#1171)unocss/unocss (@unocss/preset-icons)
v66.3.3
Compare Source
🚀 Features
inert
variant - by @Jungzl in https://github.com/unocss/unocss/issues/4790 (d6657)wrap-
utilities - by @zyyv (bf784)bg-size-[<value>]
- by @9romise in https://github.com/unocss/unocss/issues/4803 (b735e)🐞 Bug Fixes
View changes on GitHub
evanw/esbuild (esbuild)
v0.25.8
Compare Source
Fix another TypeScript parsing edge case (#4248)
This fixes a regression with a change in the previous release that tries to more accurately parse TypeScript arrow functions inside the
?:
operator. The regression specifically involves parsing an arrow function containing a#private
identifier inside the middle of a?:
ternary operator inside a class body. This was fixed by propagating private identifier state into the parser clone used to speculatively parse the arrow function body. Here is an example of some affected code:Fix a regression with the parsing of source phase imports
The change in the previous release to parse source phase imports failed to properly handle the following cases:
Parsing for these cases should now be fixed. The first case was incorrectly treated as a syntax error because esbuild was expecting the second case. And the last case was previously allowed but is now forbidden. TypeScript hasn't added this feature yet so it remains to be seen whether the last case will be allowed, but it's safer to disallow it for now. At least Babel doesn't allow the last case when parsing TypeScript, and Babel was involved with the source phase import specification.
v0.25.7
Compare Source
Parse and print JavaScript imports with an explicit phase (#4238)
This release adds basic syntax support for the
defer
andsource
import phases in JavaScript:defer
This is a stage 3 proposal for an upcoming JavaScript feature that will provide one way to eagerly load but lazily initialize imported modules. The imported module is automatically initialized on first use. Support for this syntax will also be part of the upcoming release of TypeScript 5.9. The syntax looks like this:
Note that this feature deliberately cannot be used with the syntax
import defer foo from "<specifier>"
orimport defer { foo } from "<specifier>"
.source
This is a stage 3 proposal for an upcoming JavaScript feature that will provide another way to eagerly load but lazily initialize imported modules. The imported module is returned in an uninitialized state. Support for this syntax may or may not be a part of TypeScript 5.9 (see this issue for details). The syntax looks like this:
Note that this feature deliberately cannot be used with the syntax
import defer * as foo from "<specifier>"
orimport defer { foo } from "<specifier>"
.This change only adds support for this syntax. These imports cannot currently be bundled by esbuild. To use these new features with esbuild's bundler, the imported paths must be external to the bundle and the output format must be set to
esm
.Support optionally emitting absolute paths instead of relative paths (#338, #2082, #3023)
This release introduces the
--abs-paths=
feature which takes a comma-separated list of situations where esbuild should use absolute paths instead of relative paths. There are currently three supported situations:code
(comments and string literals),log
(log message text and location info), andmetafile
(the JSON build metadata).Using absolute paths instead of relative paths is not the default behavior because it means that the build results are no longer machine-independent (which means builds are no longer reproducible). Absolute paths can be useful when used with certain terminal emulators that allow you to click on absolute paths in the terminal text and/or when esbuild is being automatically invoked from several different directories within the same script.
Fix a TypeScript parsing edge case (#4241)
This release fixes an edge case with parsing an arrow function in TypeScript with a return type that's in the middle of a
?:
ternary operator. For example:The
:
token in the value assigned tox
pairs with the?
token, so it's not the start of a return type annotation. However, the first:
token in the value assigned toy
is the start of a return type annotation because after parsing the arrow function body, it turns out there's another:
token that can be used to pair with the?
token. This case is notable as it's the first TypeScript edge case that esbuild has needed a backtracking parser to parse. It has been addressed by a quick hack (cloning the whole parser) as it's a rare edge case and esbuild doesn't otherwise need a backtracking parser. Hopefully this is sufficient and doesn't cause any issues.Inline small constant strings when minifying
Previously esbuild's minifier didn't inline string constants because strings can be arbitrarily long, and this isn't necessarily a size win if the string is used more than once. Starting with this release, esbuild will now inline string constants when the length of the string is three code units or less. For example:
Note that esbuild's constant inlining only happens in very restrictive scenarios to avoid issues with TDZ handling. This change doesn't change when esbuild's constant inlining happens. It only expands the scope of it to include certain string literals in addition to numeric and boolean literals.
v0.25.6
Compare Source
Fix a memory leak when
cancel()
is used on a build context (#4231)Calling
rebuild()
followed bycancel()
in rapid succession could previously leak memory. The bundler uses a producer/consumer model internally, and the resource leak was caused by the consumer being termianted while there were still remaining unreceived results from a producer. To avoid the leak, the consumer now waits for all producers to finish before terminating.Support empty
:is()
and:where()
syntax in CSS (#4232)Previously using these selectors with esbuild would generate a warning. That warning has been removed in this release for these cases.
Improve tree-shaking of
try
statements in dead code (#4224)With this release, esbuild will now remove certain
try
statements if esbuild considers them to be within dead code (i.e. code that is known to not ever be evaluated). For example:Consider negated bigints to have no side effects
While esbuild currently considers
1
,-1
, and1n
to all have no side effects, it didn't previously consider-1n
to have no side effects. This is because esbuild does constant folding with numbers but not bigints. However, it meant that unused negative bigint constants were not tree-shaken. With this release, esbuild will now consider these expressions to also be side-effect free:Support a configurable delay in watch mode before rebuilding (#3476, #4178)
The
watch()
API now takes adelay
option that lets you add a delay (in milliseconds) before rebuilding when a change is detected in watch mode. If you use a tool that regenerates multiple source files very slowly, this should make it more likely that esbuild's watch mode won't generate a broken intermediate build before the successful final build. This option is also available via the CLI using the--watch-delay=
flag.This should also help avoid confusion about the
watch()
API's options argument. It was previously empty to allow for future API expansion, which caused some people to think that the documentation was missing. It's no longer empty now that thewatch()
API has an option.Allow mixed array for
entryPoints
API option (#4223)The TypeScript type definitions now allow you to pass a mixed array of both string literals and object literals to the
entryPoints
API option, such as['foo.js', { out: 'lib', in: 'bar.js' }]
. This was always possible to do in JavaScript but the TypeScript type definitions were previously too restrictive.Update Go from 1.23.8 to 1.23.10 (#4204, #4207)
This should have no effect on existing code as this version change does not change Go's operating system support. It may remove certain false positive reports (specifically CVE-2025-4673 and CVE-2025-22874) from vulnerability scanners that only detect which version of the Go compiler esbuild uses.
Experimental support for esbuild on OpenHarmony (#4212)
With this release, esbuild now publishes the
@esbuild/openharmony-arm64
npm package for OpenHarmony. It contains a WebAssembly binary instead of a native binary because Go doesn't currently support OpenHarmony. Node does support it, however, so in theory esbuild should now work on OpenHarmony through WebAssembly.This change was contributed by @hqzing.
pnpm/pnpm (pnpm)
v10.14.0
Compare Source
Minor Changes
Added support for JavaScript runtime resolution
Declare Node.js, Deno, or Bun in
devEngines.runtime
(insidepackage.json
) and let pnpm download and pin it automatically.Usage example:
How it works:
pnpm install
resolves your specified range to the latest matching runtime version.Why this is better:
useNodeVersion
andexecutionEnv.nodeVersion
)executionEnv.nodeVersion
). So, different projects in a workspace can use different runtimes.devEngines.runtime
setting will install the runtime locally, which we will improve in future versions of pnpm by using a shared location on the computer.Related PR: #9755.
Add
--cpu
,--libc
, and--os
topnpm install
,pnpm add
, andpnpm dlx
to customizesupportedArchitectures
via the CLI #7510.Patch Changes
pnpm add
downloads packages whoselibc
differ frompnpm.supportedArchitectures.libc
.dlx
to parse CLI flags and options between thedlx
command and the command to run or between thedlx
command and--
#9719.pnpm install --prod
should removing hoisted dev dependencies #9782.pnpm install
to incorrectly assume the lockfile is up to date after changing a local tarball that has peers dependencies.v10.13.1
Compare Source
Patch Changes
v10.13.0
Compare Source
Minor Changes
Added the possibility to load multiple pnpmfiles. The
pnpmfile
setting can now accept a list of pnpmfile locations #9702.pnpm will now automatically load the
pnpmfile.cjs
file from any config dependency named@pnpm/plugin-*
orpnpm-plugin-*
#9729.The order in which config dependencies are initialized should not matter — they are initialized in alphabetical order. If a specific order is needed, the paths to the
pnpmfile.cjs
files in the config dependencies can be explicitly listed using thepnpmfile
setting inpnpm-workspace.yaml
.Patch Changes
pkg.pr.new
, treat them as Git tarball URLs #9694.dangerouslyAllowAllBuilds
,onlyBuiltDependencies
,onlyBuiltDependenciesFile
, andneverBuiltDependencies
#9628.pnpm-workspace.yaml
with deep #9701.pnpm rebuild
command should not add pkgs included inignoredBuiltDependencies
toignoredBuilds
innode_modules/.modules.yaml
#9338.shell-quote
withshlex
for quoting command arguments #9381.tailwindlabs/prettier-plugin-tailwindcss (prettier-plugin-tailwindcss)
v0.6.14
Compare Source
toplenboren/simple-git-hooks (simple-git-hooks)
v2.13.1
Compare Source
Patch Changes
#128
2ad5514
Thanks @OlofFredriksson! - fix: postinstall should ignore adding hooks if SKIP_INSTALL_SIMPLE_GIT_HOOKS is defined#130
1abdcd7
Thanks @cexoso! - fix: only get localcoore.hooksPath
configsveltejs/svelte (svelte)
v5.37.2
Compare Source
Patch Changes
fix: double event processing in firefox due to event object being garbage collected (#16527)
fix: add bindable dimension attributes types to SVG and MathML elements (#16525)
fix: correctly differentiate static fields before emitting
duplicate_class_field
(#16526)fix: prevent last_propagated_event from being DCE'd (#16538)
v5.37.1
Compare Source
Patch Changes
chore: remove some todos (#16515)
fix: allow await expressions inside
{#await ...}
argument (#16514)fix:
append_styles
in an effect to make them available on mount (#16509)chore: remove
parser.template_untrimmed
(#16511)fix: always inject styles when compiling as a custom element (#16509)
v5.37.0
Compare Source
Minor Changes
compileModule
(#16362)Patch Changes
v5.36.17
Compare Source
Patch Changes
fix: throw on duplicate class field declarations (#16502)
fix: add types for
part
attribute to svg attributes (#16499)v5.36.16
Compare Source
Patch Changes
fix: don't update a focused input with values from its own past (#16491)
fix: don't destroy effect roots created inside of deriveds (#16492)
v5.36.15
Compare Source
Patch Changes
v5.36.14
Compare Source
Patch Changes
fix: keep input in sync when binding updated via effect (#16482)
fix: rename form accept-charset attribute (#16478)
fix: prevent infinite async loop (#16482)
fix: exclude derived writes from effect abort and rescheduling (#16482)
v5.36.13
Compare Source
Patch Changes
v5.36.12
Compare Source
Patch Changes
capture_signals
to legacy module (#16456)v5.36.10
Compare Source
Patch Changes
v5.36.9
Compare Source
Patch Changes
fix: don't reexecute derived with no dependencies on teardown (#16438)
fix: disallow
export { foo as default }
in<script module>
(#16447)fix: move ownership validation into async component body (#16449)
fix: allow async destructured deriveds (#16444)
fix: move store setup/cleanup outside of async component body (#16443)
v5.36.8
Compare Source
Patch Changes
fix: keep effect in the graph if it has an abort controller (#16430)
chore: Switch
payload.out
to an array (#16428)v5.36.7
Compare Source
Patch Changes
<svelte:...>
elements to inherit fromSvelteHTMLElements
(#16424)v5.36.6
Compare Source
Patch Changes
fix: delegate functions with shadowed variables if declared locally (#16417)
fix: handle error in correct boundary after reset (#16171)
fix: make
<svelte:boundary>
reset function a noop after the first call (#16171)v5.36.5
Compare Source
Patch Changes
fix: silence
$inspect
errors when the effect is about to be destroyed (#16391)fix: more informative error when effects run in an infinite loop (#16405)
v5.36.4
Compare Source
Patch Changes
fix: avoid microtask in flushSync (#16394)
fix: ensure compiler state is reset before compilation (#16396)
v5.36.3
Compare Source
Patch Changes
fix: don't log
await_reactivity_loss
warning when signal is read inuntrack
(#16385)fix: better handle $inspect on array mutations (#16389)
fix: leave proxied array
length
untouched when deleting properties (#16389)fix: update
$effect.pending()
immediately after a batch is removed (#16382)v5.36.2
Compare Source
Patch Changes
fix: add
$effect.pending()
to types (#16376)fix: add
pending
snippet to<svelte:boundary>
types (#16379)v5.36.1
Compare Source
Patch Changes
fix: throw on duplicate class field declarations (#16502)
fix: add types for
part
attribute to svg attributes (#16499)v5.36.0
Compare Source
Minor Changes
await
in components when using theexperimental.async
compiler option (#15844)Patch Changes
fix: silence a11y warning for inert elements (#16339)
chore: clean up a11y analysis code (#16345)
v5.35.7
Compare Source
Patch Changes
fix: silence autofocus a11y warning inside
<dialog>
(#16341)fix: don't show adjusted error messages in boundaries (#16360)
chore: replace inline regex with variable (#16340)
v5.35.6
Compare Source
Patch Changes
chore: simplify reaction/source ownership tracking (#16333)
chore: simplify internal component
pop()
(#16331)v5.35.5
Compare Source
Patch Changes
fix: associate sources in Spring/Tween/SvelteMap/SvelteSet with correct reaction (#16325)
fix: re-evaluate derived props during teardown (#16278)
v5.35.4
Compare Source
Patch Changes
v5.35.3
Compare Source
Patch Changes
fix: account for mounting when
select_option
inattribute_effect
(#16309)fix: do not proxify the value assigned to a derived (#16302)
v5.35.2
Compare Source
Patch Changes
v5.35.1
Compare Source
Patch Changes
__svelte_meta
objects (#16255)v5.35.0
Compare Source
Minor Changes
getAbortSignal()
(#16266)Patch Changes
sveltejs/language-tools (svelte-check)
v4.3.0
Compare Source
await
support (#2799)janosh/svelte-multiselect (svelte-multiselect)
v11.2.2
Compare Source
draggable
,sortable
,tooltip
,highlight_matches
,click_outside
by @janosh in https://github.com/janosh/svelte-multiselect/pull/325Full Changelog: janosh/svelte-multiselect@v11.2.1...v11.2.2
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
v11.2.1
Compare Source
highlight.js
dependency by @janosh in https://github.com/janosh/svelte-multiselect/pull/324Full Changelog: janosh/svelte-multiselect@v11.2.0...v11.2.1
v11.2.0
Compare Source
removeAll
event timing: clearselected
before events fire by @janosh in https://github.com/janosh/svelte-multiselect/pull/313<input>
adding unwanted width when options selected by @janosh in https://github.com/janosh/svelte-multiselect/pull/315oncreate
event for all user-created options by @janosh in https://github.com/janosh/svelte-multiselect/pull/316'retain-focus'
for propcloseDropdownOnSelect
by @janosh in https://github.com/janosh/svelte-multiselect/pull/318node
fordeno
by @janosh in https://github.com/janosh/svelte-multiselect/pull/319CodeExample
,CopyButton
,FileDetails
,GitHubCorner
,Icon
,PrevNext
,RadioButtons
,Toggle
by @janosh in https://github.com/janosh/svelte-multiselect/pull/323Full Changelog: janosh/svelte-multiselect@v11.1.1...v11.2.0
microsoft/TypeScript (typescript)
v5.9.2
Compare Source
vitejs/vite (vite)
v7.0.6
Compare Source
Bug Fixes
Miscellaneous Chores
Code Refactoring
v7.0.5
Compare Source
Bug Fixes
Accept: text/html
(#20376) (c9614b9)new URL(, import.meta.url)
(#20382) (6bc8bf6)Miscellaneous Chores
Code Refactoring
foo.endsWith("bar")
instead of/bar$/.test(foo)
(#20413) (862e192)v7.0.4
Compare Source
Bug Fixes
Build System
@oxc-project/runtime
devDep (#20389) (5e29602)v7.0.3
Compare Source
Bug Fixes
Miscellaneous Chores
n/prefer-node-protocol
rule (#20368) (38bb268)Code Refactoring
v7.0.2
Compare Source
Bug Fixes
v7.0.1
Compare Source
Bug Fixes
Miscellaneous Chores
Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (UTC), 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.