Skip to content

chore(deps): bump the minor-and-patch group across 1 directory with 9 updates - #124

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bun/minor-and-patch-13f3fff560
Open

chore(deps): bump the minor-and-patch group across 1 directory with 9 updates#124
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bun/minor-and-patch-13f3fff560

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 21, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor-and-patch group with 9 updates in the / directory:

Package From To
es-toolkit 1.46.1 1.51.0
prosekit 0.20.2 0.22.0
react 19.2.6 19.2.8
react-dom 19.2.6 19.2.8
@types/react-dom 19.2.3 19.2.4
yjs 13.6.30 13.6.32
@biomejs/biome 2.4.15 2.5.9
@playwright/test 1.60.0 1.62.1
@tsconfig/bun 1.0.10 1.0.11

Updates es-toolkit from 1.46.1 to 1.51.0

Release notes

Sourced from es-toolkit's releases.

v1.51.0

Released on August 17th, 2026.

  • Added the es-toolkit/bigint entrypoint: bigint counterparts of the math functions (sum, sumBy, max, min, maxBy, minBy, clamp, inRange, median, medianBy, percentile, range, rangeRight), kept separate so the number implementations stay unchanged. ([#1966])

  • Added dedent, which removes common leading whitespace from template strings. ([#1679])

  • Added deepFreeze for recursively freezing objects. ([#1680])

  • Added mapValuesAsync and mapKeysAsync. ([#1544])

  • Added toPascalCaseKeys, toKebabCaseKeys, and toConstantCaseKeys, completing the object key casing family. ([#1984])

  • Exported the ToCamelCaseKeys, ToPascalCaseKeys, ToSnakeCaseKeys, ToKebabCaseKeys, and ToConstantCaseKeys types. ([#1651])

  • Added a preserveArrays option to flattenObject. ([#974])

  • Fixed retry to pass the last error to the delay callback ([#1759]) and to throw the last attempt's error without applying a final delay ([#1901]).

  • Fixed mergeWith and toMerged to handle mixed array/object types consistently with merge. ([#2026])

  • Fixed pullAt to remove the correct elements with negative indices. ([#1613])

  • Fixed at, pullAt, orderBy, and sortBy to accept readonly arrays. ([#2016])

  • Moved limitAsync from the array to the promise category. ([#2022])

  • Included the NOTICE file in the published npm and JSR packages. ([#2020])

The following bring es-toolkit/compat closer to Lodash. Behavior for the affected edge cases now matches Lodash, so results may differ if you relied on the previous output.

  • Added entries and entriesIn. ([#1874])

  • Fixed compat/isMatch and compat/isMatchWith to handle object source patterns against primitive and non-plain-object targets like Lodash. ([#1432])

  • Fixed compat/set to block constructor.prototype paths, preventing prototype pollution. ([#1904])

  • Fixed compat/find to respect array-like length ([#1958]) and to convert fromIndex to an integer ([#1961]), and compat/indexOf to convert fromIndex to an integer when searching for NaN ([#1951]).

  • Fixed compat/orderBy to resolve unresolved deep paths and nullish elements to undefined ([#2010]), to exclude the length property from array-like values ([#2002]), and to read the criterion property from primitive values ([#1903]).

  • Fixed compat/toPath to split unquoted dotted keys inside brackets. ([#1899])

  • Fixed compat/omit to treat a key array as a single deep path. ([#1902])

  • Fixed compat/map to make the iteratee optional with an identity default. ([#1928])

  • Fixed compat/size to count combined Unicode symbols as single characters. ([#1900])

  • Fixed compat/intersectionBy to support number, object, and nullish iteratee shorthands ([#1993]), and compat/intersectionWith to apply the comparator when deduplicating the first array ([#1953]).

... (truncated)

Changelog

Sourced from es-toolkit's changelog.

Version v1.51.0

Released on August 17th, 2026.

  • Added the es-toolkit/bigint entrypoint: bigint counterparts of the math functions (sum, sumBy, max, min, maxBy, minBy, clamp, inRange, median, medianBy, percentile, range, rangeRight), kept separate so the number implementations stay unchanged. (#1966)

  • Added dedent, which removes common leading whitespace from template strings. (#1679)

  • Added deepFreeze for recursively freezing objects. (#1680)

  • Added mapValuesAsync and mapKeysAsync. (#1544)

  • Added toPascalCaseKeys, toKebabCaseKeys, and toConstantCaseKeys, completing the object key casing family. (#1984)

  • Exported the ToCamelCaseKeys, ToPascalCaseKeys, ToSnakeCaseKeys, ToKebabCaseKeys, and ToConstantCaseKeys types. (#1651)

  • Added a preserveArrays option to flattenObject. (#974)

  • Fixed retry to pass the last error to the delay callback (#1759) and to throw the last attempt's error without applying a final delay (#1901).

  • Fixed mergeWith and toMerged to handle mixed array/object types consistently with merge. (#2026)

  • Fixed pullAt to remove the correct elements with negative indices. (#1613)

  • Fixed at, pullAt, orderBy, and sortBy to accept readonly arrays. (#2016)

  • Moved limitAsync from the array to the promise category. (#2022)

  • Included the NOTICE file in the published npm and JSR packages. (#2020)

The following bring es-toolkit/compat closer to Lodash. Behavior for the affected edge cases now matches Lodash, so results may differ if you relied on the previous output.

  • Added entries and entriesIn. (#1874)
  • Fixed compat/isMatch and compat/isMatchWith to handle object source patterns against primitive and non-plain-object targets like Lodash. (#1432)
  • Fixed compat/set to block constructor.prototype paths, preventing prototype pollution. (#1904)
  • Fixed compat/find to respect array-like length (#1958) and to convert fromIndex to an integer (#1961), and compat/indexOf to convert fromIndex to an integer when searching for NaN (#1951).
  • Fixed compat/orderBy to resolve unresolved deep paths and nullish elements to undefined (#2010), to exclude the length property from array-like values (#2002), and to read the criterion property from primitive values (#1903).
  • Fixed compat/toPath to split unquoted dotted keys inside brackets. (#1899)
  • Fixed compat/omit to treat a key array as a single deep path. (#1902)
  • Fixed compat/map to make the iteratee optional with an identity default. (#1928)
  • Fixed compat/size to count combined Unicode symbols as single characters. (#1900)
  • Fixed compat/intersectionBy to support number, object, and nullish iteratee shorthands (#1993), and compat/intersectionWith to apply the comparator when deduplicating the first array (#1953).
  • Fixed compat/difference, compat/differenceBy, compat/uniqBy, and compat/unionBy to normalize -0 to 0. (#2007)
  • Fixed compat/maxBy and compat/minBy to skip nullish iteratee values (#1927),

... (truncated)

Commits
  • 5dc4477 v1.51.0
  • 39a2661 feat(string/dedent): add dedent function for removing common leading whitespa...
  • 5e0f057 fix/compat array find array like length (#1958)
  • 4c94c3d fix(isMatch): handle primitive targets with object source patterns correctly ...
  • b7cdf14 feat: implement {mapValues,mapKeys}Async functions (#1544)
  • 2a37b36 fix(retry): pass error to delay callback (#1759)
  • 87fc74f test: Add browser compatibility test suite (#2012)
  • 3fdea04 feat(flattenObject): add preserveArrays option (#974)
  • 21c76cf feat(object/deepFreeze): add deepFreeze function for recursively freezing obj...
  • 6d18625 fix(pullAt): fix incorrect element removal with negative indices (#1613)
  • Additional commits viewable in compare view

Updates prosekit from 0.20.2 to 0.22.0

Release notes

Sourced from prosekit's releases.

v0.22.0

Please refer to CHANGELOG.md for details.

v0.22.0-beta.25

Please refer to CHANGELOG.md for details.

v0.22.0-beta.24

Please refer to CHANGELOG.md for details.

v0.22.0-beta.23

Please refer to CHANGELOG.md for details.

v0.22.0-beta.22

Please refer to CHANGELOG.md for details.

v0.22.0-beta.21

Please refer to CHANGELOG.md for details.

v0.22.0-beta.20

Please refer to CHANGELOG.md for details.

v0.22.0-beta.19

Please refer to CHANGELOG.md for details.

v0.22.0-beta.18

Please refer to CHANGELOG.md for details.

v0.22.0-beta.17

Please refer to CHANGELOG.md for details.

v0.22.0-beta.16

Please refer to CHANGELOG.md for details.

v0.22.0-beta.15

Please refer to CHANGELOG.md for details.

v0.22.0-beta.14

Please refer to CHANGELOG.md for details.

v0.22.0-beta.13

Please refer to CHANGELOG.md for details.

v0.22.0-beta.12

Please refer to CHANGELOG.md for details.

v0.22.0-beta.11

Please refer to CHANGELOG.md for details.

v0.22.0-beta.10

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from prosekit's changelog.

0.22.0

Minor Changes

  • ea024fe

    Add a followCursor option to AutocompleteRule and a matching AutocompleteRoot prop that keep the match end anchored to the text cursor, so cursor movement grows and shrinks the query over existing text instead of dismissing the match.

  • a04e5e1

    Add a queryBuilder prop to AutocompleteRoot to customize the query string built from the regex match.

  • 59b7648

    Add getMarkRange, which returns the contiguous range of a mark touching a resolved position. A position at either edge of the run counts as touching it, and a neighbouring mark that differs in attributes starts a new run.

  • 45f91d5

    Allow InlinePopoverRoot to accept a custom anchor for popup positioning. When set, the inline popover is positioned against the provided element or virtual element instead of the current text selection.

  • 5e750c7

    Add a create method to mark builders (editor.marks.<name>.create(attrs?) and the builders returned by createMarkBuilders). It returns a bare Mark instance with optional, typed attributes, without applying it to any children.

  • 026daed

    Add createNodeBuilders and createMarkBuilders, which turn a schema into typed node and mark factory functions without needing an editor instance. They behave like editor.nodes and editor.marks but omit isActive, so they are convenient for building documents in tests or on the server.

  • 2800bb4

    Add a setSearchQuery command that updates the search query and selects the first match at or after the caret, plus getSearchStatus and defineSearchStatusHandler for rendering a match counter. defineSearchQuery can now be called without options to store an empty query.

  • 625bba6

    Add triggerAutocomplete to open the autocomplete menu programmatically.

Patch Changes

  • 03186d7

    Write ProseMirror-native clipboard data (data-pm-slice HTML and plain text) when dragging a block with the block handle, so a drop into another editor keeps the block intact, and clear the stale dragging state on the source view after the drag ends.

  • bb984ad

    Avoid focusing the editor view from the block handle after the view has been destroyed.

  • 5ff866e

    Position the drop indicator relative to its offset parent.

... (truncated)

Commits

Updates react from 19.2.6 to 19.2.8

Release notes

Sourced from react's releases.

19.2.8 (July 21st, 2026)

React Server Components

19.2.7 (June 1st, 2026)

React Server Components

Changelog

Sourced from react's changelog.

19.2.7 (June 1, 2026)

React Server Components

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for react since your current version.


Updates react-dom from 19.2.6 to 19.2.8

Release notes

Sourced from react-dom's releases.

19.2.8 (July 21st, 2026)

React Server Components

19.2.7 (June 1st, 2026)

React Server Components

Changelog

Sourced from react-dom's changelog.

19.2.7 (June 1, 2026)

React Server Components

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for react-dom since your current version.


Updates @types/react-dom from 19.2.3 to 19.2.4

Commits

Updates yjs from 13.6.30 to 13.6.32

Release notes

Sourced from yjs's releases.

v13.6.32

  • fix #797 - undomanager clears destroy handler 95e890d9

yjs/yjs@v13.6.31...v13.6.32

v13.6.31

  • Merge branch &#39;ppiotrowicz-fix/757-undo-attr-redo&#39; into v13 1ddba7e4
  • fix #757 in v13 d9aaff72
  • fix undoing setAttribute combined with delete corrupts remote state - closes #757 67c809ee

yjs/yjs@v13.6.30...v13.6.31

Commits

Updates @biomejs/biome from 2.4.15 to 2.5.9

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.5.9

2.5.9

Patch Changes

  • #11321 41386f3 Thanks @​dyc3! - Fixed #11315: The CSS parser now recovers at declaration boundaries after bogus declarations, allowing subsequent valid declarations to be parsed.

  • #11248 57b197e Thanks @​yanthomasdev! - Expanded the environment variable metadata used by biome rage to include BIOME_BINARY, BIOME_LOG_FILE, and RUST_BACKTRACE as well as reworded explanations for better readability.

  • #11377 a8798ea Thanks @​Netail! - Added a new nursery rule useNamedLayer which disallows anonymous cascade layers.

    @layer {
      a {
        color: red;
      }
    }
  • #11327 6771cf5 Thanks @​dyc3! - The HTML formatter now preserves meaningful blank lines in HTML, including spacing after elements with trailing spaces and blank lines between comment groups.

     <div>
       <!-- first group -->
    +
       <!-- second group -->
     </div>
  • #10312 ba8aa18 Thanks @​dyc3! - Added the nursery rule useTailwindShorthandClasses, which suggests shorter Tailwind utility classes. For example, the rule suggests replacing w-4 h-4 with size-4.

  • #11333 715e0cd Thanks @​kkkhs! - Fixed #11328: lint/nursery/useExpect now recognizes Vitest Browser Mode expect.element() calls as assertions.

  • #11343 9b98211 Thanks @​johncarmack1984! - Fixed #11311: the CSS parser now accepts Tailwind container-query variant names in @variant, such as @xl and @max-xl. These previously produced a parse error and a noUnknownAtRules diagnostic.

    @variant @xl {
      div {
        background: red;
      }
    }
  • #11220 3e8c488 Thanks @​santichausis! - Fixed #9541: noUndeclaredVariables, noUnusedImports, and noUnusedVariables now correctly recognise exported variables and functions declared in one embedded <script> block as usable from a sibling <script> block, in Svelte's <script module>/<script> pair and Vue's non-setup <script> blocks.

    For example, Biome no longer reports greet as undeclared in the following Svelte component:

    <script module>

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.5.9

Patch Changes

  • #11321 41386f3 Thanks @​dyc3! - Fixed #11315: The CSS parser now recovers at declaration boundaries after bogus declarations, allowing subsequent valid declarations to be parsed.

  • #11248 57b197e Thanks @​yanthomasdev! - Expanded the environment variable metadata used by biome rage to include BIOME_BINARY, BIOME_LOG_FILE, and RUST_BACKTRACE as well as reworded explanations for better readability.

  • #11377 a8798ea Thanks @​Netail! - Added a new nursery rule useNamedLayer which disallows anonymous cascade layers.

    @layer {
      a {
        color: red;
      }
    }
  • #11327 6771cf5 Thanks @​dyc3! - The HTML formatter now preserves meaningful blank lines in HTML, including spacing after elements with trailing spaces and blank lines between comment groups.

     <div>
       <!-- first group -->
    +
       <!-- second group -->
     </div>
  • #10312 ba8aa18 Thanks @​dyc3! - Added the nursery rule useTailwindShorthandClasses, which suggests shorter Tailwind utility classes. For example, the rule suggests replacing w-4 h-4 with size-4.

  • #11333 715e0cd Thanks @​kkkhs! - Fixed #11328: lint/nursery/useExpect now recognizes Vitest Browser Mode expect.element() calls as assertions.

  • #11343 9b98211 Thanks @​johncarmack1984! - Fixed #11311: the CSS parser now accepts Tailwind container-query variant names in @variant, such as @xl and @max-xl. These previously produced a parse error and a noUnknownAtRules diagnostic.

    @variant @xl {
      div {
        background: red;
      }
    }
  • #11220 3e8c488 Thanks @​santichausis! - Fixed #9541: noUndeclaredVariables, noUnusedImports, and noUnusedVariables now correctly recognise exported variables and functions declared in one embedded <script> block as usable from a sibling <script> block, in Svelte's <script module>/<script> pair and Vue's non-setup <script> blocks.

    For example, Biome no longer reports greet as undeclared in the following Svelte component:

    <script module>
      export function greet() {
        console.log("Hello!");

... (truncated)

Commits

Updates @playwright/test from 1.60.0 to 1.62.1

Release notes

Sourced from @​playwright/test's releases.

v1.62.1

Bug Fixes

  • #41989 [Regression]: tsconfig "extends" bare specifier isn't resolved via node_modules walk-up like tsc (fatal since 1.62)
  • #41998 [Regression]: directory-form tsconfig project references ("path": "../pkg") fail to resolve (fatal since 1.62)
  • #41985 Accessibility snapshot drops button name when text is nested inside spans with aria-hidden SVG
  • #42000 [Regression]: page.evaluate() arg of a branded primitive type (string & { brand }) no longer type-checks since 1.62
  • #42013 [BUG]Image-type actionable elements are not presented in the snapshot.

v1.62.0

🧱 New component testing model

Component testing moves to a stories and galleries model. A story wraps your component in one specific scenario — hard-coded props, mock data, providers — and a gallery page that you serve renders stories on demand. The new fixtures.mount() fixture navigates to the gallery, mounts a story by id, and returns a Locator scoped to the story's root element:

test('click should expand', async ({ mount }) => {
  const component = await mount('components/Expandable/Stateful');
  await component.getByRole('button').click();
  await expect(component.getByTestId('expanded')).toHaveValue('true');
});

Pass a story type as a template argument to type-check its props, and use update(props) / unmount() on the returned locator to re-render or tear down within a test.

🛑 Cancel operations with AbortSignal

Most operations and web-first assertions now accept a signal option that takes an AbortSignal, letting you cancel long-running actions, navigations, waits, and assertions:

const controller = new AbortController();
setTimeout(() => controller.abort(), 1000);
await page.getByRole('button', { name: 'Submit' }).click({ signal: controller.signal });
await expect(page.getByText('Done')).toBeVisible({ signal: controller.signal });

Providing a signal does not disable the default timeout; pass timeout: 0 to disable it.

🖼️ WebP screenshots

expect(page).toHaveScreenshot() and expect(locator).toHaveScreenshot() can now store snapshots in the WebP format — just give the snapshot a .webp name:

// Visual comparisons store the golden snapshot as lossless WebP.
await expect(page).toHaveScreenshot('homepage.webp');
// Standalone screenshots can trade quality for size with lossy WebP.
await page.screenshot({ path: 'homepage.webp', quality: 50 });
</tr></table>

... (truncated)

Commits
  • 26a9e47 cherry-pick(#42043): docs: release notes for v1.62 Python, Java, and .NET (#4...
  • 0a81d5d cherry-pick(#42040): docs(release-notes): mention the isolated headless clipb...
  • 8376826 cherry-pick(#42034): fix(aria): keep icon-only clickable elements in ai snaps...
  • 66c5cc9 chore: mark v1.62.1 (#42020)
  • 9672bc3 cherry-pick(#42009): fix(types): support branded primitives in evaluate argum...
  • 4325804 cherry-pick(#41988): fix(aria): preserve names from collapsed text contributors
  • 9632f8e cherry-pick(#42005): fix(tsconfig): do not throw when "extends"/"references" ...
  • e3950d9 chore: mark v1.62.0 (#41981)
  • f07e0f7 cherry-pick(#41940): docs: release notes for v1.62 (#41967)
  • 05a306c cherry-pick(#41964): Revert "feat(routeFromHar): add interceptAPIRequests opt...
  • Additional commits viewable in compare view

Updates @tsconfig/bun from 1.0.10 to 1.0.11

Commits

Updates @types/react-dom from 19.2.3 to 19.2.4

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

… updates

Bumps the minor-and-patch group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [es-toolkit](https://github.com/toss/es-toolkit) | `1.46.1` | `1.51.0` |
| [prosekit](https://github.com/prosekit/prosekit/tree/HEAD/packages/prosekit) | `0.20.2` | `0.22.0` |
| [react](https://github.com/react/react/tree/HEAD/packages/react) | `19.2.6` | `19.2.8` |
| [react-dom](https://github.com/react/react/tree/HEAD/packages/react-dom) | `19.2.6` | `19.2.8` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.2.3` | `19.2.4` |
| [yjs](https://github.com/yjs/yjs) | `13.6.30` | `13.6.32` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.4.15` | `2.5.9` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.60.0` | `1.62.1` |
| [@tsconfig/bun](https://github.com/tsconfig/bases/tree/HEAD/bases) | `1.0.10` | `1.0.11` |



Updates `es-toolkit` from 1.46.1 to 1.51.0
- [Release notes](https://github.com/toss/es-toolkit/releases)
- [Changelog](https://github.com/toss/es-toolkit/blob/main/CHANGELOG.md)
- [Commits](toss/es-toolkit@v1.46.1...v1.51.0)

Updates `prosekit` from 0.20.2 to 0.22.0
- [Release notes](https://github.com/prosekit/prosekit/releases)
- [Changelog](https://github.com/prosekit/prosekit/blob/master/packages/prosekit/CHANGELOG.md)
- [Commits](https://github.com/prosekit/prosekit/commits/v0.22.0/packages/prosekit)

Updates `react` from 19.2.6 to 19.2.8
- [Release notes](https://github.com/react/react/releases)
- [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/react/react/commits/v19.2.8/packages/react)

Updates `react-dom` from 19.2.6 to 19.2.8
- [Release notes](https://github.com/react/react/releases)
- [Changelog](https://github.com/react/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/react/react/commits/v19.2.8/packages/react-dom)

Updates `@types/react-dom` from 19.2.3 to 19.2.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `yjs` from 13.6.30 to 13.6.32
- [Release notes](https://github.com/yjs/yjs/releases)
- [Commits](yjs/yjs@v13.6.30...v13.6.32)

Updates `@biomejs/biome` from 2.4.15 to 2.5.9
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.5.9/packages/@biomejs/biome)

Updates `@playwright/test` from 1.60.0 to 1.62.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.60.0...v1.62.1)

Updates `@tsconfig/bun` from 1.0.10 to 1.0.11
- [Commits](https://github.com/tsconfig/bases/commits/HEAD/bases)

Updates `@types/react-dom` from 19.2.3 to 19.2.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

---
updated-dependencies:
- dependency-name: es-toolkit
  dependency-version: 1.51.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: prosekit
  dependency-version: 0.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: react
  dependency-version: 19.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react-dom
  dependency-version: 19.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/react-dom"
  dependency-version: 19.2.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: yjs
  dependency-version: 13.6.32
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@biomejs/biome"
  dependency-version: 2.5.9
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@playwright/test"
  dependency-version: 1.62.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@tsconfig/bun"
  dependency-version: 1.0.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/react-dom"
  dependency-version: 19.2.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 21, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants