Skip to content

Bump the deps group across 1 directory with 14 updates#108

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/deps-4ebedcbe73
Open

Bump the deps group across 1 directory with 14 updates#108
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/deps-4ebedcbe73

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 14, 2025

Bumps the deps group with 14 updates in the / directory:

Package From To
@apollo/client 3.12.6 3.13.7
@types/lodash 4.17.14 4.17.16
dotenv 16.4.7 16.5.0
flowbite-react 0.10.2 0.11.7
jotai 2.11.0 2.12.3
lucide-react 0.473.0 0.488.0
mongodb 6.12.0 6.15.0
next 15.1.5 15.3.0
react 19.0.0 19.1.0
@types/react 19.0.7 19.1.1
react-dom 19.0.0 19.1.0
@types/react-dom 19.0.3 19.1.2
type-fest 4.32.0 4.39.1
zod 3.24.1 3.24.2

Updates @apollo/client from 3.12.6 to 3.13.7

Release notes

Sourced from @​apollo/client's releases.

v3.13.7

Patch Changes

v3.13.6

Patch Changes

v3.13.5

Patch Changes

  • #12461 12c8d06 Thanks @​jerelmiller! - Fix an issue where a cache-first query would return the result for previous variables when a cache update is issued after simultaneously changing variables and skipping the query.

v3.13.4

Patch Changes

v3.13.3

Patch Changes

  • #12362 f6d387c Thanks @​jerelmiller! - Fixes an issue where calling observableQuery.getCurrentResult() when the errorPolicy was set to all would return the networkStatus as NetworkStatus.ready when there were errors returned in the result. This has been corrected to report NetworkStatus.error.

    This bug also affected the useQuery and useLazyQuery hooks and may affect you if you check for networkStatus in your component.

v3.13.2

Patch Changes

  • #12409 6aa2f3e Thanks @​phryneas! - To mitigate problems when Apollo Client ends up more than once in the bundle, some unique symbols were converted into Symbol.for calls.

  • #12392 644bb26 Thanks @​Joja81! - Fixes an issue where the DeepOmit type would turn optional properties into required properties. This should only affect you if you were using the omitDeep or stripTypename utilities exported by Apollo Client.

  • #12404 4332b88 Thanks @​jerelmiller! - Show NaN rather than converting to null in debug messages from MockLink for unmatched variables values.

v3.13.1

Patch Changes

v3.13.0

Apollo Client v3.13.0 introduces a new hook, useSuspenseFragment, as a drop-in replacement for useFragment in apps that are using React Suspense. This is the “last” React hook we are introducing in 3.x - we think this rounds out the “big concepts” in our React Suspense and GraphQL fragment story. See the docs for information on this and our other Suspense-supporting hooks. There are some TypeScript quality-of-life improvements shipped in this release for observableQuery.updateQuery and subscribeToMore. Additionally, the return type of updateQuery now includes undefined to allow an early exit from updates. This was always supported at runtime, but was missed on the TypeScript side. On the runtime side, we’ve fixed query deduplication behavior for multipart responses and corrected the error handling in useMutation callbacks. onCompleted and onError in useQuery and useLazyQuery have been deprecated for multiple reasons. See below for full details 👀

Minor Changes

... (truncated)

Changelog

Sourced from @​apollo/client's changelog.

3.13.7

Patch Changes

3.13.6

Patch Changes

3.13.5

Patch Changes

  • #12461 12c8d06 Thanks @​jerelmiller! - Fix an issue where a cache-first query would return the result for previous variables when a cache update is issued after simultaneously changing variables and skipping the query.

3.13.4

Patch Changes

3.13.3

Patch Changes

  • #12362 f6d387c Thanks @​jerelmiller! - Fixes an issue where calling observableQuery.getCurrentResult() when the errorPolicy was set to all would return the networkStatus as NetworkStatus.ready when there were errors returned in the result. This has been corrected to report NetworkStatus.error.

    This bug also affected the useQuery and useLazyQuery hooks and may affect you if you check for networkStatus in your component.

3.13.2

Patch Changes

  • #12409 6aa2f3e Thanks @​phryneas! - To mitigate problems when Apollo Client ends up more than once in the bundle, some unique symbols were converted into Symbol.for calls.

  • #12392 644bb26 Thanks @​Joja81! - Fixes an issue where the DeepOmit type would turn optional properties into required properties. This should only affect you if you were using the omitDeep or stripTypename utilities exported by Apollo Client.

  • #12404 4332b88 Thanks @​jerelmiller! - Show NaN rather than converting to null in debug messages from MockLink for unmatched variables values.

