Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the minor-patch group across 1 directory with 21 updates #133

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 13, 2025

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

Package From To
@apollo/client 3.11.8 3.12.5
@apollo/server 4.11.0 4.11.3
@emotion/react 11.13.3 11.14.0
@emotion/styled 11.13.0 11.14.0
@graphql-tools/schema 10.0.6 10.0.16
@mui/icons-material 6.1.3 6.3.1
@mui/x-data-grid 7.20.0 7.23.6
discord-api-types 0.37.101 0.37.115
graphql 16.9.0 16.10.0
graphql-scalars 1.23.0 1.24.0
idb 8.0.0 8.0.1
jose 5.9.4 5.9.6
react-hook-form 7.53.0 7.54.2
typescript 5.6.3 5.7.3
@nitrogql/cli 1.7.0 1.7.1
@nitrogql/graphql-loader 1.7.0 1.7.1
lint-staged 15.2.10 15.3.0
prettier 3.3.3 3.4.2
prisma-json-types-generator 3.1.1 3.2.2
workbox-core 7.1.0 7.3.0

Updates @apollo/client from 3.11.8 to 3.12.5

Release notes

Sourced from @​apollo/client's releases.

v3.12.5

Patch Changes

  • #12252 cb9cd4e Thanks @​jerelmiller! - Changes the default behavior of the MaybeMasked type to preserve types unless otherwise specified. This change makes it easier to upgrade from older versions of the client where types could have unexpectedly changed in the application due to the default of trying to unwrap types into unmasked types. This change also fixes the compilation performance regression experienced when simply upgrading the client since types are now preserved by default.

    A new mode option has now been introduced to allow for the old behavior. See the next section on migrating if you wish to maintain the old default behavior after upgrading to this version.

    Migrating from <= v3.12.4

    If you've adopted data masking and have opted in to using masked types by setting the enabled property to true, you can remove this configuration entirely:

    -declare module "@apollo/client" {
    -  interface DataMasking {
    -    mode: "unmask"
    -  }
    -}

    If you prefer to specify the behavior explicitly, change the property from enabled: true, to mode: "preserveTypes":

    declare module "@apollo/client" {
      interface DataMasking {
    -    enabled: true
    +    mode: "preserveTypes"
      }
    }

    If you rely on the default behavior in 3.12.4 or below and would like to continue to use unmasked types by default, set the mode to unmask:

    declare module "@apollo/client" {
      interface DataMasking {
        mode: "unmask";
      }
    }

v3.12.4

Patch Changes

  • #12236 4334d30 Thanks @​charpeni! - Fix an issue with refetchQueries where comparing DocumentNodes internally by references could lead to an unknown query, even though the DocumentNode was indeed an active query—with a different reference.

v3.12.3

Patch Changes

... (truncated)

Changelog

Sourced from @​apollo/client's changelog.

3.12.5

Patch Changes

  • #12252 cb9cd4e Thanks @​jerelmiller! - Changes the default behavior of the MaybeMasked type to preserve types unless otherwise specified. This change makes it easier to upgrade from older versions of the client where types could have unexpectedly changed in the application due to the default of trying to unwrap types into unmasked types. This change also fixes the compilation performance regression experienced when simply upgrading the client since types are now preserved by default.

    A new mode option has now been introduced to allow for the old behavior. See the next section on migrating if you wish to maintain the old default behavior after upgrading to this version.

    Migrating from <= v3.12.4

    If you've adopted data masking and have opted in to using masked types by setting the enabled property to true, you can remove this configuration entirely:

    -declare module "@apollo/client" {
    -  interface DataMasking {
    -    mode: "unmask"
    -  }
    -}

    If you prefer to specify the behavior explicitly, change the property from enabled: true, to mode: "preserveTypes":

    declare module "@apollo/client" {
      interface DataMasking {
    -    enabled: true
    +    mode: "preserveTypes"
      }
    }

    If you rely on the default behavior in 3.12.4 or below and would like to continue to use unmasked types by default, set the mode to unmask:

    declare module "@apollo/client" {
      interface DataMasking {
        mode: "unmask";
      }
    }

3.12.4

Patch Changes

  • #12236 4334d30 Thanks @​charpeni! - Fix an issue with refetchQueries where comparing DocumentNodes internally by references could lead to an unknown query, even though the DocumentNode was indeed an active query—with a different reference.

3.12.3

Patch Changes

... (truncated)

Commits

Updates @apollo/server from 4.11.0 to 4.11.3

Release notes

Sourced from @​apollo/server's releases.

@​apollo/server-integration-testsuite@​4.11.3

