Update all non-major dependencies #20
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.2.39->1.2.451.2.33->1.2.3666.1.0->66.1.366.1.0->66.1.366.1.0->66.1.366.1.0->66.1.366.1.0->66.1.366.1.0->66.1.30.25.3->0.25.510.10.0->10.11.03.3.3->3.4.00.6.11->0.6.125.28.2->5.33.114.1.6->4.2.111.0.0-rc.1->11.1.16.3.4->6.3.5Release Notes
unocss/unocss (@unocss/preset-icons)
v66.1.3Compare Source
🚀 Features
font-syntax - by @zyyv in https://github.com/unocss/unocss/issues/4672 (708d5)🐞 Bug Fixes
@applyshould respectnoMergemeta - by @antfu in https://github.com/unocss/unocss/issues/4686 (a2256)align-rules close #4670 - by @zyyv in https://github.com/unocss/unocss/issues/4670 (57ab9)propertieslayer in important postprocessor - by @zyyv in https://github.com/unocss/unocss/issues/4692 (139c3)w/hsize from theme spacing close #4693 - by @zyyv in https://github.com/unocss/unocss/issues/4693 (e9864)outline-nonerule - by @zyyv in https://github.com/unocss/unocss/issues/4695 (804b7)@screentransformer - by @onmax and @zyyv in https://github.com/unocss/unocss/issues/4681 (d097c)View changes on GitHub
v66.1.2Compare Source
🚀 Features
pseudosyntax - by @zyyv in https://github.com/unocss/unocss/issues/4665 (c5514)🐞 Bug Fixes
contentrules - by @zyyv (47176)outlinerule close #4650 - by @zyyv in https://github.com/unocss/unocss/issues/4650 (4d27c)View changes on GitHub
v66.1.1Compare Source
🚀 Features
field-sizingrule - by @zyyv (61dad)noscript&scriptingvariant in Tailwind 4.1 - by @OverflowCat and @zyyv in https://github.com/unocss/unocss/issues/4637 (11bb7)🐞 Bug Fixes
leading-noneutility - by @danielwaltz in https://github.com/unocss/unocss/issues/4640 (81b49)ringrule withbracketclose #4618 - by @zyyv in https://github.com/unocss/unocss/issues/4618 (89f75)presetWind4parse error with@apply(2) - by @Simon-He95 and @zyyv in https://github.com/unocss/unocss/issues/4643 (30122)View changes on GitHub
evanw/esbuild (esbuild)
v0.25.5Compare Source
Fix a regression with
browserinpackage.json(#4187)The fix to #4144 in version 0.25.3 introduced a regression that caused
browseroverrides specified inpackage.jsonto fail to override relative path names that end in a trailing slash. That behavior change affected the[email protected]package. This regression has been fixed, and now has test coverage.Add support for certain keywords as TypeScript tuple labels (#4192)
Previously esbuild could incorrectly fail to parse certain keywords as TypeScript tuple labels that are parsed by the official TypeScript compiler if they were followed by a
?modifier. These labels includedfunction,import,infer,new,readonly, andtypeof. With this release, these keywords will now be parsed correctly. Here's an example of some affected code:Add CSS prefixes for the
stretchsizing value (#4184)This release adds support for prefixing CSS declarations such as
div { width: stretch }. That CSS is now transformed into this depending on what the--target=setting includes:v0.25.4Compare Source
Add simple support for CORS to esbuild's development server (#4125)
Starting with version 0.25.0, esbuild's development server is no longer configured to serve cross-origin requests. This was a deliberate change to prevent any website you visit from accessing your running esbuild development server. However, this change prevented (by design) certain use cases such as "debugging in production" by having your production website load code from
localhostwhere the esbuild development server is running.To enable this use case, esbuild is adding a feature to allow Cross-Origin Resource Sharing (a.k.a. CORS) for simple requests. Specifically, passing your origin to the new
corsoption will now set theAccess-Control-Allow-Originresponse header when the request has a matchingOriginheader. Note that this currently only works for requests that don't send a preflightOPTIONSrequest, as esbuild's development server doesn't currently supportOPTIONSrequests.Some examples:
CLI:
JS:
Go:
The special origin
*can be used to allow any origin to access esbuild's development server. Note that this means any website you visit will be able to read everything served by esbuild.Pass through invalid URLs in source maps unmodified (#4169)
This fixes a regression in version 0.25.0 where
sourcesin source maps that form invalid URLs were not being passed through to the output. Version 0.25.0 changed the interpretation ofsourcesfrom file paths to URLs, which means that URL parsing can now fail. Previously URLs that couldn't be parsed were replaced with the empty string. With this release, invalid URLs insourcesshould now be passed through unmodified.Handle exports named
__proto__in ES modules (#4162, #4163)In JavaScript, the special property name
__proto__sets the prototype when used inside an object literal. Previously esbuild's ESM-to-CommonJS conversion didn't special-case the property name of exports named__proto__so the exported getter accidentally became the prototype of the object literal. It's unclear what this affects, if anything, but it's better practice to avoid this by using a computed property name in this case.This fix was contributed by @magic-akari.
pnpm/pnpm (pnpm)
v10.11.0Compare Source
Minor Changes
A new setting added for
pnpm initto create apackage.jsonwithtype=module, wheninit-typeismodule. Works as a flag for the init command too #9463.Added support for Nushell to
pnpm setup#6476.Added two new flags to the
pnpm auditcommand,--ignoreand--ignore-unfixable#8474.Ignore all vulnerabilities that have no solution:
> pnpm audit --ignore-unfixableProvide a list of CVE's to ignore those specifically, even if they have a resolution.
> pnpm audit --ignore=CVE-2021-1234 --ignore=CVE-2021-5678Added support for recursively running pack in every project of a workspace #4351.
Now you can run
pnpm -r packto pack all packages in the workspace.Patch Changes
dangerouslyAllowAllBuildsis set totrue#9472.pnpm linkshould work from inside a workspace #9506.workspaceConcurrencytoMath.min(os.availableParallelism(), 4)#9493.strictPeerDependenciesistruebut all issues are ignored bypeerDependencyRules#9505.updateConfigfrompnpm-workspace.yaml#9500.recursive packurl.parseusage to fix warning on Node.js 24 #9492.pnpm runshould be able to run commands from the workspace root, ifignoreScriptsis set tottrue#4858.sveltejs/prettier-plugin-svelte (prettier-plugin-svelte)
v3.4.0Compare Source
tailwindlabs/prettier-plugin-tailwindcss (prettier-plugin-tailwindcss)
v0.6.12Compare Source
sveltejs/svelte (svelte)
v5.33.11Compare Source
Patch Changes
v5.33.10Compare Source
Patch Changes
fill: 'forwards'on transition animations to prevent flicker (#16035)v5.33.9Compare Source
Patch Changes
v5.33.8Compare Source
Patch Changes
select_optionif'value'is innext(#16032)v5.33.7Compare Source
Patch Changes
bind:valueto select with stores (#16028)v5.33.6Compare Source
Patch Changes
fix: falsy attachments on components (#16021)
fix: correctly mark elements as selected during SSR (#16017)
v5.33.5Compare Source
Patch Changes
fix: handle derived destructured iterators (#16015)
fix: avoid rerunning attachments when unrelated spread attributes change (#15961)
v5.33.4Compare Source
Patch Changes
fix: narrow
defaultCheckedto boolean (#16009)fix: warn when using rest or identifier in custom elements without props option (#16003)
v5.33.3Compare Source
Patch Changes
fix: allow using typescript in
customElement.extendoption (#16001)fix: cleanup event handlers on media elements (#16005)
v5.33.2Compare Source
Patch Changes
fix: correctly parse escaped unicode characters in css selector (#15976)
fix: don't mark deriveds as clean if updating during teardown (#15997)
v5.33.1Compare Source
Patch Changes
v5.33.0Compare Source
Minor Changes
feat: XHTML compliance (#15538)
feat: add
fragments: 'html' | 'tree'option for wider CSP compliance (#15538)v5.32.2Compare Source
Patch Changes
chore: simplify
<pre>cleaning (#15980)fix: attach
__svelte_metacorrectly to elements following a CSS wrapper (#15982)fix: import untrack directly from client in
svelte/attachments(#15974)v5.32.1Compare Source
Patch Changes
<select multiple>value is given (#14816)v5.32.0Compare Source
Minor Changes
feat: warn on implicitly closed tags (#15932)
feat: attachments
fromActionutility (#15933)Patch Changes
v5.31.1Compare Source
Patch Changes
MediaQuery(#15937)v5.31.0Compare Source
Minor Changes
Patch Changes
AttachTaginTagunion type inside theASTnamespace from"svelte/compiler"(#15946)v5.30.2Compare Source
Patch Changes
fix: falsy attachments types (#15939)
fix: handle more hydration mismatches (#15851)
v5.30.1Compare Source
Patch Changes
typeParamstoSnippetBlockfor legacy parser (#15921)v5.30.0Compare Source
Minor Changes
v5.29.0Compare Source
Minor Changes
v5.28.7Compare Source
Patch Changes
fix: remove unncessary guards that require CSP privilege when removing event attributes (#15846)
fix: rewrite destructuring logic to handle iterators (#15813)
v5.28.6Compare Source
Patch Changes
fix: use
transform.readforownership_validator.mutationarray (#15848)fix: don't redeclare
$slots(#15849)v5.28.5Compare Source
Patch Changes
fix: proxify the value in assignment shorthands to the private field (#15862)
fix: more frequently update
bind:bufferedto actual value (#15874)v5.28.4Compare Source
Patch Changes
fix: treat nullish expression as empty string (#15901)
fix: prevent invalid BigInt calls from blowing up at compile time (#15900)
fix: warn on bidirectional control characters (#15893)
fix: emit right error for a shadowed invalid rune (#15892)
v5.28.3Compare Source
Patch Changes
chore: avoid microtasks when flushing sync (#15895)
fix: improve error message for migration errors when slot would be renamed (#15841)
fix: allow characters in the supplementary special-purpose plane (#15823)
sveltejs/language-tools (svelte-check)
v4.2.1Compare Source
v4.2.0Compare Source
v4.1.7Compare Source
janosh/svelte-multiselect (svelte-multiselect)
v11.1.1Compare Source
66ebd8dbc6ee6cbrowserfrom @app/env import withtypeof windowcheck in portal() action to support non-sveltekit apps2a8f116c4f26efv11.1.0Compare Source
#306#301v11.0.0Compare Source
ul.selected > liandul.options > li#304#29591f22d0v11.0.0-rc.1
MultiSelect.sveltefor Svelte5 compatibility#293v10.3.0
MultiSelectfix form validation not resetting whenrequiredprop changes#286#283#282#280style,inputStyle,liOptionStyle,liSelectedStyle,ulSelectedStyle,ulOptionsStyle#279liUserMsgClassandliUserMsgActiveClass#2741b04c15v10.2.0
focusInputOnSelecttocloseDropdownOnSelect#267event.detail.optionspayload onremoveAll#26658cee43v10.1.0
createOptionMsgifallowUserOptionsis truthy and user entered text#254styletoObjectOptionfor per-option inline CSS#252selectedandvalueeach reactive to each other#250#246vitejs/vite (vite)
v6.3.5Compare Source
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.