3.13.1

Patch Changes

  • #12369 bdfc5b2 Thanks @​phryneas! - ObervableQuery.refetch: don't refetch with cache-and-network, swich to network-only instead

... (truncated)

Commits

Updates @types/lodash from 4.17.14 to 4.17.16

Commits

Updates dotenv from 16.4.7 to 16.5.0

Changelog

Sourced from dotenv's changelog.

16.5.0 (2025-04-07)

Added

  • 🎉 Added new sponsor Graphite - the AI developer productivity platform helping teams on GitHub ship higher quality software, faster.

[!TIP] Become a sponsor

The dotenvx README is viewed thousands of times DAILY on GitHub and NPM. Sponsoring dotenv is a great way to get in front of developers and give back to the developer community at the same time.

Changed

  • Remove _log method. Use _debug #862
Commits

Updates flowbite-react from 0.10.2 to 0.11.7

Release notes

Sourced from flowbite-react's releases.

flowbite-react@0.11.7

Patch Changes

flowbite-react@0.11.6

Patch Changes

flowbite-react@0.11.5

Patch Changes

flowbite-react@0.11.4

Patch Changes

flowbite-react@0.11.3

Patch Changes

  • #1543 868e485 Thanks @​SutuSebastian! - add new migrate CLI command

    • add new transformer from compound components to singular imports

      import { Button } from "flowbite-react";
      // from
      <Button.Group>
      <Button>tab 1</Button>
      <Button>tab 2</Button>
      <Button>tab 3</Button>
      </Button.Group>
      // to
      import { Button, ButtonGroup } from "flowbite-react";
      <ButtonGroup>
      <Button>tab 1</Button>
      <Button>tab 2</Button>
      <Button>tab 3</Button>
      </ButtonGroup>

flowbite-react@0.11.2

... (truncated)

Changelog

Sourced from flowbite-react's changelog.

0.11.7

Patch Changes

0.11.6

Patch Changes

0.11.5

Patch Changes

0.11.4

Patch Changes

0.11.3

Patch Changes

  • #1543 868e485 Thanks @​SutuSebastian! - add new migrate CLI command

    • add new transformer from compound components to singular imports

      import { Button } from "flowbite-react";
      // from
      <Button.Group>
      <Button>tab 1</Button>
      <Button>tab 2</Button>
      <Button>tab 3</Button>
      </Button.Group>
      // to
      import { Button, ButtonGroup } from "flowbite-react";
      <ButtonGroup>
      <Button>tab 1</Button>
      <Button>tab 2</Button>

... (truncated)

Commits

Updates jotai from 2.11.0 to 2.12.3

Release notes

Sourced from jotai's releases.

v2.12.3

This introduces an internal capability for jotai-devtools.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.12.2...v2.12.3

v2.12.2

It includes some refactors and some minor fixes.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.12.1...v2.12.2

v2.12.1

This fixes an internal behavior necessary for some Jotai ecosystem libraries.

What's Changed

Full Changelog: pmndrs/jotai@v2.12.0...v2.12.1

v2.12.0

This introduces a significant change in the history of Jotai development. The Jotai core aims to remain minimal while supporting the growth of the ecosystem. It now exposes some internal functions for the ecosystem.

For library authors, please make sure to pin the jotai package version if you rely on these internal functions.

Huge thanks to @​dmaskasky for helping finalize the API.

What's Changed

... (truncated)

