Skip to content

chore(deps): bump the production-dependencies group with 11 updates#814

Closed
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/npm_and_yarn/production-dependencies-fe5086fe0d
Closed

chore(deps): bump the production-dependencies group with 11 updates#814
dependabot[bot] wants to merge 1 commit into
devfrom
dependabot/npm_and_yarn/production-dependencies-fe5086fe0d

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Apr 16, 2026

Copy link
Copy Markdown
Contributor

Bumps the production-dependencies group with 11 updates:

Package From To
@fontsource-variable/montserrat 5.0.20 5.2.8
@fontsource/balsamiq-sans 5.0.21 5.2.8
immer 10.1.1 11.1.4
konva 9.3.22 10.2.5
react 18.3.1 19.2.5
react-dom 18.3.1 19.2.5
react-konva 18.2.14 19.2.3
react-konva-utils 1.1.3 2.0.0
use-debounce 10.0.4 10.1.1
use-image 1.1.1 1.1.4
uuid 10.0.0 13.0.0

Updates @fontsource-variable/montserrat from 5.0.20 to 5.2.8

Commits

Updates @fontsource/balsamiq-sans from 5.0.21 to 5.2.8

Commits

Updates immer from 10.1.1 to 11.1.4

Release notes

Sourced from immer's releases.

v11.1.4

11.1.4 (2026-02-10)

Bug Fixes

  • handle nested proxies after spreading and inserting into an array (90a7765)

v11.1.3

11.1.3 (2025-12-29)

Bug Fixes

v11.1.2

11.1.2 (2025-12-29)

Bug Fixes

  • bogus commit to retest release (c329ddb)

v11.1.0

11.1.0 (2025-12-20)

This feature release adds a new optional "array method overrides" plugin that significantly speeds up array methods when accessing drafts.

Changelog

Performance Improvements

As part of the recent performance optimization work, our benchmarks showed that all Proxy-based immutable update libraries were drastically slower than vanilla JS when calling both mutating and non-mutating array methods. After investigation, it turns out that an array method like arr.filter() causes the Proxy's get trap to trigger for every single item in the array. This in turn forces creation of a new Proxy and internal Immer metadata for every item, even though this was just a read operation and no items were being updated.

This release adds a new enableArrayMethods plugin that will override draft array methods to bypass the draft and directly operate on the underlying wrapped array instance. This significantly speeds up array operations.

When enabled, the plugin overrides these array methods:

  • Mutating: push, pop, shift, unshift, splice, reverse, sort
  • Non-mutating: filter, slice, concat, flat, find, findIndex, findLast, findLastIndex, some, every, indexOf, lastIndexOf, includes, join, toString, toLocaleString

Our benchmarks show that the overridden methods (plus the other perf changes in Immer 10.2 and 11.0) are 50-80% faster than the baseline behavior of Immer 10.1.

The plugin adds about 1.5-2K minified to Immer's bundle size.

It's important to note that the plugin does change the "safe to mutate a draft" semantics of Immer. Any of these methods that receives an array item as a callback argument will not automatically wrap that item in a Proxy!. That means that if you try to mutate an argument in a method such as filter, it will actually mutate the real underlying object, which will cause bugs in your app. This is an intentional design tradeoff. Semantically, all of these methods imply read-only access to array values, so if your code tries to mutate an array item in a callback, that is a bug in your code.

Note that this does not override map, flatMap, forEach, or reduce / reduceRight. Those methods do imply either side effects and potential mutations, or returning arbitrary values. Given that, we determined it was both safest and simplest to keep their behavior as-is.

... (truncated)

