Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 31, 2025

This PR contains the following updates:

Package Change Age Confidence
@chakra-ui/react (source) ^3.28.0 -> ^3.28.1 age confidence
@eslint/js (source) ^9.38.0 -> ^9.39.1 age confidence
@reduxjs/toolkit (source) ^2.9.2 -> ^2.10.1 age confidence
@storybook/addon-onboarding (source) ^10.0.2 -> ^10.0.4 age confidence
@storybook/react-vite (source) ^10.0.2 -> ^10.0.4 age confidence
@types/node (source) ^24.9.2 -> ^24.10.0 age confidence
@typescript-eslint/eslint-plugin (source) ^8.46.2 -> ^8.46.3 age confidence
@typescript-eslint/parser (source) ^8.46.2 -> ^8.46.3 age confidence
esbuild ^0.25.11 -> ^0.25.12 age confidence
eslint (source) ^9.38.0 -> ^9.39.1 age confidence
globals ^16.4.0 -> ^16.5.0 age confidence
graphql ^16.11.0 -> ^16.12.0 age confidence
rimraf ^6.0.1 -> ^6.1.0 age confidence
socketcluster-server ^19.2.1 -> ^19.2.2 age confidence
storybook (source) ^10.0.2 -> ^10.0.4 age confidence
typescript-eslint (source) ^8.46.2 -> ^8.46.3 age confidence

Release Notes

chakra-ui/chakra-ui (@​chakra-ui/react)

v3.28.1

Compare Source

Patch Changes
  • fad9a2e
    Thanks @​segunadebayo! - Fix CodeBlock right
    padding when scrolling long code lines horizontally

  • 37d166a
    Thanks @​segunadebayo! - - Tabs:
    Refactor to use css variables for styling indicator (--tabs-indicator-bg )
    for better customization.

    • SegmentedControl: Refactor to use css variables for styling indicator
      (--segment-indicator-bg and --segment-indicator-shadow) for better
      customization.
  • 7067c95
    Thanks @​segunadebayo! - Fix Shadow DOM and
    Web Component selector handling in globalCss. The :host,
    :host-context(), and ::slotted() pseudo-classes now correctly transform to
    top-level selectors with case-insensitive matching.

  • c7060de
    Thanks @​segunadebayo! - Improve
    styled-system performance with multiple optimizations

    • Token cloning: Replace structuredClone() with efficient shallow clone
      (75x faster)
    • Memoization: Improve cache key generation with efficient hashing and LRU
      cache (1.4x faster baseline, up to 585x faster for cached operations)
    • Object allocation: Use singleton empty objects instead of creating new
      ones in hot paths
    • Array operations: Optimize responsive value normalization with for loops
      instead of reduce
    • Performance impact: Significant improvement in style computation speed
      with the memoization layer providing 100-500x gains for repeated operations
eslint/eslint (@​eslint/js)

v9.39.1

Compare Source

v9.39.0

Compare Source

reduxjs/redux-toolkit (@​reduxjs/toolkit)

v2.10.1

Compare Source

This bugfix release fixes an issue with window access breaking in SSR due to the byte-shaving work in 2.10.

What's Changed

Full Changelog: reduxjs/redux-toolkit@v2.10.0...v2.10.1

v2.10.0

Compare Source

storybookjs/storybook (@​storybook/addon-onboarding)

v10.0.4

Compare Source

10.0.4

v10.0.3

Compare Source

storybookjs/storybook (@​storybook/react-vite)

v10.0.4

Compare Source

v10.0.3

Compare Source

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.46.3

Compare Source

