fix(deps): update all non-major dependencies#1184
Merged
Conversation
Contributor
Author
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
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:
^1.31.0→^1.31.21.0.0-rc.13→1.0.0-rc.15^17.4.0→^17.5.0^0.43.0→^0.44.01.0.0-rc.13→1.0.0-rc.15^6.3.12→^6.4.0^1.0.4→^1.1.1^8.58.0→^8.58.1^8.0.3→^8.0.8^4.1.2→^4.1.4^4.80.0→^4.81.1Release Notes
cloudflare/workers-sdk (@cloudflare/vite-plugin)
v1.31.2Compare Source
Patch Changes
42c7ef0,c510494,8b71eca,a42e0e8,7ca6f6e]:v1.31.1Compare Source
Patch Changes
a3e3b57,7d318e1,fa6d84f,96ee5d4,7d318e1,7a60d4b,78cbe37,6fa5dfd]:rolldown/rolldown (@rolldown/pluginutils)
v1.0.0-rc.15Compare Source
🐛 Bug Fixes
generate_transitive_esm_initon circular dependencies (#9041) by @shulaoda🚜 Refactor
v1.0.0-rc.14Compare Source
🚀 Features
disable_panic_hookfeature to disable the panic hook (#9023) by @sapphi-red🐛 Bug Fixes
🚜 Refactor
📚 Documentation
⚙️ Miscellaneous Tasks
❤️ New Contributors
sindresorhus/globals (globals)
v17.5.0Compare Source
oxc-project/oxc (oxfmt)
v0.44.0Compare Source
🐛 Bug Fixes
dd2df87npm: Export package.json for oxlint and oxfmt (#20784) (kazuya kawaguchi)4216380oxfmt: Support.editorconfigtab_widthfallback (#20988) (leaysgur)styled-components/styled-components (styled-components)
v6.4.0Compare Source
Minor Changes
b0f3d29:.attrs()improvements: props supplied via attrs are now automatically made optional on the resulting component (previously required even when attrs provided a default). Also fixes a bug where the attrs callback received a mutable props object that could be changed by subsequent attrs processing; it now receives an immutable snapshot.2a973d8: Dropped IE11 support: ES2015 build target, inlined unitless CSS properties (removing @emotion/unitless dependency), removed legacy React class statics from hoist and other unnecessary code.9e07d95: AddcreateTheme(defaultTheme, options?)for CSS variable theming that works across RSC and client components.Returns an object with the same shape where every leaf is
var(--prefix-path, fallback). Pass it toThemeProviderfor stable class name hashes across themes (no hydration mismatch on light/dark switch).varsexposes bare CSS custom property names (same shape as the theme) for use increateGlobalStyledark mode overrides without hand-writing variable names:Options:
prefix(default"sc"),selector(default":root", use":host"for Shadow DOM).79cc7b4: Add first-class CSP nonce support. Nonces can now be configured viaStyleSheetManager'snonceprop (recommended for Next.js, Remix),ServerStyleSheet's constructor,<meta property="csp-nonce">(Vite convention),<meta name="sc-nonce">, or the legacy__webpack_nonce__global.b0f3d29: RearchitectcreateGlobalStyleto use shared stylesheet groups.All instances of a
createGlobalStylecomponent now share a single stylesheet group, registered once at definition time. This fixes unmounting one instance removing styles needed by others (#5695), styles scattering after remount (#3146), and group ID leaks during SSR (#3022).CSS injection order is now fully determined at definition time (lower group ID = earlier in stylesheet). Render order no longer affects CSS order. Keyframes defined before a component correctly appear before that component's rules.
Also fixes: O(n^2) performance regression in jsdom test environments from unbounded rule accumulation, and stale static global styles during client-side HMR (effect deps now include the
globalStylereference so module re-evaluation triggers re-injection).b0f3d29: Significant render performance improvements via three-layer memoization and hot-path micro-optimizations. Client-only; server renders are unaffected.Re-renders that don't change styling now skip style resolution entirely. Components sharing the same CSS (e.g., list items) benefit from cross-sibling caching. Hot-path changes include
forEach→for/for...of, template literal → manual concat, and reduced allocations.Benchmarks vs 6.3.12:
9ada92b: React Server Components support: inline style injection, deduplication, and a newstylisPluginRSCfor child-index selector fixes.Inline style injection: RSC-rendered styled components emit
<style data-styled>tags alongside their elements. CSS is deduplicated per render viaReact.cache(React 19+). Extended components use:where()zero-specificity wrapping on base CSS so extensions always win the cascade regardless of injection order.StyleSheetManagerworks in RSC:stylisPluginsandshouldForwardPropare now applied in server component environments where React context is unavailable.stylisPluginRSC— opt-in stylis plugin that fixes:first-child,:last-child,:nth-child(), and:nth-last-child()selectors broken by inline<style>tags shifting child indices. Rewrites them using CSS Selectors Level 4of Ssyntax to exclude styled-components style tags from the count.The plugin rewrites
:first-child,:last-child,:nth-child(), and:nth-last-child()using CSS Selectors Level 4of Ssyntax to exclude injected style tags from the child count.Browser support: Chrome 111+, Firefox 113+, Safari 9+ (~93% global). In unsupported browsers, the entire CSS rule is dropped — only opt in if your audience supports it. Use
:first-of-type/:nth-of-type()as a universally compatible alternative.HMR: Stale styles during client-side HMR are detected and invalidated when module re-evaluation creates new component instances while IDs remain stable (SWC plugin assigns IDs by file location).
createGlobalStyleadditionally clears stale sheet entries when the instance changes between renders.The plugin is fully tree-shakeable — zero bytes in bundles that don't import it.
Patch Changes
b0f3d29: ExposeasandforwardedAsprops inReact.ComponentPropsextraction for styled components553cbb4: Fix memory leak in long-running apps using components with free-form string interpolations (e.g.color: ${p => p.$dynamicValue}where the value comes from unbounded user input).b0f3d29: React Native improvements: replaced postcss with a lightweight CSS declaration parser, fixingnanoidcrashes in Expo/Metro (#5705) and improving parse speed 4-6x. Parent re-renders with unchanged children are 2.6-3.2x faster via cache-first render. Updated native component alias list (removed 5 dead components, added 4 missing). Addedreact-nativeas an optional peer dependency.74e8b76: Smaller install footprint via unused dependency cleanup.tinylibs/tinyexec (tinyexec)
v1.1.1Compare Source
What's Changed
Full Changelog: tinylibs/tinyexec@1.1.0...1.1.1
typescript-eslint/typescript-eslint (typescript-eslint)
v8.58.1Compare Source
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
See GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
vitejs/vite (vite)
v8.0.8Compare Source
Features
Bug Fixes
dns.getDefaultResultOrdertemporary (#22202) (15f1c15)v8.0.7Compare Source
Bug Fixes
v8.0.6Compare Source
Features
Bug Fixes
Performance Improvements
getLocalhostAddressIfDiffersFromDNSwhen DNS order isverbatim(#22151) (56ec256)Miscellaneous Chores
vitest-dev/vitest (vitest)
v4.1.4Compare Source
🚀 Features
skipFullif agent detected - by @hi-ogawa in #10018 (53757)assertionas a public field - by @sheremet-va in #10095 (a120e)🐞 Bug Fixes
expect(..., message)consistent as error message prefix - by @hi-ogawa and Codex in #10068 (a1b5f)View changes on GitHub
v4.1.3Compare Source
🚀 Experimental Features
experimental.preParseflag - by @sheremet-va in #10070 (78273)browser.locators.exactoption - by @sheremet-va in #10013 (48799)TestAttachment.bodyEncoding- by @hi-ogawa in #9969 (89ca0)🐞 Bug Fixes
expect.pollinterval - by @hi-ogawa and Claude Sonnet 4.6 in #10022 (3f5bf)@vitest/coverage-v8and@vitest/coverage-istanbulas optional dependency - by @alan-agius4 in #10025 (146d4)defineHelperfor webkit async stack trace + update playwright 1.59.0 - by @hi-ogawa in #10036 (5a5fa)JestExtendError.contextfrom verbose error reporting - by @hi-ogawa in #9983 (66751)vitest- by @hi-ogawa and Codex in #10042 (691d3)View changes on GitHub
cloudflare/workers-sdk (wrangler)
v4.81.1Compare Source
Patch Changes
#13337
c510494Thanks @dependabot! - Update dependencies of "miniflare", "wrangler"The following dependency versions have been updated:
#13362
8b71ecaThanks @dependabot! - Update dependencies of "miniflare", "wrangler"The following dependency versions have been updated:
#13329
7ca6f6eThanks @G4brym! - fix: Treat AI Search bindings as always-remote in local devAI Search namespace (
ai_search_namespaces) and instance (ai_search) bindings are always-remote (they have no local simulation), butpickRemoteBindings()did not include them in its always-remote type list. This caused the remote proxy session to exclude these bindings whenremote: truewas not explicitly set in the config, resulting in broken AI Search bindings duringwrangler dev.Additionally,
removeRemoteConfigFieldFromBindings()in the deploy config-diff logic was not stripping theremotefield from AI Search bindings, which could cause false config diffs during deployment.Updated dependencies [
42c7ef0,c510494,8b71eca,a42e0e8]:v4.81.0Compare Source
Minor Changes
#12932
96ee5d4Thanks @thomasgauvin! - feat: addwrangler email routingandwrangler email sendingcommandsEmail Routing commands:
wrangler email routing list- list zones with email routing statuswrangler email routing settings <domain>- get email routing settings for a zonewrangler email routing enable/disable <domain>- enable or disable email routingwrangler email routing dns get/unlock <domain>- manage DNS recordswrangler email routing rules list/get/create/update/delete <domain>- manage routing rules (usecatch-allas the rule ID for the catch-all rule)wrangler email routing addresses list/get/create/delete- manage destination addressesEmail Sending commands:
wrangler email sending list- list zones with email sendingwrangler email sending settings <domain>- get email sending settings for a zonewrangler email sending enable <domain>- enable email sending for a zone or subdomainwrangler email sending disable <domain>- disable email sending for a zone or subdomainwrangler email sending dns get <domain>- get DNS records for a sending domainwrangler email sending send- send an email using the builder APIwrangler email sending send-raw- send a raw MIME email messageAlso adds
email_routing:writeandemail_sending:writeOAuth scopes towrangler login.Patch Changes
#13241
7d318e1Thanks @dependabot! - Update dependencies of "miniflare", "wrangler"The following dependency versions have been updated:
#13305
fa6d84fThanks @dependabot! - Update dependencies of "miniflare", "wrangler"The following dependency versions have been updated:
#13193
78cbe37Thanks @dario-piotrowicz! - During autoconfig filter out Hono when there are 2 detected frameworksDuring the auto-configuration process Hono is now treated as an auxiliary framework (like Vite) and automatically filtered out when two frameworks are detected (before Hono was being filtered out only when the other framework was Waku).
#13205
6fa5dfdThanks @petebacondarwin! - fix: useformatConfigSnippetfor compatibility_date warning inwrangler devThe compatibility_date warning shown when no date is configured in
wrangler devwas hardcoded in TOML format. This now usesformatConfigSnippetto render the snippet in the correct format (TOML or JSON) based on the user's config file type.Updated dependencies [
a3e3b57,7d318e1,fa6d84f,7d318e1,7a60d4b]:Configuration
📅 Schedule: (UTC)
* 0-3 * * 1)🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ 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.