Commits
  • cdccf1a Merge pull request #1210 from immerjs/bugfix/1209-array-plugin-nested-drafts
  • 90a7765 fix: handle nested proxies after spreading and inserting into an array
  • 570c800 chore(tests): add vitest globals to tsconfig.json (#1196)
  • 78ea694 fix: recursive T for WritableDraft (#1197)
  • c329ddb fix: bogus commit to retest release
  • b208d58 fix: Fix broken array patching and ensure all values in draft Maps/Sets are f...
  • d626513 Merge pull request #1198 from immerjs/feature/array-plugin-docs
  • 0fffdc2 Actually add array plugin to docs
  • 34fd86d chore(deps-dev): bump vite from 5.4.20 to 5.4.21 (#1185)
  • 406ade9 chore(deps): bump node-forge from 1.3.1 to 1.3.3 in /website (#1195)
  • Additional commits viewable in compare view

Updates konva from 9.3.22 to 10.2.5

Release notes

Sourced from konva's releases.

10.2.5

Commits

  • 9e34328: fix safari text + shadow + opacity render (Anton Lavrevov)
  • 2315976: update CHANGELOG with new version (Anton Lavrevov)
  • ff7faac: build for 10.2.5 (Anton Lavrevov)
  • 0fe9f92: update cdn link (Anton Lavrevov)

10.2.4

Commits

  • 8c487a1: update CHANGELOG with new version (Anton Lavrevov)
  • 46ac72c: build for 10.2.3 (Anton Lavrevov)
  • 811d62a: update cdn link (Anton Lavrevov)
  • 2528fb0: fixed fire execution order (Anton Lavrevov)
  • 7d704c0: update CHANGELOG with new version (Anton Lavrevov)
  • d69786e: build for 10.2.4 (Anton Lavrevov)
  • 5193253: update cdn link (Anton Lavrevov)

10.2.3

Commits

  • 6f3e7f5: fix possible crash on drag + transformer (Anton Lavrevov)
  • 4fd2712: update CHANGELOG with new version (Anton Lavrevov)
  • 167c30f: build for 10.2.3 (Anton Lavrevov)
  • a537685: update cdn link (Anton Lavrevov)

10.2.2

Commits

  • 60506b5: fix possible incorrect structure (Anton Lavrevov)
  • e3e8618: changes (Anton Lavrevov)
  • c2ff284: update CHANGELOG with new version (Anton Lavrevov)
  • 4dd3e9d: build for 10.2.2 (Anton Lavrevov)
  • c7776f0: update cdn link (Anton Lavrevov)

10.2.1

Bug Fixes

Code Refactoring

Tests

Commits

  • 4e86b83: Initial plan (copilot-swe-agent[bot]) #2027
  • 752d4e1: Add failing test for drag button value in dragstart event (copilot-swe-agent[bot]) #2027
  • 61128a6: Fix drag button always being 0 by storing start event (copilot-swe-agent[bot]) #2027
  • 6830409: Add comment explaining fallback logic in startDrag (copilot-swe-agent[bot]) #2027
  • 0863c42: Initial plan (copilot-swe-agent[bot]) #2028
  • a43dcdf: Add TypeScript overload for Node.on event delegation pattern (copilot-swe-agent[bot]) #2028

... (truncated)

Changelog

Sourced from konva's changelog.

10.2.5 (2026-04-11)

  • Fixed transparent text with shadow render in Safari

10.2.4 (2026-04-10)

  • Fixed possible event execution order

10.2.3 (2026-03-16)

  • More crash fixes

10.2.1 (2026-03-13)

  • Fix possible crash

10.2.0 (2026-01-15)

  • Added rotateAnchorAngle property to Transformer to control the position of the rotation anchor around the bounding box

10.1.0 (2026-01-14)

  • Added underline offset option and related test for Text Annotation
  • Fixed large memory usage on cache
  • Fix bounding box calculation for bezier lines
  • Fixed cached render with buffer canvas is used

10.0.12 (2025-11-21)

  • Better canvas farbling detection logic

10.0.11 (2025-11-20)

  • Fixed broken release

10.0.10 (2025-11-20)

  • Update hit detection system to handle canvas farbling. Hit detection should work better on Brave browser. Thanks @​wiverson to the idea and implementation idea.

10.0.9 (2025-11-08)

  • Fixed line-through rendering when letter spacing is used

10.0.8 (2025-10-24)

  • Fixed opacity level when a cached shape has opacity, fill and stroke

10.0.7 (2025-10-22)

  • Fixed image element size re-calculation when change is changed with transformer is used.

... (truncated)

Commits

Updates react from 18.3.1 to 19.2.5

Release notes

Sourced from react's releases.

19.2.5 (April 8th, 2026)

React Server Components

19.2.4 (January 26th, 2026)

React Server Components

19.2.3 (December 11th, 2025)

React Server Components

19.2.2 (December 11th, 2025)

React Server Components

19.2.1 (December 3rd, 2025)

React Server Components

19.2.0 (Oct 1, 2025)

Below is a list of all new features, APIs, and bug fixes.

Read the React 19.2 release post for more information.

New React Features

  • <Activity>: A new API to hide and restore the UI and internal state of its children.
  • useEffectEvent is a React Hook that lets you extract non-reactive logic into an Effect Event.
  • cacheSignal (for RSCs) lets your know when the cache() lifetime is over.
  • React Performance tracks appear on the Performance panel’s timeline in your browser developer tools

New React DOM Features

  • Added resume APIs for partial pre-rendering with Web Streams:
  • Added resume APIs for partial pre-rendering with Node Streams:
  • Updated prerender APIs to return a postponed state that can be passed to the resume APIs.

Notable changes

  • React DOM now batches suspense boundary reveals, matching the behavior of client side rendering. This change is especially noticeable when animating the reveal of Suspense boundaries e.g. with the upcoming <ViewTransition> Component. React will batch as much reveals as possible before the first paint while trying to hit popular first-contentful paint metrics.

... (truncated)

Changelog

Sourced from react's changelog.

19.2.1 (Dec 3, 2025)

React Server Components

19.2.0 (October 1st, 2025)

Below is a list of all new features, APIs, and bug fixes.

Read the React 19.2 release post for more information.

New React Features

  • <Activity>: A new API to hide and restore the UI and internal state of its children.
  • useEffectEvent is a React Hook that lets you extract non-reactive logic into an Effect Event.
  • cacheSignal (for RSCs) lets your know when the cache() lifetime is over.
  • React Performance tracks appear on the Performance panel’s timeline in your browser developer tools

New React DOM Features

  • Added resume APIs for partial pre-rendering with Web Streams:
  • Added resume APIs for partial pre-rendering with Node Streams:
  • Updated prerender APIs to return a postponed state that can be passed to the resume APIs.

Notable changes

  • React DOM now batches suspense boundary reveals, matching the behavior of client side rendering. This change is especially noticeable when animating the reveal of Suspense boundaries e.g. with the upcoming <ViewTransition> Component. React will batch as much reveals as possible before the first paint while trying to hit popular first-contentful paint metrics.
  • Add Node Web Streams (prerender, renderToReadableStream) to server-side-rendering APIs for Node.js
  • Use underscore instead of : IDs generated by useId

All Changes

React

... (truncated)

Commits

Updates react-dom from 18.3.1 to 19.2.5

Release notes

Sourced from react-dom's releases.

19.2.5 (April 8th, 2026)

React Server Components

19.2.4 (January 26th, 2026)

React Server Components

19.2.3 (December 11th, 2025)

React Server Components

19.2.2 (December 11th, 2025)

React Server Components

19.2.1 (December 3rd, 2025)

React Server Components

19.2.0 (Oct 1, 2025)

Below is a list of all new features, APIs, and bug fixes.

Read the React 19.2 release post for more information.

New React Features

  • <Activity>: A new API to hide and restore the UI and internal state of its children.
  • useEffectEvent is a React Hook that lets you extract non-reactive logic into an Effect Event.
  • cacheSignal (for RSCs) lets your know when the cache() lifetime is over.
  • React Performance tracks appear on the Performance panel’s timeline in your browser developer tools

New React DOM Features

  • Added resume APIs for partial pre-rendering with Web Streams:
  • Added resume APIs for partial pre-rendering with Node Streams:
  • Updated prerender APIs to return a postponed state that can be passed to the resume APIs.

Notable changes

  • React DOM now batches suspense boundary reveals, matching the behavior of client side rendering. This change is especially noticeable when animating the reveal of Suspense boundaries e.g. with the upcoming <ViewTransition> Component. React will batch as much reveals as possible before the first paint while trying to hit popular first-contentful paint metrics.

... (truncated)

Changelog

Sourced from react-dom's changelog.

19.2.1 (Dec 3, 2025)

React Server Components

19.2.0 (October 1st, 2025)

Below is a list of all new features, APIs, and bug fixes.

Read the React 19.2 release post for more information.

New React Features

  • <Activity>: A new API to hide and restore the UI and internal state of its children.
  • useEffectEvent is a React Hook that lets you extract non-reactive logic into an Effect Event.
  • cacheSignal (for RSCs) lets your know when the cache() lifetime is over.
  • React Performance tracks appear on the Performance panel’s timeline in your browser developer tools

New React DOM Features

  • Added resume APIs for partial pre-rendering with Web Streams:
  • Added resume APIs for partial pre-rendering with Node Streams:
  • Updated prerender APIs to return a postponed state that can be passed to the resume APIs.

Notable changes

  • React DOM now batches suspense boundary reveals, matching the behavior of client side rendering. This change is especially noticeable when animating the reveal of Suspense boundaries e.g. with the upcoming <ViewTransition> Component. React will batch as much reveals as possible before the first paint while trying to hit popular first-contentful paint metrics.
  • Add Node Web Streams (prerender, renderToReadableStream) to server-side-rendering APIs for Node.js
  • Use underscore instead of : IDs generated by useId

All Changes

React

... (truncated)

Commits

Updates react-konva from 18.2.14 to 19.2.3

Release notes

Sourced from react-konva's releases.

v19.2.2

Commits

  • f2d2e37: Fixed render effects order (Anton Lavrevov)
  • 81c9229: 19.2.2 (Anton Lavrevov)

v19.2.1

Commits

  • a567f87: migrate to vitest (Anton Lavrevov)
  • bf82b30: fixes for react 19.2 (Anton Lavrevov)
  • da8a630: fix versions (Anton Lavrevov)
  • d31dedc: temporary (?) remove dev tools (Anton Lavrevov)
  • 0436869: Initial plan (copilot-swe-agent[bot]) #854
  • 64f0a57: Fix onTap and onDblTap interface types to use TouchEvent (copilot-swe-agent[bot]) #854
  • 6807028: update deps (Anton Lavrevov)
  • 91113e8: try fix error (Anton Lavrevov)
  • 1133f83: Fix stages re-order in StrictMode (Anton Lavrevov)
  • 48b60bf: Merge branch 'master' of github.com:konvajs/react-konva (Anton Lavrevov)
  • ebd27a4: 19.2.1 (Anton Lavrevov)

v19.0.10

Commits

  • 5192a96: add bridge into types (Anton Lavrevov)
  • d8af5c2: 19.0.10 (Anton Lavrevov)

v19.0.9

Commits

  • e6cbb43: 19.0.9 (Anton Lavrevov)

v19.0.8

Commits

  • 58887dc: update deps and docs (Anton Lavrevov)
  • 438f94b: support konva 10 (LitoMore) #846
  • 76a93ae: update konva version, export useContextBridge from its-fine (Anton Lavrevov)
  • 38c76cd: 19.0.8 (Anton Lavrevov)

v19.0.7

Commits

  • 2d9a114: fix headless chrome sandbox in tests (Anton Lavrenov) #838
  • c81ad1e: Merge branch 'master' of github.com:konvajs/react-konva (Anton Lavrevov)
  • 99fe020: add version (Anton Lavrevov)
  • 5f6157d: 19.0.7 (Anton Lavrevov)

v19.0.6

Commits

  • 3c94dfd: fix double event attach in strict mode. fix #839 (Anton Lavrevov)
  • 42741df: 19.0.6 (Anton Lavrevov)

v19.0.5

Commits

  • c36dddf: Fix type build error (Nathan Bierema) #837

... (truncated)

Commits

Updates react-konva-utils from 1.1.3 to 2.0.0

Updates use-debounce from 10.0.4 to 10.1.1

Release notes

Sourced from use-debounce's releases.

10.0.6

What's Changed

Full Changelog: xnimorz/use-debounce@10.0.5...10.0.6

10.0.5

What's Changed

New Contributors

Full Changelog: xnimorz/use-debounce@10.0.4...10.0.5

Changelog

Sourced from use-debounce's changelog.

10.1.1

  • replace global with globalThis which is defined in all possible environments (browser, node, workers) to address xnimorz/use-debounce#212

10.1.0

  • New parameter introduced: flushOnExit. See issue #205 for details. This parameter allows the callback to be executed on component unmount or page exit, enabling specific side-effect such as persistence or other required I/O operations. Thanks to @​h for the contribution. PR

10.0.5

Commits

Updates use-image from 1.1.1 to 1.1.4

Commits

Updates uuid from 10.0.0 to 13.0.0

Release notes

Sourced from uuid's releases.

v13.0.0

13.0.0 (2025-09-08)

⚠ BREAKING CHANGES

  • make browser exports the default (#901)

Bug Fixes

v12.0.0

12.0.0 (2025-09-05)

⚠ BREAKING CHANGES

  • update to typescript@5.2 (#887)
  • remove CommonJS support (#886)
  • drop node@16 support (#883)

Features

Bug Fixes

v11.1.0

11.1.0 (2025-02-19)

Features

  • update TS types to allowUint8Array subtypes for buffer option (#865) (a5231e7)

v11.0.5

11.0.5 (2025-01-09)

Bug Fixes

  • add TS unit test, pin to typescript@5.0.4 (#860) (24ac2fd)

... (truncated)

Changelog

Sourced from uuid's changelog.

13.0.0 (2025-09-08)

⚠ BREAKING CHANGES

  • make browser exports the default (#901)

Bug Fixes

12.0.0 (2025-09-05)

⚠ BREAKING CHANGES

  • update to typescript@5.2 (#887)
  • remove CommonJS support (#886)
  • drop node@16 support (#883)

Features

Bug Fixes

11.1.0 (2025-02-19)

Features

  • update TS types to allowUint8Array subtypes for buffer option (#865) (a5231e7)

11.0.5 (2025-01-09)

Bug Fixes

  • add TS unit test, pin to typescript@5.0.4 (#860) (24ac2fd)

11.0.4 (2025-01-05)

... (truncated)

Commits
Install script changes

This version modifies prepare script that runs during installation. Review the package contents before updating.


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

Bumps the production-dependencies group with 11 updates:

| Package | From | To |
| --- | --- | --- |
| [@fontsource-variable/montserrat](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/montserrat) | `5.0.20` | `5.2.8` |
| [@fontsource/balsamiq-sans](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/balsamiq-sans) | `5.0.21` | `5.2.8` |
| [immer](https://github.com/immerjs/immer) | `10.1.1` | `11.1.4` |
| [konva](https://github.com/konvajs/konva) | `9.3.22` | `10.2.5` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `18.3.1` | `19.2.5` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `18.3.1` | `19.2.5` |
| [react-konva](https://github.com/konvajs/react-konva) | `18.2.14` | `19.2.3` |
| react-konva-utils | `1.1.3` | `2.0.0` |
| [use-debounce](https://github.com/xnimorz/use-debounce) | `10.0.4` | `10.1.1` |
| [use-image](https://github.com/konvajs/use-image) | `1.1.1` | `1.1.4` |
| [uuid](https://github.com/uuidjs/uuid) | `10.0.0` | `13.0.0` |


Updates `@fontsource-variable/montserrat` from 5.0.20 to 5.2.8
- [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md)
- [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/montserrat)

Updates `@fontsource/balsamiq-sans` from 5.0.21 to 5.2.8
- [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md)
- [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/balsamiq-sans)

Updates `immer` from 10.1.1 to 11.1.4
- [Release notes](https://github.com/immerjs/immer/releases)
- [Commits](immerjs/immer@v10.1.1...v11.1.4)

Updates `konva` from 9.3.22 to 10.2.5
- [Release notes](https://github.com/konvajs/konva/releases)
- [Changelog](https://github.com/konvajs/konva/blob/master/CHANGELOG.md)
- [Commits](konvajs/konva@9.3.22...10.2.5)

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

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

Updates `react-konva` from 18.2.14 to 19.2.3
- [Release notes](https://github.com/konvajs/react-konva/releases)
- [Commits](https://github.com/konvajs/react-konva/commits)

Updates `react-konva-utils` from 1.1.3 to 2.0.0

Updates `use-debounce` from 10.0.4 to 10.1.1
- [Release notes](https://github.com/xnimorz/use-debounce/releases)
- [Changelog](https://github.com/xnimorz/use-debounce/blob/master/CHANGELOG.md)
- [Commits](https://github.com/xnimorz/use-debounce/commits)

Updates `use-image` from 1.1.1 to 1.1.4
- [Commits](https://github.com/konvajs/use-image/commits/v1.1.4)

Updates `uuid` from 10.0.0 to 13.0.0
- [Release notes](https://github.com/uuidjs/uuid/releases)
- [Changelog](https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md)
- [Commits](uuidjs/uuid@v10.0.0...v13.0.0)

---
updated-dependencies:
- dependency-name: "@fontsource-variable/montserrat"
  dependency-version: 5.2.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@fontsource/balsamiq-sans"
  dependency-version: 5.2.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: immer
  dependency-version: 11.1.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: konva
  dependency-version: 10.2.5
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react
  dependency-version: 19.2.5
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react-dom
  dependency-version: 19.2.5
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react-konva
  dependency-version: 19.2.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: react-konva-utils
  dependency-version: 2.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: use-debounce
  dependency-version: 10.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: use-image
  dependency-version: 1.1.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: uuid
  dependency-version: 13.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
...

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 Apr 16, 2026
@dependabot @github

dependabot Bot commented on behalf of github Apr 16, 2026

Copy link
Copy Markdown
Contributor Author

The group that created this PR has been removed from your configuration.

@dependabot dependabot Bot closed this Apr 16, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/production-dependencies-fe5086fe0d branch April 16, 2026 12:47
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