Skip to content

fix(deps): update all non-major dependencies#1998

Merged
Methuselah96 merged 3 commits intomainfrom
renovate/all-minor-patch
Mar 14, 2026
Merged

fix(deps): update all non-major dependencies#1998
Methuselah96 merged 3 commits intomainfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Mar 3, 2026

This PR contains the following updates:

Package Change Age Confidence
@chakra-ui/react (source) ^3.33.0^3.34.0 age confidence
@codemirror/lang-javascript ^6.2.4^6.2.5 age confidence
@codemirror/view ^6.39.7^6.40.0 age confidence
@eslint/js (source) ^9.39.3^9.39.4 age confidence
@jest/globals (source) ^30.2.0^30.3.0 age confidence
@rjsf/core ^6.3.1^6.4.1 age confidence
@rjsf/utils ^6.3.1^6.4.1 age confidence
@rjsf/validator-ajv8 ^6.3.1^6.4.1 age confidence
@storybook/addon-onboarding (source) ^10.2.14^10.2.19 age confidence
@storybook/react-vite (source) ^10.2.14^10.2.19 age confidence
@types/node (source) ^24.11.0^24.12.0 age confidence
@typescript-eslint/eslint-plugin (source) ^8.56.1^8.57.0 age confidence
@typescript-eslint/parser (source) ^8.56.1^8.57.0 age confidence
@uiw/codemirror-themes (source) ^4.25.7^4.25.8 age confidence
@uiw/react-codemirror (source) ^4.25.4^4.25.8 age confidence
babel-loader ^10.0.0^10.1.1 age confidence
esbuild ^0.27.3^0.27.4 age confidence
eslint (source) ^9.39.3^9.39.4 age confidence
graphql ^16.13.0^16.13.1 age confidence
jest (source) ^30.2.0^30.3.0 age confidence
jest-environment-jsdom (source) ^30.2.0^30.3.0 age confidence
pnpm (source) 10.30.310.32.1 age confidence
pug (source) ^3.0.3^3.0.4 age confidence
simple-diff ^1.7.2^1.7.3 age confidence
storybook (source) ^10.2.14^10.2.19 age confidence
typescript-eslint (source) ^8.56.1^8.57.0 age confidence
webpack ^5.105.3^5.105.4 age confidence

Release Notes

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

v3.34.0

Compare Source

Minor Changes
Patch Changes
  • 94517fa
    Thanks @​segunadebayo! - Fix export gaps for
    Ark UI components:

    • Select: Expose Select.List component (for virtualization support)
    • Combobox: Export ComboboxSelectionDetails type (as
      Combobox.SelectionDetails in namespace)
    • Listbox: Export ListboxScrollToIndexDetails,
      ListboxSelectionDetails, ListboxSelectionMode types (as
      Listbox.ScrollToIndexDetails, Listbox.SelectionDetails,
      Listbox.SelectionMode in namespace)
    • Menu: Export MenuValueChangeDetails type (as Menu.ValueChangeDetails
      in namespace)
  • be18f13
    Thanks @​segunadebayo! - Fix TypeScript
    error when passing ref to CheckboxGroup.

  • 0aa89d0
    Thanks @​segunadebayo! - Fix globalCss
    silently ignoring element selectors that match utility shorthands (e.g. p,
    m, h, w).

    Previously, p: { margin: '0 0 1em' } in globalCss was treated as the
    padding utility instead of a <p> element selector, causing the styles to
    be silently dropped.

  • 59bf8f6
    Thanks @​segunadebayo! - - Field: Fix
    Field.ErrorIcon default size so it stays aligned with error text instead of
    expanding when the error area is full width.

codemirror/view (@​codemirror/view)

v6.40.0

Compare Source

Bug fixes

Fix a bug that caused Shift-Enter/Backspace/Delete on iOS to lose the shift modifier when delivered to key event handlers.

Fix an issue where EditorView.moveVertically could move to the wrong place in wrapped lines with a large line height.

Make sure the selection head associativity is properly set for mouse selections made with shift held down.

New features

WidgetType.updateDOM is now called with the previous widget value as third argument.

v6.39.17

Compare Source

Bug fixes

Improve touch tap-selection on line wrapping boundaries.

Make drawSelection draw our own selection handles on iOS.

Fix an issue where posAtCoords, when querying line wrapping points, got confused by extra empty client rectangles produced by Safari.

eslint/eslint (@​eslint/js)

v9.39.4

Compare Source

jestjs/jest (@​jest/globals)

v30.3.0

Compare Source

