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 18 updates #129

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 16, 2024

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

Package From To
@apollo/client 3.11.8 3.12.3
@apollo/server 4.11.0 4.11.2
@emotion/react 11.13.3 11.14.0
@emotion/styled 11.13.0 11.14.0
@graphql-tools/schema 10.0.6 10.0.13
@mui/icons-material 6.1.3 6.2.0
@mui/x-data-grid 7.20.0 7.23.2
discord-api-types 0.37.101 0.37.111
graphql 16.9.0 16.10.0
graphql-scalars 1.23.0 1.24.0
jose 5.9.4 5.9.6
react-hook-form 7.53.0 7.54.1
typescript 5.6.3 5.7.2
lint-staged 15.2.10 15.2.11
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.3

Release notes

Sourced from @​apollo/client's releases.

v3.12.3

Patch Changes

v3.12.2

Patch Changes

v3.12.1

Patch Changes

v3.12.0

Minor Changes

Data masking 🎭

  • #12042 1c0ecbf Thanks @​jerelmiller! - Introduces data masking in Apollo Client.

    Data masking enforces that only the fields requested by the query or fragment is available to that component. Data masking is best paired with colocated fragments.

    To enable data masking in Apollo Client, set the dataMasking option to true.

    new ApolloClient({
      dataMasking: true,
      // ... other options
    });

    For detailed information on data masking, including how to incrementally adopt it in an existing applications, see the data masking documentation.

  • #12131 21c3f08 Thanks @​jerelmiller! - Allow null as a valid from value in useFragment.

  • #12126 d10d702 Thanks @​jerelmiller! - Maintain the existing document if its unchanged by the codemod and move to more naive whitespace formatting

  • #12150 9ed1e1e Thanks @​jerelmiller! - Fix issue when using Unmasked with older versions of TypeScript when used with array fields.

... (truncated)

Changelog

Sourced from @​apollo/client's changelog.

3.12.3

Patch Changes

3.12.2

Patch Changes

3.12.1

Patch Changes

3.12.0

Minor Changes

Data masking 🎭

  • #12042 1c0ecbf Thanks @​jerelmiller! - Introduces data masking in Apollo Client.

    Data masking enforces that only the fields requested by the query or fragment is available to that component. Data masking is best paired with colocated fragments.

    To enable data masking in Apollo Client, set the dataMasking option to true.

    new ApolloClient({
      dataMasking: true,
      // ... other options
    });

    For detailed information on data masking, including how to incrementally adopt it in an existing applications, see the data masking documentation.

  • #12131 21c3f08 Thanks @​jerelmiller! - Allow null as a valid from value in useFragment.

... (truncated)

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

Changelog

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

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

10.0.11

Patch Changes

10.0.10

Patch Changes

  • Updated dependencies [1e02935]:
    • @​graphql-tools/utils@​10.6.1
    • @​graphql-tools/merge@​9.0.11

... (truncated)

Commits
  • 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)
  • ce25042 chore(release): update monorepo packages versions (#6678)
  • 1c8bd90 chore(release): update monorepo packages versions (#6564)
  • See full diff in compare view

Updates @mui/icons-material from 6.1.3 to 6.2.0

Release notes

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

v6.2.0

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

  • Material UI is now compatible with React 19 (#44672) @​DiegoAndai
  • Fixed incorrect aria-orientation for vertical sliders. ArrowRight now increases the value and ArrowLeft decreases the value in vertical sliders; they were reversed in prior versions. (#44537) @​mj12albert

@mui/[email protected]

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​alexfauquette, @​bharatkashyap, @​DiegoAndai, @​Janpot, @​mj12albert, @​mnajdova, @​sai6855, @​SuperMaxine, @​vladmoroz, @​ZeeshanTamboli

v6.1.10

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

@mui/[email protected]

@mui/[email protected]

Docs

... (truncated)

Changelog

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

6.2.0

Dec 10, 2024

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

  • Material UI is now compatible with React 19 (#44672) @​DiegoAndai
  • Fixed incorrect aria-orientation for vertical sliders. ArrowRight now increases the value and ArrowLeft decreases the value in vertical sliders; they were reversed in prior versions. (#44537) @​mj12albert

@mui/[email protected]

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​alexfauquette, @​bharatkashyap, @​DiegoAndai, @​Janpot, @​mj12albert, @​mnajdova, @​sai6855, @​SuperMaxine, @​vladmoroz, @​ZeeshanTamboli

6.1.10

Dec 3, 2024

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

@mui/[email protected]

... (truncated)

Commits

Updates @mui/material from 6.1.3 to 6.2.0

Release notes

Sourced from @​mui/material's releases.

v6.2.0

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

  • Material UI is now compatible with React 19 (#44672) @​DiegoAndai
  • Fixed incorrect aria-orientation for vertical sliders. ArrowRight now increases the value and ArrowLeft decreases the value in vertical sliders; they were reversed in prior versions. (#44537) @​mj12albert

@mui/[email protected]

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​alexfauquette, @​bharatkashyap, @​DiegoAndai, @​Janpot, @​mj12albert, @​mnajdova, @​sai6855, @​SuperMaxine, @​vladmoroz, @​ZeeshanTamboli

v6.1.10

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

@mui/[email protected]

@mui/[email protected]

Docs

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

6.2.0

Dec 10, 2024

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

  • Material UI is now compatible with React 19 (#44672) @​DiegoAndai
  • Fixed incorrect aria-orientation for vertical sliders. ArrowRight now increases the value and ArrowLeft decreases the value in vertical sliders; the...

    Description has been truncated

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

| Package | From | To |
| --- | --- | --- |
| [@apollo/client](https://github.com/apollographql/apollo-client) | `3.11.8` | `3.12.3` |
| [@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.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.13` |
| [@mui/icons-material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-icons-material) | `6.1.3` | `6.2.0` |
| [@mui/x-data-grid](https://github.com/mui/mui-x/tree/HEAD/packages/x-data-grid) | `7.20.0` | `7.23.2` |
| [discord-api-types](https://github.com/discordjs/discord-api-types) | `0.37.101` | `0.37.111` |
| [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` |
| [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.1` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.6.3` | `5.7.2` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `15.2.10` | `15.2.11` |
| [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.3
- [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.3)

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.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.13
- [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.2.0
- [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.2.0/packages/mui-icons-material)

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

Updates `@mui/x-data-grid` from 7.20.0 to 7.23.2
- [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.23.2/packages/x-data-grid)

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

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 `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.1
- [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.1)

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 `lint-staged` from 15.2.10 to 15.2.11
- [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.2.11)

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: 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: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-patch
  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 December 16, 2024 01:16
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 16, 2024
Copy link

vercel bot commented Dec 16, 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 Dec 16, 2024 1:18am

Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 23, 2024

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

@dependabot dependabot bot closed this Dec 23, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-patch-f42a50386e branch December 23, 2024 01:31
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