Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 20, 2025

This PR contains the following updates:

Package Change Age Confidence
@apollo/server (source) ^5.1.0 -> ^5.2.0 age confidence
@chakra-ui/react (source) ^3.29.0 -> ^3.30.0 age confidence
@changesets/cli (source) ^2.29.7 -> ^2.29.8 age confidence
@reduxjs/toolkit (source) ^2.10.1 -> ^2.11.0 age confidence
@rjsf/core ^6.1.1 -> ^6.1.2 age confidence
@rjsf/utils ^6.1.1 -> ^6.1.2 age confidence
@rjsf/validator-ajv8 ^6.1.1 -> ^6.1.2 age confidence
@storybook/addon-onboarding (source) ^10.0.8 -> ^10.1.0 age confidence
@storybook/react-vite (source) ^10.0.8 -> ^10.1.0 age confidence
@types/lodash (source) ^4.17.20 -> ^4.17.21 age confidence
@types/react (source) ^19.2.6 -> ^19.2.7 age confidence
@typescript-eslint/eslint-plugin (source) ^8.47.0 -> ^8.48.0 age confidence
@typescript-eslint/parser (source) ^8.47.0 -> ^8.48.0 age confidence
eslint-plugin-jest ^29.1.0 -> ^29.2.1 age confidence
pnpm (source) 10.22.0 -> 10.24.0 age confidence
prettier (source) 3.6.2 -> 3.7.1 age confidence
storybook (source) ^10.0.8 -> ^10.1.0 age confidence
typescript-eslint (source) ^8.47.0 -> ^8.48.0 age confidence

Release Notes

apollographql/apollo-server (@​apollo/server)

v5.2.0

Compare Source

Minor Changes
  • #​8161 51acbeb Thanks @​jerelmiller! - Fix an issue where some bundlers would fail to build because of the dynamic import for the optional peer dependency on @yaacovcr/transform introduced in @apollo/server 5.1.0. To provide support for the legacy incremental format, you must now provide the legacyExperimentalExecuteIncrementally option to the ApolloServer constructor.

    import { legacyExecuteIncrementally } from '@​yaacovcr/transform';
    
    const server = new ApolloServer({
      // ...
      legacyExperimentalExecuteIncrementally: legacyExecuteIncrementally,
    });

    If the legacyExperimentalExecuteIncrementally option is not provided and the client sends an Accept header with a value of multipart/mixed; deferSpec=20220824, an error is returned by the server.

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

v3.30.0

Compare Source

Minor Changes
  • #​10425
    0168a04
    Thanks @​Adebesin-Cell! - - Splitter
    [NEW]
    : Introduce new resizable splitter component

    <Splitter.Root panels={[{ id: "a" }, { id: "b" }]}>
      <Splitter.Panel id="a">Panel A</Splitter.Panel>
      <Splitter.ResizeTrigger id="a:b" />
      <Splitter.Panel id="b">Panel B</Splitter.Panel>
    </Splitter.Root>
  • 7b9aa97
    Thanks @​segunadebayo! - ### Added

    • Carousel: Added autoSize prop for variable width/height slides
Changed
  • useListCollection: initialItems now accepts readonly arrays
  • Types: Exported InteractOutsideEvent, FocusOutsideEvent,
    PointerDownOutsideEvent types
Fixed
  • Carousel: Fixed dragging after tab switch/scroll and mouse wheel scroll
    with allowMouseDrag

  • Combobox:

    • Fixed onHighlightChange not firing when filtered to empty;
    • Fixed focus stealing in controlled mode
    • Removed problematic aria-hidden behavior
  • File Upload: Fixed non-interactive children in dropzone not opening file
    picker

  • Radio Group: Fixed inconsistent data-focus-visible/data-focus
    attributes; fixed indicator showing before rect resolved (with Tabs)

  • Tabs: Fixed indicator showing before rect resolved (with Radio Group);
    fixed position not updating when inactive tabs resize

  • 503e11a
    Thanks @​segunadebayo! - ### Added

    • Semantic Tokens: Add new border semantic token to all color palettes
      (gray.300/gray.700 for gray, color.500/color.400 for colored
      palettes) to improve outline component appearance
Changed
  • Button, Badge, Tag, Checkbox: Update outline variants to use
    colorPalette.border instead of colorPalette.muted or global border
    token for better appearance, especially for non-gray color palettes.

    NOTE: All changes include CSS variable fallbacks to
    colorPalette.muted for backward compatibility.

Patch Changes
  • fd15569
    Thanks @​segunadebayo! - - HoverCard,
    Tooltip, Popover
    : Fix arrow direction in RTL layouts

  • 81ec4e7
    Thanks @​segunadebayo! - - TagsInput:
    Fix overflow issue where very long tags would overflow the container instead
    of truncating with ellipsis.

    • CheckboxGroup: Fix type issue where CheckboxGroupProps could not be
      passed to the CheckboxGroup component.
changesets/changesets (@​changesets/cli)

v2.29.8

Compare Source

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

v2.11.0

Compare Source

rjsf-team/react-jsonschema-form (@​rjsf/core)

v6.1.2

Compare Source

@​rjsf/antd

  • Updated SelectWidget to add a static getPopupContainerCallback to the SelectWidget component, partially fixing #​3609
    • Also, added the explicit open state to the Select in conjunction with providing the setOpen as the onOpenChange prop
  • In BaseInputTemplate added comments explaining why step='1' is returned, closing #​4022