Patch Changes

@​apollo/server@​4.11.3

Patch Changes

@​apollo/server-integration-testsuite@​4.11.2

Patch Changes

@​apollo/server@​4.11.2

(No change; there is a change to the @apollo/server-integration-testsuite used to test integrations, and the two packages always have matching versions.)

@​apollo/server-integration-testsuite@​4.11.1

Patch Changes

  • #7952 bb81b2c Thanks @​glasser! - Upgrade dependencies so that automated scans don't detect a vulnerability.

    @apollo/server depends on express which depends on cookie. Versions of express older than v4.21.1 depend on a version of cookie vulnerable to CVE-2024-47764. Users of older express versions who call res.cookie() or res.clearCookie() may be vulnerable to this issue.

    However, Apollo Server does not call this function directly, and it does not expose any object to user code that allows TypeScript users to call this function without an unsafe cast.

    The only way that this direct dependency can cause a vulnerability for users of Apollo Server is if you call startStandaloneServer with a context function that calls Express-specific methods such as res.cookie() or res.clearCookies() on the response object, which is a violation of the TypeScript types provided by startStandaloneServer (which only promise that the response object is a core Node.js http.ServerResponse rather than the Express-specific subclass). So this vulnerability can only affect Apollo Server users who use unsafe JavaScript or unsafe as typecasts in TypeScript.

    However, this upgrade will at least prevent vulnerability scanners from alerting you to this dependency, and we encourage all Express users to upgrade their project's own express dependency to v4.21.1 or newer.

  • Updated dependencies [bb81b2c]:

    • @​apollo/server@​4.11.1

@​apollo/server@​4.11.1

Patch Changes

  • #7952 bb81b2c Thanks @​glasser! - Upgrade dependencies so that automated scans don't detect a vulnerability.

    @apollo/server depends on express which depends on cookie. Versions of express older than v4.21.1 depend on a version of cookie vulnerable to CVE-2024-47764. Users of older express versions who call res.cookie() or res.clearCookie() may be vulnerable to this issue.

    However, Apollo Server does not call this function directly, and it does not expose any object to user code that allows TypeScript users to call this function without an unsafe cast.

... (truncated)

Changelog

Sourced from @​apollo/server's changelog.

4.11.3

Patch Changes

4.11.2

(No change; there is a change to the @apollo/server-integration-testsuite used to test integrations, and the two packages always have matching versions.)

4.11.1

Patch Changes

  • #7952 bb81b2c Thanks @​glasser! - Upgrade dependencies so that automated scans don't detect a vulnerability.

    @apollo/server depends on express which depends on cookie. Versions of express older than v4.21.1 depend on a version of cookie vulnerable to CVE-2024-47764. Users of older express versions who call res.cookie() or res.clearCookie() may be vulnerable to this issue.

    However, Apollo Server does not call this function directly, and it does not expose any object to user code that allows TypeScript users to call this function without an unsafe cast.

    The only way that this direct dependency can cause a vulnerability for users of Apollo Server is if you call startStandaloneServer with a context function that calls Express-specific methods such as res.cookie() or res.clearCookies() on the response object, which is a violation of the TypeScript types provided by startStandaloneServer (which only promise that the response object is a core Node.js http.ServerResponse rather than the Express-specific subclass). So this vulnerability can only affect Apollo Server users who use unsafe JavaScript or unsafe as typecasts in TypeScript.

    However, this upgrade will at least prevent vulnerability scanners from alerting you to this dependency, and we encourage all Express users to upgrade their project's own express dependency to v4.21.1 or newer.

Commits

Updates @emotion/react from 11.13.3 to 11.14.0

Release notes

Sourced from @​emotion/react's releases.

@​emotion/react@​11.14.0

Minor Changes

  • #3281 fc4d7bd Thanks @​Andarist! - Source code has been migrated to TypeScript. From now on type declarations will be emitted based on that, instead of being hand-written.

Patch Changes

  • Updated dependencies [8dc1a6d, e1bf17e]:
    • @​emotion/cache@​11.14.0
    • @​emotion/use-insertion-effect-with-fallbacks@​1.2.0

@​emotion/react@​11.13.5

Patch Changes

  • #3270 77d930d Thanks @​emmatown! - Fix inconsistent hashes using development vs production bundles/exports conditions when using @emotion/babel-plugin with sourceMap: true (the default). This is particularly visible when using Emotion with the Next.js Pages router where the development condition is used when bundling code but not when importing external code with Node.js.

  • Updated dependencies [77d930d]:

    • @​emotion/serialize@​1.3.3
    • @​emotion/cache@​11.13.5
    • @​emotion/utils@​1.4.2
    • @​emotion/babel-plugin@​11.13.5