Commits
  • 9bb6aa4 2.12.3
  • 98af186 chore: update dev dependencies (#3048)
  • cc8003d fix(react): experimental option to make attaching promise status controllable...
  • da57443 fix: expose an internal function for devtools (#3045)
  • 6419a35 ci(.github/workflows): rename 'compressed-size-action' to 'compressed-size' (...
  • ef36aa1 docs(README.md): change build badge url (#3032)
  • 5309d62 ci(.github/workflows): add 'test.yml' and rename job (#3031)
  • ec352d5 docs: fix typo (#3029)
  • 193835c docs: add jotai-history website docs (#3025)
  • 7ce754a chore(eslint.config.mjs): update 'eslint-plugin-react-hooks', 'eslint-plugin-...
  • Additional commits viewable in compare view

Updates lucide-react from 0.473.0 to 0.488.0

Release notes

Sourced from lucide-react's releases.

Version 0.488.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.487.0...0.488.0

Version 0.487.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.486.0...0.487.0

Version 0.486.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.485.0...0.486.0

Version 0.485.0

What's Changed

Full Changelog: lucide-icons/lucide@0.484.0...0.485.0

Version 0.484.0

What's Changed

... (truncated)

Commits
  • ed73391 build(deps-dev): bump vite from 5.4.14 to 5.4.15 (#2946)
  • 4835ae6 fix(packages): consistent icon name class (#2878)
  • 07f9d3e ci(node): Use correct node version (#2877)
  • 1787b82 build(deps-dev): bump vite from 5.4.13 to 5.4.14 in /packages/lucide (#2804)
  • b46927e fix(lucide-react): Revert exports property package.json, fixing edge worker e...
  • 3ab6c37 build(deps-dev): bump vite from 5.4.12 to 5.4.13 (#2798)
  • ba2c4b5 build(deps-dev): bump vite from 5.1.8 to 5.4.12 (#2786)
  • 50630b3 ci: Improve build speeds (#2778)
  • 961404d replace keyof ReactSVG with SVGElementType (#2668)
  • See full diff in compare view

Updates mongodb from 6.12.0 to 6.15.0

Release notes

Sourced from mongodb's releases.

v6.15.0

6.15.0 (2025-03-18)

The MongoDB Node.js team is pleased to announce version 6.15.0 of the mongodb package!

Release Notes

Support for custom AWS credential providers

The driver now supports a user supplied custom AWS credentials provider for both authentication and for KMS requests when using client side encryption. The signature for the custom provider must be of () => Promise<AWSCredentials> which matches that of the official AWS SDK provider API. Provider chains from the actual AWS SDK can also be provided, allowing users to customize any of those options.

Example for authentication with a provider chain from the AWS SDK:

import { fromNodeProviderChain } from '@aws-sdk/credential-providers';
const client = new MongoClient(process.env.MONGODB_URI, {
authMechanismProperties: {
AWS_CREDENTIAL_PROVIDER: fromNodeProviderChain()
}
});

Example for using a custom provider for KMS requests only:

import { fromNodeProviderChain } from '@aws-sdk/credential-providers';
const client = new MongoClient(process.env.MONGODB_URI, {
autoEncryption: {
keyVaultNamespace: 'keyvault.datakeys',
kmsProviders: { aws: {} },
credentialProviders: {
aws: fromNodeProviderChain()
}
}
}

Custom providers do not need to come from the AWS SDK, they just need to be an async function that returns credentials:

const client = new MongoClient(process.env.MONGODB_URI, {
  authMechanismProperties: {
    AWS_CREDENTIAL_PROVIDER: async () => {
      return {
        accessKeyId: process.env.ACCESS_KEY_ID,
        secretAccessKey: process.env.SECRET_ACCESS_KEY
</tr></table> 

... (truncated)

Changelog

Sourced from mongodb's changelog.

6.15.0 (2025-03-18)

Features

Bug Fixes

  • NODE-6845: ensure internal rejections are handled (#4448) (06e941a)

6.14.2 (2025-03-04)

Bug Fixes

  • NODE-6803: kms proxy socket creates unhandled rejection (#4444) (ed69cf9)

6.14.1 (2025-03-03)

Bug Fixes

  • NODE-6801: set token on connection from cache (#4438) (cb13746)

6.14.0 (2025-02-28)

Features

  • NODE-6676: add support for nsType in change stream create events (#4431) (7800067)
  • NODE-6773: add support for $lookup with automatic encryption (#4427) (965b21a)

Bug Fixes

  • NODE-6765: FindOneAndUpdateOptions supports aggregation expressions (#4423) (421ddeb)
  • NODE-6792: use isUint8Array from driver's utils instead of util/types (#4436) (dfe1fba)
  • NODE-6794: revert @aws-sdk/credential-providers peer compatibility change (#4437) (488c407)

6.13.1 (2025-02-20)

Bug Fixes

  • NODE-6407: use conversationId returned from server in saslContinue (#4368) (fbefa6b)
  • NODE-6613: Update error messages when primaries go stale (#4397) (6528c8d)
  • NODE-6690: Remove extraneous Document in replaceOne return type (#4383) (6c81d4e)
  • NODE-6763: pass WriteConcernOptions instead on WriteConcernSettings (#4421) (26f15d7)

... (truncated)

Commits
  • aa5a979 chore(main): release 6.15.0 [skip-ci] (#4463)
  • 8a9f251 ci: skip flaky test in CSOT test suite (#4475)
  • 78d951b docs: generate docs from latest main [skip-ci] (#4450)
  • 2295824 ci: skip flaky test in abort signal test suite (#4470)
  • e927f97 ci: skip flaky test in CSOT test suite (#4469)
  • b36976e docs(NODE-6819): remove mention of yarn from readme and update server compa...
  • d341a72 ci: skip flaky tests in FLE test suite (#4467)
  • 0083b8e ci: skip flaky test in CSOT test suite (#4471)
  • cd09d43 ci: skip flaky tests in retryable reads and sdam suites (#4466)
  • 86d4ca1 ci(NODE-6519,NODE-6702): fix flaky listIndexes APM test and rtt calculation t...
  • Additional commits viewable in compare view

Updates next from 15.1.5 to 15.3.0

Release notes

Sourced from next's releases.

v15.3.0

Core Changes

  • [dev-overlay] Customize <select> styling for consistency: #76973
  • Upgrade React from 029e8bd6-20250306 to 0ca3deeb-20250311: #76989
  • [metadata]: add pinterest meta tag: #76988
  • [dev-overlay] ensure stripping overlay bundle in prod build: #76976
  • Apply env inlining during generate build mode: #76990
  • Turbopack: Implement deploymentId: #76904
  • track persistent caching usage: #76996
  • [metadata] re-insert icons to head for streamed metadata: #76915
  • Upgrade React from 0ca3deeb-20250311 to 6aa8254b-20250312: #77033
  • Move static-env imports: #77035
  • [dev-overlay] Add size setting to preferences: #77027
  • Add config for only generating static env: #77038
  • chore(HMR clients): Clean up and share code between app and pages router: #76960
  • Add dev warning for cross-origin and stabilize allowedDevOrigins: #77044
  • unify allowed origin detection handling: #77053
  • Handle hash change in all files for static env: #77058
  • [dev-overlay] highlight errored code line for runtime errors: #77078
  • NFT: Ignore all of Webpack: #77081
  • Add experimental build mode flag for env: #77089
  • (feat) support client-side instrumentation: #76916
  • Fix JSDoc comment for 'seconds' cache life profile: #77084
  • refactor(HMR clients): Encapsulate some of the turbopack state tracking into a shared TurbopackHmr class: #76994
  • Slightly improve error handling for unknown server actions: #77135
  • Fix output standalone for alternative bundler: #76971
  • Add alternate bundler plugin information to next info: #77059
  • [metadata] remove the default segement check for metadata rendering: #77119
  • [dev-overlay] Fix stacking order of highlighted line: #77189
  • Upgrade React from 6aa8254b-20250312 to 5398b711-20250314: #77129
  • fix(styled-jsx): Pass useLightningcss option to styled-jsx correctly: #77008
  • log the instrumentation-client execution time: #77121
  • Turbopack: canary-gate production builds: #77146
  • [dev-overlay] remove special handling for missing tag error : #77147
  • chore(react-dev-overlay): Remove confusingly underscored variables in useErrorOverlayReducer: #77205
  • Update middleware request header: #77201
  • Update default allowed origins list: #77212
  • Ensure deploymentId is used for CSS preloads: #77210
  • chore(HMR clients): Fix a bunch of typescript errors by including the appropriate webpack type declarations: #77207
  • Update cache handler interface: #76687
  • Turbopack: don't include AMP optimizer in NFT: #77242
  • Server actions should not read stale data after calling revalidate*: #76885
  • [dev-overlay] Blur fader for scrollable container: #77196
  • Make revalidate* work when followed by a redirect in a route handler: #77090
  • feat: onNavigate for link: #77209
  • fix: pass telemetry plugin rspack tests: #77257
  • feat(eslint-plugin): add minimal built-in flat presets: #73873
  • [perf] skip loading client manifest for static metadata routes: #77260
  • Upgrade React from 5398b711-20250314 to c69a5fc5-20250318: #77249

... (truncated)

Commits

Updates react from 19.0.0 to 19.1.0

Release notes

Sourced from react's releases.

19.1.0 (March 28, 2025)

Owner Stack

An Owner Stack is a string representing the components that are directly responsible for rendering a particular component. You can log Owner Stacks when debugging or use Owner Stacks to enhance error overlays or other development tools. Owner Stacks are only available in development builds. Component Stacks in production are unchanged.

  • An Owner Stack is a development-only stack trace that helps identify which comp...

    Description has been truncated

Bumps the deps group with 14 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@apollo/client](https://github.com/apollographql/apollo-client) | `3.12.6` | `3.13.7` |
| [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) | `4.17.14` | `4.17.16` |
| [dotenv](https://github.com/motdotla/dotenv) | `16.4.7` | `16.5.0` |
| [flowbite-react](https://github.com/themesberg/flowbite-react/tree/HEAD/packages/ui) | `0.10.2` | `0.11.7` |
| [jotai](https://github.com/pmndrs/jotai) | `2.11.0` | `2.12.3` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.473.0` | `0.488.0` |
| [mongodb](https://github.com/mongodb/node-mongodb-native) | `6.12.0` | `6.15.0` |
| [next](https://github.com/vercel/next.js) | `15.1.5` | `15.3.0` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.0.0` | `19.1.0` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.0.7` | `19.1.1` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.0.0` | `19.1.0` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.0.3` | `19.1.2` |
| [type-fest](https://github.com/sindresorhus/type-fest) | `4.32.0` | `4.39.1` |
| [zod](https://github.com/colinhacks/zod) | `3.24.1` | `3.24.2` |



Updates `@apollo/client` from 3.12.6 to 3.13.7
- [Release notes](https://github.com/apollographql/apollo-client/releases)
- [Changelog](https://github.com/apollographql/apollo-client/blob/main/CHANGELOG.md)
- [Commits](apollographql/apollo-client@v3.12.6...v3.13.7)

Updates `@types/lodash` from 4.17.14 to 4.17.16
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/lodash)

Updates `dotenv` from 16.4.7 to 16.5.0
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v16.4.7...v16.5.0)

Updates `flowbite-react` from 0.10.2 to 0.11.7
- [Release notes](https://github.com/themesberg/flowbite-react/releases)
- [Changelog](https://github.com/themesberg/flowbite-react/blob/main/packages/ui/CHANGELOG.md)
- [Commits](https://github.com/themesberg/flowbite-react/commits/flowbite-react@0.11.7/packages/ui)

Updates `jotai` from 2.11.0 to 2.12.3
- [Release notes](https://github.com/pmndrs/jotai/releases)
- [Commits](pmndrs/jotai@v2.11.0...v2.12.3)

Updates `lucide-react` from 0.473.0 to 0.488.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/0.488.0/packages/lucide-react)

Updates `mongodb` from 6.12.0 to 6.15.0
- [Release notes](https://github.com/mongodb/node-mongodb-native/releases)
- [Changelog](https://github.com/mongodb/node-mongodb-native/blob/main/HISTORY.md)
- [Commits](mongodb/node-mongodb-native@v6.12.0...v6.15.0)

Updates `next` from 15.1.5 to 15.3.0
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v15.1.5...v15.3.0)

Updates `react` from 19.0.0 to 19.1.0
- [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.1.0/packages/react)

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

Updates `react-dom` from 19.0.0 to 19.1.0
- [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.1.0/packages/react-dom)

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

Updates `type-fest` from 4.32.0 to 4.39.1
- [Release notes](https://github.com/sindresorhus/type-fest/releases)
- [Commits](sindresorhus/type-fest@v4.32.0...v4.39.1)

Updates `zod` from 3.24.1 to 3.24.2
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Changelog](https://github.com/colinhacks/zod/blob/main/CHANGELOG.md)
- [Commits](colinhacks/zod@v3.24.1...v3.24.2)

---
updated-dependencies:
- dependency-name: "@apollo/client"
  dependency-version: 3.13.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: "@types/lodash"
  dependency-version: 4.17.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: dotenv
  dependency-version: 16.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: flowbite-react
  dependency-version: 0.11.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: jotai
  dependency-version: 2.12.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: lucide-react
  dependency-version: 0.488.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: mongodb
  dependency-version: 6.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: next
  dependency-version: 15.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: react
  dependency-version: 19.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: "@types/react"
  dependency-version: 19.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: react-dom
  dependency-version: 19.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: "@types/react-dom"
  dependency-version: 19.1.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: type-fest
  dependency-version: 4.39.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: zod
  dependency-version: 3.24.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
...

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 14, 2025
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