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 misc group with 9 updates #220

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 22, 2024

Bumps the misc group with 9 updates:

Package From To
mysql2 3.7.0 3.7.1
@prisma/client 5.7.1 5.8.1
@prisma/instrumentation 5.7.1 5.8.1
next 14.0.4 14.1.0
@types/react 18.2.47 18.2.48
eslint-config-next 14.0.4 14.1.0
prisma 5.7.1 5.8.1
chai 4.4.0 4.4.1
node-addon-api 7.0.0 7.1.0

Updates mysql2 from 3.7.0 to 3.7.1

Release notes

Sourced from mysql2's releases.

v3.7.1

3.7.1 (2024-01-17)

Bug Fixes

  • add condition which allows code in callback to be reachable (#2376) (8d5b903)
Changelog

Sourced from mysql2's changelog.

3.7.1 (2024-01-17)

Bug Fixes

  • add condition which allows code in callback to be reachable (#2376) (8d5b903)
Commits
  • 5c1b356 chore(master): release 3.7.1 (#2382)
  • 8d5b903 fix: add condition which allows code in callback to be reachable (#2376)
  • a8b71b4 build(deps-dev): bump @​types/node from 20.11.4 to 20.11.5 (#2381)
  • f0d82b1 build(deps-dev): bump prettier from 3.2.2 to 3.2.4 (#2380)
  • c405cd2 build(deps-dev): bump @​types/node from 20.11.4 to 20.11.5 in /website (#2377)
  • 800ca42 build(deps): bump lucide-react from 0.309.0 to 0.311.0 in /website (#2378)
  • 1d983fa build(deps-dev): bump prettier from 3.1.1 to 3.2.2 (#2367)
  • 54fd6f9 build(deps-dev): bump c8 from 9.0.0 to 9.1.0 (#2369)
  • c925a40 build(deps-dev): bump prettier from 3.1.1 to 3.2.2 in /website (#2365)
  • 7e2068a build(deps-dev): bump @​typescript-eslint/parser in /website (#2374)
  • Additional commits viewable in compare view

Updates @prisma/client from 5.7.1 to 5.8.1

Release notes

Sourced from @​prisma/client's releases.

5.8.1

Today, we are issuing the 5.8.1 patch release.

Fix in Prisma Client

5.8.0

🌟 Help us spread the word about Prisma by starring the repo or posting on X about the release. 🌟

Highlights

Happy New Year from your friends at Prisma! 🎊

In the last 4 weeks, we resolved some bugs on the ORM and made some progress on some exciting features that we’re not yet ready to announce. Stay tuned for the upcoming releases, in which we’ll be announcing new features. 😉

relationJoins improvements: Relation loading strategy per query (Preview)

In version 5.7.0, we released relationJoins into Preview. The relationJoins feature enables support for JOINs for relation queries.

This release adds support for the ability to specify the strategy used to fetch relational data per query when the Preview feature is enabled. This will enable you to choose the most efficient strategy for fetching relation data depending on your use case.

You can now load relation data using either of the following strategies:

  • join — uses JOINs to fetch relation data
  • query — uses separate queries to fetch relation data

When the relationJoins Preview feature is enabled, by default, the relation fetching strategy used is join. You can override the default behavior by using the relationLoadStrategy query option.

To get started, enable the Preview feature:

// schema.prisma
generator client {
  provider        = "prisma-client-js"
  previewFeatures = ["relationJoins"]
}

… and specify the relation loading strategy for your query as follows:

await prisma.user.findMany({
  relationLoadStrategy: 'query',
  include: {
    posts: true,
  },
})

... (truncated)

Commits
  • b70db9b chore(deps): patch 5.8.x 5.8.1-1.78caf6feeaed953168c64e15a249c3e9a033ebe2 (#2...
  • 688a50a feat(client): integrate relationLoadStrategy support (#22483)
  • 468fd2a chore(deps): update engines to 5.8.0-35.98ee70609b272493d461f616accbf44531c21...
  • feec06f chore(deps): update engines to 5.8.0-33.babfd598f1377beef44addb85eb86ac93bdf4...
  • 811f1aa chore(deps): update opentelemetry packages (#22473)
  • e62475d chore(deps): update dependency esbuild to v0.19.10 (#22471)
  • 6604348 chore(deps): update engines to 5.8.0-31.01382e5cb656d1344b51fced95d399caaac3d...
  • 1eacb61 chore(deps): update engines to 5.8.0-30.6363e0950d0b1c496c0219c4289695f6ddc5c...
  • e0935eb chore(deps): update engines to 5.8.0-26.388f03a4b4ce34a3e2039545f4b40bb33c43e...
  • c52c211 chore(deps): update engines to 5.8.0-25.f8ac68b940bcb96a1531920e361ab5fc74000...
  • Additional commits viewable in compare view

Updates @prisma/instrumentation from 5.7.1 to 5.8.1

Release notes

Sourced from @​prisma/instrumentation's releases.

5.8.1

Today, we are issuing the 5.8.1 patch release.

Fix in Prisma Client

5.8.0

🌟 Help us spread the word about Prisma by starring the repo or posting on X about the release. 🌟

Highlights

Happy New Year from your friends at Prisma! 🎊

In the last 4 weeks, we resolved some bugs on the ORM and made some progress on some exciting features that we’re not yet ready to announce. Stay tuned for the upcoming releases, in which we’ll be announcing new features. 😉

relationJoins improvements: Relation loading strategy per query (Preview)

In version 5.7.0, we released relationJoins into Preview. The relationJoins feature enables support for JOINs for relation queries.

This release adds support for the ability to specify the strategy used to fetch relational data per query when the Preview feature is enabled. This will enable you to choose the most efficient strategy for fetching relation data depending on your use case.

You can now load relation data using either of the following strategies:

  • join — uses JOINs to fetch relation data
  • query — uses separate queries to fetch relation data

When the relationJoins Preview feature is enabled, by default, the relation fetching strategy used is join. You can override the default behavior by using the relationLoadStrategy query option.

To get started, enable the Preview feature:

// schema.prisma
generator client {
  provider        = "prisma-client-js"
  previewFeatures = ["relationJoins"]
}

… and specify the relation loading strategy for your query as follows:

await prisma.user.findMany({
  relationLoadStrategy: 'query',
  include: {
    posts: true,
  },
})

... (truncated)

Commits

Updates next from 14.0.4 to 14.1.0

Release notes

Sourced from next's releases.

v14.1.0

Core Changes

  • Turbopack: switch to a single client components entrypoint: #59352
  • Update swc_core to v0.86.98 and turbopack: #59393
  • Fix cases for the optimize_server_react transform: #59390
  • Use new JSX transform: #56294
  • loading.tsx should have no effect on partial rendering when PPR is enabled: #59196
  • Update font data: #59426
  • Remove CacheNode.status field: #59472
  • Rename CacheNode.data → .lazyData : #59473
  • Generate Params Cleanup: #59431
  • Fix webpack chunks handling in traces: #59498
  • Rename CacheNode.subTreeData -> .rsc : #59491
  • fix NODE_OPTIONS=inspect: #59530
  • Add CacheNode.prefetchRsc field: #59537
  • allow passing wildcard domains in serverActions.allowedDomains: #59428
  • Page Info Cleanup: #59430
  • Fix force-static and fetch no-store cases: #59549
  • Should not show no index for client rendering bailout: #59531
  • Enable build worker by default: #59405
  • Fork navigateReducer into PPR and non-PPR versions: #59538
  • cleanup magic segment strings: #59552
  • chore: update Turbopack: #59589
  • Fix another magic segment string constant: #59591
  • Make CacheNodeSeedData match FlightRouterState more closely: #59590
  • transpilePackages should override default settings for external packages: #59385
  • move segment constants to separate file: #59587
  • Revert "Page Info Cleanup (#59430)": #59592
  • Fix useOptimistic in server components bug. Add tests for invalid React server APIs: #59621
  • Partial Pre Rendering Headers: #59447
  • Add tests for invalid React server APIs: #59622
  • Refactor setup-dev-bundler to make Turbopack/Webpack split clearer: #59650
  • refactor and simplify app dynamic components: #59658
  • Change manifestPath to pagesManifestPath: #59657
  • Fix issue with outputFileTracingExcludes and pages/api edge runtime: #59157
  • Update font data: #59722
  • Remove path normalization logic when uploading .next/trace traces: #59305
  • LayoutRouter: Support segment value of Promise to asynchronously bail out and trigger a server patch: #59724
  • fix: Allow start turbopack dev server for a project using middleware: #59759
  • fix: gracefully shutdown server: #59551
  • Revert "fix: gracefully shutdown server (#59551)": #59792
  • Optionally bundle legacy react-dom/server APIs based on usage: #59737
  • fix default handling in route groups that handle interception: #59752
  • Transpile all code on app browser layer: #59569
  • Initial implementation of PPR client navigations: #59725
  • fix(turbopack): prevent edge entrypoint from becoming an async module: #59818
  • Ensure we validate revalidate configs properly: #59822
  • Update error check in validateRevalidate: #59826
  • Rename confusing loaders: #59827

... (truncated)

Commits

Updates @types/react from 18.2.47 to 18.2.48

Commits

Updates eslint-config-next from 14.0.4 to 14.1.0

Release notes

Sourced from eslint-config-next's releases.

v14.1.0

Core Changes

  • Turbopack: switch to a single client components entrypoint: #59352
  • Update swc_core to v0.86.98 and turbopack: #59393
  • Fix cases for the optimize_server_react transform: #59390
  • Use new JSX transform: #56294
  • loading.tsx should have no effect on partial rendering when PPR is enabled: #59196
  • Update font data: #59426
  • Remove CacheNode.status field: #59472
  • Rename CacheNode.data → .lazyData : #59473
  • Generate Params Cleanup: #59431
  • Fix webpack chunks handling in traces: #59498
  • Rename CacheNode.subTreeData -> .rsc : #59491
  • fix NODE_OPTIONS=inspect: #59530
  • Add CacheNode.prefetchRsc field: #59537
  • allow passing wildcard domains in serverActions.allowedDomains: #59428
  • Page Info Cleanup: #59430
  • Fix force-static and fetch no-store cases: #59549
  • Should not show no index for client rendering bailout: #59531
  • Enable build worker by default: #59405
  • Fork navigateReducer into PPR and non-PPR versions: #59538
  • cleanup magic segment strings: #59552
  • chore: update Turbopack: #59589
  • Fix another magic segment string constant: #59591
  • Make CacheNodeSeedData match FlightRouterState more closely: #59590
  • transpilePackages should override default settings for external packages: #59385
  • move segment constants to separate file: #59587
  • Revert "Page Info Cleanup (#59430)": #59592
  • Fix useOptimistic in server components bug. Add tests for invalid React server APIs: #59621
  • Partial Pre Rendering Headers: #59447
  • Add tests for invalid React server APIs: #59622
  • Refactor setup-dev-bundler to make Turbopack/Webpack split clearer: #59650
  • refactor and simplify app dynamic components: #59658
  • Change manifestPath to pagesManifestPath: #59657
  • Fix issue with outputFileTracingExcludes and pages/api edge runtime: #59157
  • Update font data: #59722
  • Remove path normalization logic when uploading .next/trace traces: #59305
  • LayoutRouter: Support segment value of Promise to asynchronously bail out and trigger a server patch: #59724
  • fix: Allow start turbopack dev server for a project using middleware: #59759
  • fix: gracefully shutdown server: #59551
  • Revert "fix: gracefully shutdown server (#59551)": #59792
  • Optionally bundle legacy react-dom/server APIs based on usage: #59737
  • fix default handling in route groups that handle interception: #59752
  • Transpile all code on app browser layer: #59569
  • Initial implementation of PPR client navigations: #59725
  • fix(turbopack): prevent edge entrypoint from becoming an async module: #59818
  • Ensure we validate revalidate configs properly: #59822
  • Update error check in validateRevalidate: #59826
  • Rename confusing loaders: #59827

... (truncated)

Commits

Updates prisma from 5.7.1 to 5.8.1

Release notes

Sourced from prisma's releases.

5.8.1

Today, we are issuing the 5.8.1 patch release.

Fix in Prisma Client

5.8.0

🌟 Help us spread the word about Prisma by starring the repo or posting on X about the release. 🌟

Highlights

Happy New Year from your friends at Prisma! 🎊

In the last 4 weeks, we resolved some bugs on the ORM and made some progress on some exciting features that we’re not yet ready to announce. Stay tuned for the upcoming releases, in which we’ll be announcing new features. 😉

relationJoins improvements: Relation loading strategy per query (Preview)

In version 5.7.0, we released relationJoins into Preview. The relationJoins feature enables support for JOINs for relation queries.

This release adds support for the ability to specify the strategy used to fetch relational data per query when the Preview feature is enabled. This will enable you to choose the most efficient strategy for fetching relation data depending on your use case.

You can now load relation data using either of the following strategies:

  • join — uses JOINs to fetch relation data
  • query — uses separate queries to fetch relation data

When the relationJoins Preview feature is enabled, by default, the relation fetching strategy used is join. You can override the default behavior by using the relationLoadStrategy query option.

To get started, enable the Preview feature:

// schema.prisma
generator client {
  provider        = "prisma-client-js"
  previewFeatures = ["relationJoins"]
}

… and specify the relation loading strategy for your query as follows:

await prisma.user.findMany({
  relationLoadStrategy: 'query',
  include: {
    posts: true,
  },
})

... (truncated)

Commits

Updates chai from 4.4.0 to 4.4.1

Release notes

Sourced from chai's releases.

v4.4.1

What's Changed

Full Changelog: chaijs/chai@v4.4.0...v4.4.1

Commits

Updates node-addon-api from 7.0.0 to 7.1.0

Release notes

Sourced from node-addon-api's releases.

v7.1.0

What's Changed

... (truncated)

Changelog

Sourced from node-addon-api's changelog.

2024-01-18 Version 7.1.0, @​legendecas

Notable changes

API

  • Add Env::GetModuleFileName
  • Add SyntaxError
  • Allow NAPI_VERSION env var and templatize AttachData callback
  • Add common gyp dependency targets.

Commits

  • [864fed488c] - build(deps): bump github/codeql-action from 3.22.12 to 3.23.0 (dependabot[bot]) #1428
  • [81a8d43130] - build(deps): bump actions/dependency-review-action from 3.1.4 to 3.1.5 (dependabot[bot]) #1427
  • [e20088941b] - build(deps): bump github/codeql-action from 3.22.11 to 3.22.12 (dependabot[bot]) #1426
  • [76c7b12e4e] - build(deps): bump actions/setup-node from 4.0.0 to 4.0.1 (dependabot[bot]) #1425
  • [cd58edde1d] - build(deps): bump actions/upload-artifact from 3.1.3 to 4.0.0 (dependabot[bot]) #1424
  • [0fd1b9e0e1] - build(deps): bump github/codeql-action from 2.22.8 to 3.22.11 (dependabot[bot]) #1423
  • [c181b19d68] - build(deps): bump actions/stale from 8.0.0 to 9.0.0 (dependabot[bot]) #1418
  • [6fa67791a1] - build(deps): bump actions/setup-python from 4.7.1 to 5.0.0 (dependabot[bot]) #1417
  • [1fff346fa6] - build(deps): bump actions/dependency-review-action from 3.1.3 to 3.1.4 (dependabot[bot]) #1415
  • [ecb9690fe5] - build(deps): bump github/codeql-action from 2.22.7 to 2.22.8 (dependabot[bot]) #1414
  • [969547b871] - build(deps): bump github/codeql-action from 2.22.5 to 2.22.7 (dependabot[bot]) #1413
  • [183d1522a9] - build(deps): bump step-security/harden-runner from 2.6.0 to 2.6.1 (dependabot[bot]) #1412
  • [25f977724a] - build(deps): bump actions/dependency-review-action from 3.1.0 to 3.1.3 (dependabot[bot]) #1410
  • [f6d125a407] - build(deps): bump actions/setup-python from 4.7.0 to 4.7.1 (dependabot[bot]) #1406
  • [ce78a39ec7] - build(deps): bump github/codeql-action from 2.22.4 to 2.22.5 (dependabot[bot]) #1400
  • [dc211ebb48] - build(deps): bump actions/setup-node from 3.8.1 to 4.0.0 (dependabot[bot]) #1398
  • [cab559e3bd] - build(deps): bump ossf/scorecard-action from 2.3.0 to 2.3.1 (dependabot[bot]) #1397
  • [f71ff5582d] - build(deps): bump github/codeql-action from 2.22.3 to 2.22.4 (dependabot[bot]) #1396
  • [21c1d08680] - build(deps): bump actions/checkout from 4.1.0 to 4.1.1 (dependabot[bot]) #1394
  • [e4eec0939c] - build(deps): bump github/codeql-action from 2.21.9 to 2.22.3 (dependabot[bot]) #1393
  • [94f3459474] - build(deps): bump ossf/scorecard-action from 2.2.0 to 2.3.0 (dependabot[bot]) #1388
  • [90a741ef10] - build(deps): bump step-security/harden-runner from 2.5.1 to 2.6.0 (dependabot[bot]) #1386
  • [7e1aa06132] - Update LICENSE.md (Michael Dawson) #1385
  • [0a0612362e] - build(deps): bump github/codeql-action from 2.21.7 to 2.21.9 (dependabot[bot]) #1384
  • [47bd430da2] - build(deps): bump actions/checkout from 4.0.0 to 4.1.0 (dependabot[bot]) #1383
  • [b3f7f73cb9] - build(deps): bump actions/dependency-review-action from 3.0.8 to 3.1.0 (dependabot[bot]) #1377
  • [12c1655387] - build(deps): bump github/codeql-action from 2.21.6 to 2.21.7 (dependabot[bot]) #1380
  • [6abed318e4] - build(deps): bump github/codeql-action from 2.21.5 to 2.21.6 (dependabot[bot]) #1378
  • [89eda59930] - build(deps): bump actions/upload-artifact from 3.1.2 to 3.1.3 (dependabot[bot]) #1376
  • [90870dbffa] - build(deps): bump actions/checkout from 3.6.0 to 4.0.0 (dependabot[bot]) #1375
  • [b860793eff] - build(deps): bump github/codeql-action from 2.21.2 to 2.21.5 (dependabot[bot]) #1372
  • [f9b9974b4a] - build(deps): bump actions/checkout from 3.5.3 to 3.6.0 (dependabot[bot]) #1371
  • [9596e3de2d] - build(deps): bump actions/setup-node from 3.7.0 to 3.8.1 (dependabot[bot]) #1370
  • [e969210747] - build(deps): bump actions/dependency-review-action from 3.0.6 to 3.0.8 (dependabot[bot]) #1368
  • [13ef96a5a9] - build(deps): bump step-security/harden-runner from 2.5.0 to 2.5.1 (dependabot[bot]) #1364
  • [9776d148b3] - build(deps): bump github/codeql-action from 2.21.1 to 2.21.2 (dependabot[bot]) #1358
  • [59dc6be097] - build(deps): bump github/codeql-action from 2.21.0 to 2.21.1 (dependabot[bot]) #1357

... (truncated)

Commits
  • 185dda1 7.1.0
  • 864fed4 build(deps): bump github/codeql-action from 3.22.12 to 3.23.0 (#1428)
  • 81a8d43 build(deps): bump actions/dependency-review-action from 3.1.4 to 3.1.5 (#1427)
  • e200889 build(deps): bump github/codeql-action from 3.22.11 to 3.22.12 (#1426)
  • 76c7b12 build(deps): bump actions/setup-node from 4.0.0 to 4.0.1 (#1425)
  • cd58edd build(deps): bump actions/upload-artifact from 3.1.3 to 4.0.0 (#1424)
  • 0fd1b9e build(deps): bump github/codeql-action from 2.22.8 to 3.22.11 (#1423)
  • c181b19 build(deps): bump actions/stale from 8.0.0 to 9.0.0 (#1418)
  • 6fa6779 build(deps): bump actions/setup-python from 4.7.1 to 5.0.0 (#1417)
  • 1fff346 build(deps): bump actions/dependency-review-action from 3.1.3 to 3.1.4 (#1415)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by legendecas, a new releaser for node-addon-api since your current version.


Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
chai [>= 5.a, < 6]

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it...

Description has been truncated

Bumps the misc group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [mysql2](https://github.com/sidorares/node-mysql2) | `3.7.0` | `3.7.1` |
| [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) | `5.7.1` | `5.8.1` |
| [@prisma/instrumentation](https://github.com/prisma/prisma/tree/HEAD/packages/instrumentation) | `5.7.1` | `5.8.1` |
| [next](https://github.com/vercel/next.js) | `14.0.4` | `14.1.0` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.2.47` | `18.2.48` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `14.0.4` | `14.1.0` |
| [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) | `5.7.1` | `5.8.1` |
| [chai](https://github.com/chaijs/chai) | `4.4.0` | `4.4.1` |
| [node-addon-api](https://github.com/nodejs/node-addon-api) | `7.0.0` | `7.1.0` |


Updates `mysql2` from 3.7.0 to 3.7.1
- [Release notes](https://github.com/sidorares/node-mysql2/releases)
- [Changelog](https://github.com/sidorares/node-mysql2/blob/master/Changelog.md)
- [Commits](sidorares/node-mysql2@v3.7.0...v3.7.1)

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

Updates `@prisma/instrumentation` from 5.7.1 to 5.8.1
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/5.8.1/packages/instrumentation)

Updates `next` from 14.0.4 to 14.1.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@v14.0.4...v14.1.0)

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

Updates `eslint-config-next` from 14.0.4 to 14.1.0
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v14.1.0/packages/eslint-config-next)

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

Updates `chai` from 4.4.0 to 4.4.1
- [Release notes](https://github.com/chaijs/chai/releases)
- [Changelog](https://github.com/chaijs/chai/blob/main/History.md)
- [Commits](chaijs/chai@v4.4.0...v4.4.1)

Updates `node-addon-api` from 7.0.0 to 7.1.0
- [Release notes](https://github.com/nodejs/node-addon-api/releases)
- [Changelog](https://github.com/nodejs/node-addon-api/blob/main/CHANGELOG.md)
- [Commits](nodejs/node-addon-api@v7.0.0...v7.1.0)

---
updated-dependencies:
- dependency-name: mysql2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: misc
- dependency-name: "@prisma/client"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: misc
- dependency-name: "@prisma/instrumentation"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: misc
- dependency-name: next
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: misc
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: misc
- dependency-name: eslint-config-next
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: misc
- dependency-name: prisma
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: misc
- dependency-name: chai
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: misc
- dependency-name: node-addon-api
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: misc
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner January 22, 2024 13:53
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jan 22, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 22, 2024

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

@dependabot dependabot bot closed this Jan 22, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/misc-5519e04017 branch January 22, 2024 22: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
Development

Successfully merging this pull request may close these issues.

None yet

0 participants