Commits

Updates @emotion/styled from 11.13.0 to 11.14.0

Release notes

Sourced from @​emotion/styled's releases.

@​emotion/styled@​11.14.0

Minor Changes

  • #3284 a19d019 Thanks @​Andarist! - Source code has been migrated to TypeScript. From now on type declarations will be emitted based on that, instead of being hand-written.

Patch Changes

  • Updated dependencies [e1bf17e]:
    • @​emotion/use-insertion-effect-with-fallbacks@​1.2.0

@​emotion/styled@​11.13.5

Patch Changes

  • #3270 77d930d Thanks @​emmatown! - Fix inconsistent hashes using development vs production bundles/exports conditions when using @emotion/babel-plugin with sourceMap: true (the default). This is particularly visible when using Emotion with the Next.js Pages router where the development condition is used when bundling code but not when importing external code with Node.js.

  • Updated dependencies [77d930d]:

    • @​emotion/serialize@​1.3.3
    • @​emotion/utils@​1.4.2
    • @​emotion/babel-plugin@​11.13.5
Commits

Updates @graphql-tools/schema from 10.0.6 to 10.0.16

Changelog

Sourced from @​graphql-tools/schema's changelog.

10.0.16

Patch Changes

10.0.15

Patch Changes

  • Updated dependencies [4912f19]:
    • @​graphql-tools/utils@​10.7.1
    • @​graphql-tools/merge@​9.0.16

10.0.14

Patch Changes

  • Updated dependencies [2c70d27]:
    • @​graphql-tools/utils@​10.7.0
    • @​graphql-tools/merge@​9.0.15

10.0.13

Patch Changes

  • Updated dependencies [6a8123b]:
    • @​graphql-tools/utils@​10.6.4
    • @​graphql-tools/merge@​9.0.14

10.0.12

Patch Changes

  • 020b9e4 Thanks @​ardatan! - `AbortSignal` in `GraphQLResolveInfo`, and `AbortSignal` in `ExecutionRequest`

  • Updated dependencies [020b9e4]:

    • @​graphql-tools/utils@​10.6.3
    • @​graphql-tools/merge@​9.0.13

... (truncated)