🩹 Fixes
  • eslint-plugin: [no-duplicate-enum-values] support signed numbers (#​11722, #​11723)
  • eslint-plugin: [no-misused-promises] expand union type to retrieve target property (#​11706)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.46.3

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

evanw/esbuild (esbuild)

v0.25.12

Compare Source

  • Fix a minification regression with CSS media queries (#​4315)

    The previous release introduced support for parsing media queries which unintentionally introduced a regression with the removal of duplicate media rules during minification. Specifically the grammar for @media <media-type> and <media-condition-without-or> { ... } was missing an equality check for the <media-condition-without-or> part, so rules with different suffix clauses in this position would incorrectly compare equal and be deduplicated. This release fixes the regression.

  • Update the list of known JavaScript globals (#​4310)

    This release updates esbuild's internal list of known JavaScript globals. These are globals that are known to not have side-effects when the property is accessed. For example, accessing the global Array property is considered to be side-effect free but accessing the global scrollY property can trigger a layout, which is a side-effect. This is used by esbuild's tree-shaking to safely remove unused code that is known to be side-effect free. This update adds the following global properties:

    From ES2017:

    • Atomics
    • SharedArrayBuffer

    From ES2020:

    • BigInt64Array
    • BigUint64Array

    From ES2021:

    • FinalizationRegistry
    • WeakRef

    From ES2025:

    • Float16Array
    • Iterator

    Note that this does not indicate that constructing any of these objects is side-effect free, just that accessing the identifier is side-effect free. For example, this now allows esbuild to tree-shake classes that extend from Iterator:

    // This can now be tree-shaken by esbuild:
    class ExampleIterator extends Iterator {}
  • Add support for the new @view-transition CSS rule (#​4313)

    With this release, esbuild now has improved support for pretty-printing and minifying the new @view-transition rule (which esbuild was previously unaware of):

    /* Original code */
    @&#8203;view-transition {
      navigation: auto;
      types: check;
    }
    
    /* Old output */
    @&#8203;view-transition { navigation: auto; types: check; }
    
    /* New output */
    @&#8203;view-transition {
      navigation: auto;
      types: check;
    }

    The new view transition feature provides a mechanism for creating animated transitions between documents in a multi-page app. You can read more about view transition rules here.

    This change was contributed by @​yisibl.

  • Trim CSS rules that will never match

    The CSS minifier will now remove rules whose selectors contain :is() and :where() as those selectors will never match. These selectors can currently be automatically generated by esbuild when you give esbuild nonsensical input such as the following:

    /* Original code */
    div:before {
      color: green;
      &.foo {
        color: red;
      }
    }
    
    /* Old output (with --supported:nesting=false --minify) */
    div:before{color:green}:is().foo{color:red}
    
    /* New output (with --supported:nesting=false --minify) */
    div:before{color:green}

    This input is nonsensical because CSS nesting is (unfortunately) not supported inside of pseudo-elements such as :before. Currently esbuild generates a rule containing :is() in this case when you tell esbuild to transform nested CSS into non-nested CSS. I think it's reasonable to do that as it sort of helps explain what's going on (or at least indicates that something is wrong in the output). It shouldn't be present in minified code, however, so this release now strips it out.

eslint/eslint (eslint)

v9.39.1

Compare Source

v9.39.0

Compare Source

sindresorhus/globals (globals)

v16.5.0

Compare Source


graphql/graphql-js (graphql)

v16.12.0: 16.12.0

Compare Source

v16.12.0 (2025-11-01)

New Feature 🚀
Bug Fix 🐞
Docs 📝
28 PRs were merged
Polish 💅
Internal 🏠
3 PRs were merged
Committers: 9
isaacs/rimraf (rimraf)

v6.1.0

Compare Source

SocketCluster/socketcluster-server (socketcluster-server)

v19.2.2

Compare Source

typescript-eslint/typescript-eslint (typescript-eslint)

v8.46.3

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@changeset-bot
Copy link

changeset-bot bot commented Oct 31, 2025

⚠️ No Changeset found

Latest commit: 1b83501

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 94a13b8 to 8a928e3 Compare October 31, 2025 23:36
@renovate renovate bot changed the title chore(deps): update dependency rimraf to ^6.1.0 chore(deps): update all non-major dependencies Oct 31, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from b1130d6 to c46635d Compare November 1, 2025 16:50
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Nov 1, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from fac52f4 to f72e80d Compare November 4, 2025 02:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f72e80d to 1b83501 Compare November 4, 2025 15:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant