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 16 updates #126

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 25, 2024

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

Package From To
@apollo/client 3.11.8 3.11.10
@apollo/server 4.11.0 4.11.2
@emotion/react 11.13.3 11.13.5
@emotion/styled 11.13.0 11.13.5
@graphql-tools/schema 10.0.6 10.0.9
@mui/icons-material 6.1.3 6.1.8
@mui/x-data-grid 7.20.0 7.22.3
@prisma/client 5.20.0 5.22.0
@types/react 18.3.11 18.3.12
discord-api-types 0.37.101 0.37.107
jose 5.9.4 5.9.6
react-hook-form 7.53.0 7.53.2
typescript 5.6.3 5.7.2
prisma 5.20.0 5.22.0
workbox-core 7.1.0 7.3.0

Updates @apollo/client from 3.11.8 to 3.11.10

Release notes

Sourced from @​apollo/client's releases.

v3.11.10

Patch Changes

  • #12093 1765668 Thanks @​mgmolisani! - Fixed a bug when evaluating the devtools flag with the new syntax devtools.enabled that could result to true when explicitly set to false.

v3.11.9

Patch Changes

  • #12110 a3f95c6 Thanks @​jerelmiller! - Fix an issue where errors returned from a fetchMore call from a Suspense hook would cause a Suspense boundary to be shown indefinitely.
Changelog

Sourced from @​apollo/client's changelog.

3.11.10

Patch Changes

  • #12093 1765668 Thanks @​mgmolisani! - Fixed a bug when evaluating the devtools flag with the new syntax devtools.enabled that could result to true when explicitly set to false.

3.11.9

Patch Changes

  • #12110 a3f95c6 Thanks @​jerelmiller! - Fix an issue where errors returned from a fetchMore call from a Suspense hook would cause a Suspense boundary to be shown indefinitely.
Commits

Updates @apollo/server from 4.11.0 to 4.11.2

Release notes

Sourced from @​apollo/server's releases.

@​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.

    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.

Changelog

Sourced from @​apollo/server's changelog.

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

Release notes

Sourced from @​emotion/react's releases.

@​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.13.5

Release notes

Sourced from @​emotion/styled's releases.

@​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.9

Changelog

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

10.0.9

Patch Changes

  • Updated dependencies [414e404]:
    • @​graphql-tools/utils@​10.6.0
    • @​graphql-tools/merge@​9.0.10

10.0.8

Patch Changes

  • Updated dependencies [dc5043b]:
    • @​graphql-tools/utils@​10.5.6
    • @​graphql-tools/merge@​9.0.9

10.0.7

Patch Changes

  • Updated dependencies [cf2ce5e]:
    • @​graphql-tools/utils@​10.5.5
    • @​graphql-tools/merge@​9.0.8
Commits

Updates @mui/icons-material from 6.1.3 to 6.1.8

Release notes

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

v6.1.8

Nov 20, 2024

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

@mui/[email protected]

@mui/[email protected]

@mui/[email protected]

@mui/[email protected]

Docs

Core

All contributors of this release in alphabetical order: @​DiegoAndai, @​JCQuintas, @​joserodolfofreitas, @​mnajdova, @​oliviertassinari, @​prakhargupta1, @​sai6855, samuelsycamore, @​siriwatknp, @​ZeeshanTamboli

v6.1.7

... (truncated)

Changelog

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

v6.1.8

Nov 20, 2024

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

@mui/[email protected]

@mui/[email protected]

@mui/[email protected]

@mui/[email protected]

Docs

Core

All contributors of this release in alphabetical order: @​DiegoAndai, @​JCQuintas, @​joserodolfofreitas, @​mnajdova, @​oliviertassinari, @​prakhargupta1, @​sai6855, samuelsycamore, @​siriwatknp, @​ZeeshanTamboli

... (truncated)

Commits

Updates @mui/material from 6.1.3 to 6.1.8

Release notes

Sourced from @​mui/material's releases.

v6.1.8

Nov 20, 2024

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

@mui/[email protected]

@mui/[email protected]

@mui/[email protected]

@mui/[email protected]

Docs

Core

All contributors of this release in alphabetical order: @​DiegoAndai, @​JCQuintas, @​joserodolfofreitas, @​mnajdova, @​oliviertassinari, @​prakhargupta1, @​sai6855, samuelsycamore, @​siriwatknp, @​ZeeshanTamboli

v6.1.7

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

v6.1.8

Nov 20, 2024

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

@mui/[email protected]

@mui/[email protected]

@mui/[email protected]

@mui/[email protected]

Docs

Core

All contributors of this release in alphabetical order: @​DiegoAndai, @​JCQuintas, @​joserodolfofreitas, @​mnajdova, @​oliviertassinari, @​prakhargupta1, @​sai6855, samuelsycamore, @​siriwatknp, @​ZeeshanTamboli