Commits
  • b7ad4c5 chore(release): update monorepo packages versions (#6823)
  • 9b0da5f chore(release): update monorepo packages versions (#6814)
  • 8e15907 chore(release): update monorepo packages versions (#6798)
  • f52dd96 chore(release): update monorepo packages versions (#6772)
  • f5b83d8 chore(release): update monorepo packages versions (#6766)
  • 020b9e4 enhance: AbortSignal in GraphQLResolveInfo, and AbortSignal in `Executi...
  • ab4c37c chore(release): update monorepo packages versions (#6736)
  • 27efe7c chore(deps): update dependency graphql-scalars to v1.24.0 (#6725)
  • c506052 chore(release): update monorepo packages versions (#6709)
  • 3326645 chore(release): update monorepo packages versions (#6706)
  • Additional commits viewable in compare view

Updates @mui/icons-material from 6.1.3 to 6.3.1

Release notes

Sourced from @​mui/icons-material's releases.

v6.3.1

A big thanks to the 8 contributors who made this release possible.

@mui/[email protected]

Docs

Core

All contributors of this release in alphabetical order: @​adityaparab, @​DiegoAndai, @​komkanit, @​oliviertassinari, @​sai6855, @​siddhantantil39, @​yash49, @​ZeeshanTamboli

v6.3.0

A big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:

  • Fix invalid HTML structure in the Accordion component (#44408) @​ZeeshanTamboli The HTML elements of the Accordion summary have been updated:
    • the root element is now button (previously div).
    • summary content and the icon wrapper are now span (previously div). This will only impact you if you used the HTML element as selectors in your styles.

@mui/[email protected]

... (truncated)

Changelog

Sourced from @​mui/icons-material's changelog.

6.3.1

Jan 3, 2025

A big thanks to the 8 contributors who made this release possible.

@mui/[email protected]

Docs

Core

All contributors of this release in alphabetical order: @​adityaparab, @​DiegoAndai, @​komkanit, @​oliviertassinari, @​sai6855, @​siddhantantil39, @​yash49, @​ZeeshanTamboli

6.3.0

Dec 23, 2024

A big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:

  • Fix invalid HTML structure in the Accordion component (#44408) @​ZeeshanTamboli The HTML elements of the Accordion summary have been updated:
    • the root element is now button (previously div).
    • summary content and the icon wrapper are now span (previously div). This will only impact you if you used the HTML element as selectors in your styles.

... (truncated)

Commits

Updates @mui/material from 6.1.3 to 6.3.1

Release notes

Sourced from @​mui/material's releases.

v6.3.1

A big thanks to the 8 contributors who made this release possible.

@mui/[email protected]

Docs

Core

All contributors of this release in alphabetical order: @​adityaparab, @​DiegoAndai, @​komkanit, @​oliviertassinari, @​sai6855, @​siddhantantil39, @​yash49, @​ZeeshanTamboli

v6.3.0

A big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:

  • Fix invalid HTML structure in the Accordion component (#44408) @​ZeeshanTamboli The HTML elements of the Accordion summary have been updated:
    • the root element is now button (previously div).
    • summary content and the icon wrapper are now span (previously div). This will only impact you if you used the HTML element as selectors in your styles.

@mui/[email protected]

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

6.3.1

Jan 3, 2025

A big thanks to the 8 contributors who made this release possible.

@mui/[email protected]

Docs

Core

All ...

Description has been truncated

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

| Package | From | To |
| --- | --- | --- |
| [@apollo/client](https://github.com/apollographql/apollo-client) | `3.11.8` | `3.12.5` |
| [@apollo/server](https://github.com/apollographql/apollo-server/tree/HEAD/packages/server) | `4.11.0` | `4.11.3` |
| [@emotion/react](https://github.com/emotion-js/emotion) | `11.13.3` | `11.14.0` |
| [@emotion/styled](https://github.com/emotion-js/emotion) | `11.13.0` | `11.14.0` |
| [@graphql-tools/schema](https://github.com/ardatan/graphql-tools/tree/HEAD/packages/schema) | `10.0.6` | `10.0.16` |
| [@mui/icons-material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-icons-material) | `6.1.3` | `6.3.1` |
| [@mui/x-data-grid](https://github.com/mui/mui-x/tree/HEAD/packages/x-data-grid) | `7.20.0` | `7.23.6` |
| [discord-api-types](https://github.com/discordjs/discord-api-types) | `0.37.101` | `0.37.115` |
| [graphql](https://github.com/graphql/graphql-js) | `16.9.0` | `16.10.0` |
| [graphql-scalars](https://github.com/Urigo/graphql-scalars) | `1.23.0` | `1.24.0` |
| [idb](https://github.com/jakearchibald/idb) | `8.0.0` | `8.0.1` |
| [jose](https://github.com/panva/jose) | `5.9.4` | `5.9.6` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.53.0` | `7.54.2` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.6.3` | `5.7.3` |
| [@nitrogql/cli](https://github.com/uhyo/nitrogql/tree/HEAD/packages/cli) | `1.7.0` | `1.7.1` |
| [@nitrogql/graphql-loader](https://github.com/uhyo/nitrogql/tree/HEAD/packages/graphql-loader) | `1.7.0` | `1.7.1` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `15.2.10` | `15.3.0` |
| [prettier](https://github.com/prettier/prettier) | `3.3.3` | `3.4.2` |
| [prisma-json-types-generator](https://github.com/arthurfiorette/prisma-json-types-generator) | `3.1.1` | `3.2.2` |
| [workbox-core](https://github.com/googlechrome/workbox) | `7.1.0` | `7.3.0` |



Updates `@apollo/client` from 3.11.8 to 3.12.5
- [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.11.8...v3.12.5)

Updates `@apollo/server` from 4.11.0 to 4.11.3
- [Release notes](https://github.com/apollographql/apollo-server/releases)
- [Changelog](https://github.com/apollographql/apollo-server/blob/main/packages/server/CHANGELOG.md)
- [Commits](https://github.com/apollographql/apollo-server/commits/@apollo/[email protected]/packages/server)

Updates `@emotion/react` from 11.13.3 to 11.14.0
- [Release notes](https://github.com/emotion-js/emotion/releases)
- [Changelog](https://github.com/emotion-js/emotion/blob/main/CHANGELOG.md)
- [Commits](https://github.com/emotion-js/emotion/compare/@emotion/[email protected]...@emotion/[email protected])

Updates `@emotion/styled` from 11.13.0 to 11.14.0
- [Release notes](https://github.com/emotion-js/emotion/releases)
- [Changelog](https://github.com/emotion-js/emotion/blob/main/CHANGELOG.md)
- [Commits](https://github.com/emotion-js/emotion/compare/@emotion/[email protected]...@emotion/[email protected])

Updates `@graphql-tools/schema` from 10.0.6 to 10.0.16
- [Release notes](https://github.com/ardatan/graphql-tools/releases)
- [Changelog](https://github.com/ardatan/graphql-tools/blob/master/packages/schema/CHANGELOG.md)
- [Commits](https://github.com/ardatan/graphql-tools/commits/@graphql-tools/[email protected]/packages/schema)

Updates `@mui/icons-material` from 6.1.3 to 6.3.1
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v6.3.1/packages/mui-icons-material)

Updates `@mui/material` from 6.1.3 to 6.3.1
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v6.3.1/packages/mui-material)

Updates `@mui/x-data-grid` from 7.20.0 to 7.23.6
- [Release notes](https://github.com/mui/mui-x/releases)
- [Changelog](https://github.com/mui/mui-x/blob/v7.23.6/CHANGELOG.md)
- [Commits](https://github.com/mui/mui-x/commits/v7.23.6/packages/x-data-grid)

Updates `discord-api-types` from 0.37.101 to 0.37.115
- [Release notes](https://github.com/discordjs/discord-api-types/releases)
- [Changelog](https://github.com/discordjs/discord-api-types/blob/main/CHANGELOG.md)
- [Commits](discordjs/discord-api-types@0.37.101...0.37.115)

Updates `graphql` from 16.9.0 to 16.10.0
- [Release notes](https://github.com/graphql/graphql-js/releases)
- [Commits](graphql/graphql-js@v16.9.0...v16.10.0)

Updates `graphql-scalars` from 1.23.0 to 1.24.0
- [Release notes](https://github.com/Urigo/graphql-scalars/releases)
- [Changelog](https://github.com/Urigo/graphql-scalars/blob/master/CHANGELOG.md)
- [Commits](Urigo/graphql-scalars@v1.23.0...v1.24.0)

Updates `idb` from 8.0.0 to 8.0.1
- [Changelog](https://github.com/jakearchibald/idb/blob/main/CHANGELOG.md)
- [Commits](jakearchibald/idb@v8.0.0...v8.0.1)

Updates `jose` from 5.9.4 to 5.9.6
- [Release notes](https://github.com/panva/jose/releases)
- [Changelog](https://github.com/panva/jose/blob/main/CHANGELOG.md)
- [Commits](panva/jose@v5.9.4...v5.9.6)

Updates `react-hook-form` from 7.53.0 to 7.54.2
- [Release notes](https://github.com/react-hook-form/react-hook-form/releases)
- [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
- [Commits](react-hook-form/react-hook-form@v7.53.0...v7.54.2)

Updates `typescript` from 5.6.3 to 5.7.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.6.3...v5.7.3)

Updates `@nitrogql/cli` from 1.7.0 to 1.7.1
- [Release notes](https://github.com/uhyo/nitrogql/releases)
- [Commits](https://github.com/uhyo/nitrogql/commits/v1.7.1/packages/cli)

Updates `@nitrogql/graphql-loader` from 1.7.0 to 1.7.1
- [Release notes](https://github.com/uhyo/nitrogql/releases)
- [Commits](https://github.com/uhyo/nitrogql/commits/v1.7.1/packages/graphql-loader)

Updates `lint-staged` from 15.2.10 to 15.3.0
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v15.2.10...v15.3.0)

Updates `prettier` from 3.3.3 to 3.4.2
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.3.3...3.4.2)

Updates `prisma-json-types-generator` from 3.1.1 to 3.2.2
- [Release notes](https://github.com/arthurfiorette/prisma-json-types-generator/releases)
- [Commits](arthurfiorette/prisma-json-types-generator@v3.1.1...v3.2.2)

Updates `workbox-core` from 7.1.0 to 7.3.0
- [Release notes](https://github.com/googlechrome/workbox/releases)
- [Commits](GoogleChrome/workbox@v7.1.0...v7.3.0)

---
updated-dependencies:
- dependency-name: "@apollo/client"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: "@apollo/server"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: "@emotion/react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: "@emotion/styled"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: "@graphql-tools/schema"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: "@mui/icons-material"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: "@mui/material"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: "@mui/x-data-grid"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: discord-api-types
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: graphql
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: graphql-scalars
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: idb
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: jose
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: react-hook-form
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: typescript
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: "@nitrogql/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: "@nitrogql/graphql-loader"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: prisma-json-types-generator
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: workbox-core
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from cm-ayf as a code owner January 13, 2025 02:06
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jan 13, 2025
Copy link

vercel bot commented Jan 13, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
comiacapay ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 13, 2025 2:08am

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