@​rjsf/mantine

  • Align Mantine’s behavior with other themes when clearing string fields: clearing an input now removes the key from formData instead of setting it to an empty string. (#​4875)

@​rjsf/utils

@​rjsf/validator-ajv8

  • Updated CustomValidatorOptionsType to add new extenderFn?: (ajv: Ajv) => Ajv prop
  • Updated createAjvInstance() to add new extenderFn?: (ajv: Ajv) => Ajv parameter, using it to extend the ajv instance, fixing #​4746
    • Updated the AJV8Validator and compileSchemaValidatorsCode() to pass extenderFn from the options into createAjvInstance()
  • Updated transformRJSFValidationErrors() to add filtering of duplicate anyOf/oneOf based errors from the returned errors, fixing #​4167

Dev / docs / playground

  • Updated DemoFrame as follows to fix #​3609
    • Override antd's SelectWidget.getPopupContainerCallback callback function to return undefined
    • Added a AntdSelectPatcher component that observes the creation of antd select dropdowns and makes sure they open in the correct location
    • Update the antd theme wrapper to render the AntdSelectPatcher, AntdStyleProvider and ConfigProvider with it's own getPopupContainer() function inside of a FrameContextConsumer
  • Updated the base TypeScript configuration to use "moduleResolution": "bundler"
  • Updated the validation.md documentation to note that HTML 5 validation is not translatable via RJSF translation mechanisms and should be turned off, fixing #​4092
    • Also added documentation for the new extenderFn prop on CustomValidatorOptionsType
storybookjs/storybook (@​storybook/addon-onboarding)

v10.1.0

Compare Source

10.1.0

Easier to setup, more accessible to use

Storybook 10.1 focuses on two key improvements: installation and accessibility:

  • ♿ UI overhaul to fix hundreds of a11y issues
  • 🧑‍💻 CLI overhaul for faster, more reliable install
  • ✅ Checklist-based onboarding guide for new users

The release also contains compatibility fixes for:

  • 🅰️ Angular 21 support
  • 🦀 RSbuild install support in CLI
  • ⚡️ Preact support for Vitest addon

Finally, it contains two highly-requested experimental features:

  • 📋 Component manifest for Storybook MCP
  • ⚛️ Improved JSX code snippets for React
List of all updates
storybookjs/storybook (@​storybook/react-vite)

v10.1.0

Compare Source

Easier to setup, more accessible to use

Storybook 10.1 focuses on two key improvements: installation and accessibility:

  • ♿ UI overhaul to fix hundreds of a11y issues
  • 🧑‍💻 CLI overhaul for faster, more reliable install
  • ✅ Checklist-based onboarding guide for new users

The release also contains compatibility fixes for:

  • 🅰️ Angular 21 support
  • 🦀 RSbuild install support in CLI
  • ⚡️ Preact support for Vitest addon

Finally, it contains two highly-requested experimental features:

  • 📋 Component manifest for Storybook MCP
  • ⚛️ Improved JSX code snippets for React
List of all updates
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v8.48.0

Compare Source

🚀 Features
  • eslint-plugin: [no-redundant-type-constituents] use assignability checking for redundancy checks (#​10744)
🩹 Fixes
  • typescript-estree: disallow binding patterns in parameter properties (#​11760)
  • eslint-plugin: [consistent-generic-constructors] ignore when constructor is typed array (#​10477)
❤️ Thank You

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

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

v8.48.0

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.

jest-community/eslint-plugin-jest (eslint-plugin-jest)

v29.2.1

Compare Source

Bug Fixes
  • valid-mock-module-path: report on ERR_PACKAGE_PATH_NOT_EXPORTED errors (#​1860) (6cd4e89)

v29.2.0

Compare Source

Features
pnpm/pnpm (pnpm)

v10.24.0

Compare Source

v10.23.0: pnpm 10.23

Compare Source

Minor Changes

  • Added --lockfile-only option to pnpm list #​10020.

Patch Changes

  • pnpm self-update should download pnpm from the configured npm registry #​10205.
  • pnpm self-update should always install the non-executable pnpm package (pnpm in the registry) and never the @pnpm/exe package, when installing v11 or newer. We currently cannot ship @pnpm/exe as pkg doesn't work with ESM #​10190.
  • Node.js runtime is not added to "dependencies" on pnpm add, if there's a engines.runtime setting declared in package.json #​10209.
  • The installation should fail if an optional dependency cannot be installed due to a trust policy check failure #​10208.
  • pnpm list and pnpm why now display npm: protocol for aliased packages (e.g., foo npm:[email protected]) #​8660.
  • Don't add an extra slash to the Node.js mirror URL #​10204.
  • pnpm store prune should not fail if the store contains Node.js packages #​10131.

Platinum Sponsors

Bit

Gold Sponsors

Discord CodeRabbit Workleap
Stackblitz Vite
prettier/prettier (prettier)

v3.7.1

Compare Source

diff

API: Fix performance regression in doc printer (#​18342 by @​fisker)

Prettier 3.7.1 can be very slow when formatting big files, the regression has been fixed.

v3.7.0

Compare Source

diff

🔗 Release Notes

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

v8.48.0

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 Nov 20, 2025

⚠️ No Changeset found

Latest commit: cc2f63a

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 04451ac to 206531f Compare November 20, 2025 21:09
@renovate renovate bot changed the title chore(deps): update pnpm to v10.23.0 chore(deps): update all non-major dependencies Nov 20, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 206531f to 6b09b96 Compare November 21, 2025 21:47
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Nov 21, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from 3cac566 to dd35126 Compare November 27, 2025 14:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from dd35126 to cc2f63a Compare November 27, 2025 19:05
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