... (truncated)

Commits
  • 0b8739f [release] v6.1.8 (#44481)
  • 232555b [material-ui][Button] Revert Button loading (#44478)
  • 0aecafc [Button] Fix CircularProgress import (#44473)
  • be2bac2 [material-ui] Add generic back to useMediaQuery to prevent a breaking chang...
  • 6f04511 [Grid2] Remove item and zeroMinWidth classes from grid2Classes (#44419)
  • 7781a01 [Tooltip] Deprecate *Component and *Props for v6 (#44350)
  • a0ffee4 [docs] Bring back *Component and *Props codemods and deprecation messages...
  • e8e4b79 [material-ui][Autocomplete] Use ul element for the listbox (#44422)
  • 016acab [system] Warn when calling setMode without configuring `colorSchemeSelector...
  • 3251c3a [materia-ui][StepIcon] Add SvgIconOwnProps type to StepIcon props (#44337)
  • Additional commits viewable in compare view

Updates @mui/x-data-grid from 7.20.0 to 7.22.3

Release notes

Sourced from @​mui/x-data-grid's releases.

v7.22.3

We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:

  • 📊 Charts Pro get stable. The zoom and Heatmap are now stable.
  • 🌍 Improve Chinese, Spanish, Swedish, and Turkish locales on the Data Grid
  • 🐞 Bugfixes

Special thanks go out to the community contributors who have helped make this release possible: @​CarlosLopezLg, @​headironc, @​viktormelin, @​qerkules, @​DungTiger, @​hendrikpeilke, @​k-rajat19. Following are all team members who have contributed to this release: @​alexfauquette, @​LukasTy, @​MBilalShafi, @​flaviendelangle.

Data Grid

@mui/[email protected]

@mui/[email protected] pro

Same changes as in @mui/[email protected].

@mui/[email protected] premium

Same changes as in @mui/[email protected].

Date and Time Pickers

@mui/[email protected]

  • [pickers] Always use props.value when it changes (#15500) @​flaviendelangle
  • [pickers] Ensure internal value timezone is updated (

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

| Package | From | To |
| --- | --- | --- |
| [@apollo/client](https://github.com/apollographql/apollo-client) | `3.11.8` | `3.11.10` |
| [@apollo/server](https://github.com/apollographql/apollo-server/tree/HEAD/packages/server) | `4.11.0` | `4.11.2` |
| [@emotion/react](https://github.com/emotion-js/emotion) | `11.13.3` | `11.13.5` |
| [@emotion/styled](https://github.com/emotion-js/emotion) | `11.13.0` | `11.13.5` |
| [@graphql-tools/schema](https://github.com/ardatan/graphql-tools/tree/HEAD/packages/schema) | `10.0.6` | `10.0.9` |
| [@mui/icons-material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-icons-material) | `6.1.3` | `6.1.8` |
| [@mui/x-data-grid](https://github.com/mui/mui-x/tree/HEAD/packages/x-data-grid) | `7.20.0` | `7.22.3` |
| [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) | `5.20.0` | `5.22.0` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.3.11` | `18.3.12` |
| [discord-api-types](https://github.com/discordjs/discord-api-types) | `0.37.101` | `0.37.107` |
| [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.53.2` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.6.3` | `5.7.2` |
| [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) | `5.20.0` | `5.22.0` |
| [workbox-core](https://github.com/googlechrome/workbox) | `7.1.0` | `7.3.0` |



Updates `@apollo/client` from 3.11.8 to 3.11.10
- [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.11.10)

Updates `@apollo/server` from 4.11.0 to 4.11.2
- [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.13.5
- [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.13.5
- [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.9
- [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.1.8
- [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.1.8/packages/mui-icons-material)

Updates `@mui/material` from 6.1.3 to 6.1.8
- [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.1.8/packages/mui-material)

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

Updates `@prisma/client` from 5.20.0 to 5.22.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/5.22.0/packages/client)

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

Updates `discord-api-types` from 0.37.101 to 0.37.107
- [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.107)

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.53.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.53.2)

Updates `typescript` from 5.6.3 to 5.7.2
- [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.2)

Updates `prisma` from 5.20.0 to 5.22.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/5.22.0/packages/cli)

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-patch
  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-patch
  dependency-group: minor-patch
- dependency-name: "@emotion/styled"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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-patch
  dependency-group: minor-patch
- dependency-name: "@mui/material"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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: "@prisma/client"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: "@types/react"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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: 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-patch
  dependency-group: minor-patch
- dependency-name: typescript
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: prisma
  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 November 25, 2024 01:29
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 25, 2024
Copy link

vercel bot commented Nov 25, 2024

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 Nov 25, 2024 1:31am

Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 2, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Dec 2, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-patch-069ec91e0e branch December 2, 2024 01:40
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