Features
  • [jest-config] Add defineConfig and mergeConfig helpers for type-safe Jest config (#​15844)
  • [jest-fake-timers] Add setTimerTickMode to configure how timers advance
  • [*] Reduce token usage when run through LLMs (3f17932)
Fixes
  • [jest-config] Keep CLI coverage output when using --json with --outputFile (#​15918)
  • [jest-mock] Use Symbol from test environment (#​15858)
  • [jest-reporters] Fix issue where console output not displayed for GHA reporter even with silent: false option (#​15864)
  • [jest-runtime] Fix issue where user cannot utilize dynamic import despite specifying --experimental-vm-modules Node option (#​15842)
  • [jest-test-sequencer] Fix issue where failed tests due to compilation errors not getting re-executed even with --onlyFailures CLI option (#​15851)
  • [jest-util] Make sure process.features.require_module is false (#​15867)
Chore & Maintenance
  • [*] Replace remaining micromatch uses with picomatch
  • [deps] Update to sinon/fake-timers v15
  • [docs] Update V30 migration guide to notify users on jest.mock() work with case-sensitive path (#​15849)
  • Updated Twitter icon to match the latest brand guidelines (#​15869)
rjsf-team/react-jsonschema-form (@​rjsf/core)

v6.4.1

Compare Source

Dev / docs / playground

  • Updated peer dependencies to 6.4.x

v6.4.0

Compare Source

@​rjsf/core

  • Fixed extraErrors not displaying on first async set after submit, fixing #​4965
  • Updated multi-select ArrayFields to properly use the items uiSchema for enumerated options, fixing #​4955
  • Fixed validateForm() clearing extraErrors from state when schema validation passes, fixing #​4962

@​rjsf/utils

  • Fixed resolveAllReferences to preserve $ref on resolved schemas, enabling ui:definitions beyond the first recursion level, fixing #​4966
  • Fixed omitExtraData stripping additionalProperties inside oneOf/anyOf options, fixing #​4366
  • Added support for map-based ui:enumNames and ui:enumOrder for controlling enum display labels and ordering, fixing #​4969

Dev / docs / playground

  • Added documentation and playground examples for map-based ui:enumNames and ui:enumOrder
storybookjs/storybook (@​storybook/addon-onboarding)

v10.2.19

Compare Source

10.2.19

v10.2.18

Compare Source

10.2.18

v10.2.17

Compare Source

10.2.17

v10.2.16

Compare Source

10.2.16

v10.2.15

Compare Source

10.2.15

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

v10.2.19

Compare Source

v10.2.18

Compare Source

v10.2.17

Compare Source

v10.2.16

Compare Source

v10.2.15

Compare Source

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

v8.57.0

Compare Source

🚀 Features
  • eslint-plugin: [no-unnecessary-condition] allow literal loop conditions in for/do loops (#​12080)
🩹 Fixes
  • eslint-plugin: [no-base-to-string] fix false positive for toString with overloads (#​12089)
  • eslint-plugin: [prefer-promise-reject-errors] add allow TypeOrValueSpecifier to prefer-promise-reject-errors (#​12094)
  • typescript-estree: if the template literal is tagged and the text has an invalid escape, cooked will be null (#​11355)
  • eslint-plugin: guard against negative paramIndex in no-useless-default-assignment (#​12077)
  • eslint-plugin: handle statically analyzable computed keys in prefer-readonly (#​12079)
  • eslint-plugin: [strict-void-return] false positives with overloads (#​12055)
❤️ Thank You

See GitHub Releases for more information.

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

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

v8.57.0

Compare Source

This was a version bump only for parser 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.

uiwjs/react-codemirror (@​uiw/codemirror-themes)

v4.25.8

Compare Source

Buy me a coffee

Documentation v4.25.8: https://raw.githack.com/uiwjs/react-codemirror/03129ff/index.html
Comparing Changes: uiwjs/react-codemirror@v4.25.7...v4.25.8

npm i @&#8203;uiw/react-codemirror@4.25.8
babel/babel-loader (babel-loader)

v10.1.1

Compare Source

v10.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: babel/babel-loader@v10.0.0...v10.1.0

evanw/esbuild (esbuild)

v0.27.4

Compare Source

  • Fix a regression with CSS media queries (#​4395, #​4405, #​4406)

    Version 0.25.11 of esbuild introduced support for parsing media queries. This unintentionally introduced a regression with printing media queries that use the <media-type> and <media-condition-without-or> grammar. Specifically, esbuild was failing to wrap an or clause with parentheses when inside <media-condition-without-or>. This release fixes the regression.

    Here is an example:

    /* Original code */
    @&#8203;media only screen and ((min-width: 10px) or (min-height: 10px)) {
      a { color: red }
    }
    
    /* Old output (incorrect) */
    @&#8203;media only screen and (min-width: 10px) or (min-height: 10px) {
      a {
        color: red;
      }
    }
    
    /* New output (correct) */
    @&#8203;media only screen and ((min-width: 10px) or (min-height: 10px)) {
      a {
        color: red;
      }
    }
  • Fix an edge case with the inject feature (#​4407)

    This release fixes an edge case where esbuild's inject feature could not be used with arbitrary module namespace names exported using an export {} from statement with bundling disabled and a target environment where arbitrary module namespace names is unsupported.

    With the fix, the following inject file:

    import jquery from 'jquery';
    export { jquery as 'window.jQuery' };

    Can now always be rewritten as this without esbuild sometimes incorrectly generating an error:

    export { default as 'window.jQuery' } from 'jquery';
  • Attempt to improve API handling of huge metafiles (#​4329, #​4415)

    This release contains a few changes that attempt to improve the behavior of esbuild's JavaScript API with huge metafiles (esbuild's name for the build metadata, formatted as a JSON object). The JavaScript API is designed to return the metafile JSON as a JavaScript object in memory, which makes it easy to access from within a JavaScript-based plugin. Multiple people have encountered issues where this API breaks down with a pathologically-large metafile.

    The primary issue is that V8 has an implementation-specific maximum string length, so using the JSON.parse API with large enough strings is impossible. This release will now attempt to use a fallback JavaScript-based JSON parser that operates directly on the UTF8-encoded JSON bytes instead of using JSON.parse when the JSON metafile is too big to fit in a JavaScript string. The new fallback path has not yet been heavily-tested. The metafile will also now be generated with whitespace removed if the bundle is significantly large, which will reduce the size of the metafile JSON slightly.

    However, hitting this case is potentially a sign that something else is wrong. Ideally you wouldn't be building something so enormous that the build metadata can't even fit inside a JavaScript string. You may want to consider optimizing your project, or breaking up your project into multiple parts that are built independently. Another option could potentially be to use esbuild's command-line API instead of its JavaScript API, which is more efficient (although of course then you can't use JavaScript plugins, so it may not be an option).

eslint/eslint (eslint)

v9.39.4

Compare Source

Bug Fixes

Documentation

Chores

graphql/graphql-js (graphql)

v16.13.1

Compare Source

v16.13.1 (2026-03-04)

Docs 📝
Internal 🏠
Committers: 2
pnpm/pnpm (pnpm)

v10.32.1: pnpm 10.32.1

Compare Source

Patch Changes

  • Fix a regression where pnpm-workspace.yaml without a packages field caused all directories to be treated as workspace projects. This broke projects that use pnpm-workspace.yaml only for settings (e.g. minimumReleaseAge) without defining workspace packages #​10909.

Platinum Sponsors

Bit

Gold Sponsors

Sanity Discord Vite
SerpApi CodeRabbit Stackblitz
Workleap Nx

v10.32.0: pnpm 10.32

Compare Source

Minor Changes

  • Added --all flag to pnpm approve-builds that approves all pending builds without interactive prompts #​10136.

Patch Changes

  • Reverted change related to setting explicitly the npm config file path, which caused regressions.
  • Reverted fix related to lockfile-include-tarball-url. Fixes #​10915.

Platinum Sponsors

Bit

Gold Sponsors

Sanity Discord Vite
SerpApi CodeRabbit Stackblitz
Workleap Nx

v10.31.0

Compare Source

pugjs/pug (pug)

v3.0.4

Compare Source

Bug Fixes

  • Update pug-code-gen to ensure doctype option is properly validated (#​3468)
redexp/simple-diff (simple-diff)

v1.7.3

Compare Source

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

v8.57.0

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

webpack/webpack (webpack)

v5.105.4

Compare Source

Patch Changes

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
Copy Markdown

changeset-bot Bot commented Mar 3, 2026

⚠️ No Changeset found

Latest commit: b1bbdda

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 25 times, most recently from 73be2c7 to 260d80a Compare March 10, 2026 09:51
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from bec1c82 to 25ecb54 Compare March 12, 2026 16:34
@renovate renovate Bot force-pushed the renovate/all-minor-patch branch from 25ecb54 to 9a0d4f2 Compare March 13, 2026 19:12
@Methuselah96 Methuselah96 enabled auto-merge (squash) March 14, 2026 19:31
@Methuselah96 Methuselah96 merged commit e1d3091 into main Mar 14, 2026
1 check passed
@Methuselah96 Methuselah96 deleted the renovate/all-minor-patch branch March 14, 2026 19:34
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