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 across 1 directory with 10 updates #382

Merged
merged 2 commits into from
Jul 2, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 1, 2024

Bumps the misc group with 10 updates in the / directory:

Package From To
mysql2 3.10.1 3.10.2
fastify 4.28.0 4.28.1
@prisma/client 5.15.0 5.16.1
@prisma/instrumentation 5.15.0 5.16.1
prisma 5.15.0 5.16.1
globals 15.6.0 15.7.0
@grpc/grpc-js 1.10.9 1.10.10
mocha 10.4.0 10.5.2
@types/mocha 10.0.6 10.0.7
bson 6.7.0 6.8.0

Updates mysql2 from 3.10.1 to 3.10.2

Release notes

Sourced from mysql2's releases.

v3.10.2

3.10.2 (2024-07-01)

Bug Fixes

  • typeCast: ensure the same behavior for field.string() with query and execute (#2820) (27e38ea)
Changelog

Sourced from mysql2's changelog.

3.10.2 (2024-07-01)

Bug Fixes

  • typeCast: ensure the same behavior for field.string() with query and execute (#2820) (27e38ea)
Commits
  • 88dd4b5 chore(master): release 3.10.2 (#2821)
  • 27e38ea fix(typeCast): ensure the same behavior for field.string() with query and...
  • a14f354 build(deps): bump lucide-react from 0.396.0 to 0.397.0 in /website (#2813)
  • 83eb15d build(deps-dev): bump poku from 1.20.0 to 1.20.1 in /website (#2812)
  • 4610414 build(deps-dev): bump @​types/node from 20.14.8 to 20.14.9 (#2814)
  • e52d53c build(deps-dev): bump poku from 1.20.0 to 1.20.1 (#2815)
  • 5d4a885 build(deps-dev): bump @​typescript-eslint/parser in /website (#2809)
  • 5723d26 build(deps-dev): bump @​typescript-eslint/eslint-plugin in /website (#2807)
  • 4af7dd5 build(deps-dev): bump poku from 1.19.0 to 1.20.0 in /website (#2808)
  • f4eb5ca build(deps-dev): bump poku from 1.19.0 to 1.20.0 (#2810)
  • Additional commits viewable in compare view

Updates fastify from 4.28.0 to 4.28.1

Release notes

Sourced from fastify's releases.

v4.28.1

What's Changed

Full Changelog: fastify/fastify@v4.28.0...v4.28.1

Commits

Updates @prisma/client from 5.15.0 to 5.16.1

Release notes

Sourced from @​prisma/client's releases.

5.16.1

Today, we are issuing the 5.16.1 patch release to fix an issue in Prisma client.

Fix in Prisma Client

5.16.0

🌟 Help us spread the word about Prisma by starring the repo or tweeting about the release. 🌟

Highlights

Omit model fields globally

With Prisma ORM 5.16.0 we’re more than happy to announce that we’re expanding the omitApi Preview feature to also include the ability to omit fields globally.

When the Preview feature is enabled, you’re able to define fields to omit when instantiating Prisma Client.

const prisma = new PrismaClient({
  omit: {
    user: {
      // make sure that password is never queried.
      password: true,
    },
  },
});

You’re also able to omit fields from multiple models and multiple fields from the same model

const prisma = new PrismaClient({
  omit: {
    user: { 
      // make sure that password and internalId are never queried.
      password: true,
      internalId: true,
    },
    post: {
      secretkey: true,
    },
  },
});

With both local and global omit, you now have the flexibility to completely remove sensitive fields while also tailoring individual queries. If you need the ability to generally omit a field except in a specific query, you can also overwrite a global omit locally

</tr></table> 

... (truncated)

Commits
  • c26bbfe fix(client): restore loading .env files in @prisma/client (#24649)
  • 1d34b5b chore(deps): update engines to 5.16.0-24.34ace0eb2704183d2c05b60b52fba5c43c13...
  • d433bb7 feat(client): provide a workaround for Vitest's struggles with "getQueryEngin...
  • 65e17a0 chore(deps): update engines to 5.16.0-23.d56fe2ee624826f693e591a3035694073d17...
  • c64e77f chore(deps): update engines to 5.16.0-21.9f3337c21c619aa48465f3766f6466c74ec7...
  • 6a6646c fix(cli): Always resolve output relatively to a file it defined in (#24598)
  • 617042d chore(deps): update engines to 5.16.0-20.bd07760d57443d11e2a958fd18bf524bbac1...
  • a1121f1 chore(deps): update dependency @​swc/core to v1.6.3 (#24546)
  • dbad2af chore(deps): update dependency wrangler to v3.61.0 (#24578)
  • 8808e17 feat(client): Implement global omit configuration (#24513)
  • Additional commits viewable in compare view

Updates @prisma/instrumentation from 5.15.0 to 5.16.1

Release notes

Sourced from @​prisma/instrumentation's releases.

5.16.1

Today, we are issuing the 5.16.1 patch release to fix an issue in Prisma client.

Fix in Prisma Client

5.16.0

🌟 Help us spread the word about Prisma by starring the repo or tweeting about the release. 🌟

Highlights

Omit model fields globally

With Prisma ORM 5.16.0 we’re more than happy to announce that we’re expanding the omitApi Preview feature to also include the ability to omit fields globally.

When the Preview feature is enabled, you’re able to define fields to omit when instantiating Prisma Client.

const prisma = new PrismaClient({
  omit: {
    user: {
      // make sure that password is never queried.
      password: true,
    },
  },
});

You’re also able to omit fields from multiple models and multiple fields from the same model

const prisma = new PrismaClient({
  omit: {
    user: { 
      // make sure that password and internalId are never queried.
      password: true,
      internalId: true,
    },
    post: {
      secretkey: true,
    },
  },
});

With both local and global omit, you now have the flexibility to completely remove sensitive fields while also tailoring individual queries. If you need the ability to generally omit a field except in a specific query, you can also overwrite a global omit locally

</tr></table> 

... (truncated)

Commits
  • a1121f1 chore(deps): update dependency @​swc/core to v1.6.3 (#24546)
  • f0a3fa1 chore(deps): update devdependencies patch (non-major) (#24504)
  • f8dbea9 chore(instrumentation): add @​opentelemetry/instrumentation 0.52 to deps range...
  • a3d572e chore(deps): update devdependencies patch (non-major) (#24421)
  • See full diff in compare view

Updates prisma from 5.15.0 to 5.16.1

Release notes

Sourced from prisma's releases.

5.16.1

Today, we are issuing the 5.16.1 patch release to fix an issue in Prisma client.

Fix in Prisma Client

5.16.0

🌟 Help us spread the word about Prisma by starring the repo or tweeting about the release. 🌟

Highlights

Omit model fields globally

With Prisma ORM 5.16.0 we’re more than happy to announce that we’re expanding the omitApi Preview feature to also include the ability to omit fields globally.

When the Preview feature is enabled, you’re able to define fields to omit when instantiating Prisma Client.

const prisma = new PrismaClient({
  omit: {
    user: {
      // make sure that password is never queried.
      password: true,
    },
  },
});

You’re also able to omit fields from multiple models and multiple fields from the same model

const prisma = new PrismaClient({
  omit: {
    user: { 
      // make sure that password and internalId are never queried.
      password: true,
      internalId: true,
    },
    post: {
      secretkey: true,
    },
  },
});

With both local and global omit, you now have the flexibility to completely remove sensitive fields while also tailoring individual queries. If you need the ability to generally omit a field except in a specific query, you can also overwrite a global omit locally

</tr></table> 

... (truncated)

Commits
  • 61c901b feat(cli): use new login endpoint for optimize (#24570)
  • 13172c2 feat(prismaSchemaFolder): Resolve paths in datasource blocks relative to the ...
  • 6a6646c fix(cli): Always resolve output relatively to a file it defined in (#24598)
  • a1121f1 chore(deps): update dependency @​swc/core to v1.6.3 (#24546)
  • 336555d chore(deps): update dependency ts-pattern to v5.2.0 (#24518)
  • 59a7419 chore(deps): update studio to v0.502.0 (#24534)
  • 9b7c5cc chore(deps): update dependency esbuild to v0.21.5 (#24502)
  • f0a3fa1 chore(deps): update devdependencies patch (non-major) (#24504)
  • a59dc6f feat(cli): generate, add --no-hint argument (#24274)
  • 317dd04 fix(cli): Generate should not fail on postinstall, even with no schema (#24...
  • Additional commits viewable in compare view

Updates globals from 15.6.0 to 15.7.0

Release notes

Sourced from globals's releases.

v15.7.0

  • Update globals (#255) f017b0f

sindresorhus/globals@v15.6.0...v15.7.0

Commits

Updates @grpc/grpc-js from 1.10.9 to 1.10.10

Release notes

Sourced from @​grpc/grpc-js's releases.

@​grpc/grpc-js 1.10.10

  • Various improvements to handling of keepalive timers (#2760 by @​davidfiala)
  • Fix a bug causing unary response client requests to hang when unexpectedly receiving multiple messages (#2772)
  • Fix a bug causing some requests to fail when making requests through a local proxy (#2746 contributed by @​mjameswh, backported in #2777)
  • Fix handling of URL-encoded user credentials in proxy configuration (#2761 contributed by @​brendan-myers, backported in #2777)
  • Fix missing client-side handling of the grpc.max_send_message_length channel option (#2779)
Commits
  • c934257 Merge pull request #2778 from murgatroid99/grpc-js_1.10.10
  • 3c55b5b Merge pull request #2777 from murgatroid99/grpc-js_1.10_backports
  • 97c4cda Merge pull request #2779 from murgatroid99/grpc-js_max_send_message_size_fix
  • 42844cf grpc-js: Re-add client-side max send message size checking
  • cbab4e5 grpc-js: Bump to 1.10.10
  • 5ae5514 fix: add decoding for url encoded user credentials
  • e759029 HTTP CONNECT: handle early server packets
  • 5c0226d Merge pull request #2760 from davidfiala/@grpc/grpc-js@1.10.x
  • 52fe8e9 Merge pull request #2772 from murgatroid99/grpc-js_cardinality_error_hang
  • 98cd87f ensure that client keepalive timers are always cleared when they trigger. thi...
  • Additional commits viewable in compare view

Updates mocha from 10.4.0 to 10.5.2

Release notes

Sourced from mocha's releases.

v10.5.2

What's Changed

New Contributors

Full Changelog: mochajs/mocha@v10.5.1...v10.5.2

v10.5.1

What's Changed

New Contributors

Full Changelog: mochajs/mocha@v10.5.0...v10.5.1

v10.5.0

🎉 Enhancements

🐛 Fixes

🔩 Other

Changelog

Sourced from mocha's changelog.

10.5.2 / 2024-05-25

🐛 Fixes

10.5.1 / 2024-05-24

🐛 Fixes

  • #5086 fix: Add error handling for nonexistent file case with --file option (@​khoaHyh)

10.5.0 / 2024-05-24

🎉 Enhancements

🐛 Fixes

🔩 Other

Commits
  • b2a6358 Release 10.5.2
  • a3bb86d docs: add 10.5.2 to CHANGELOG.md
  • 02c04c4 fix: better tracking of seen objects in error serialization (#5032)
  • 103c56b Release v10.5.1
  • 545b66d docs: add 10.5.1 to CHANGELOG.md
  • dbe229d fix: Add error handling for nonexistent file case with --file option (#5086)
  • b9ce511 Release v10.5.0
  • 12c88a7 Docs: add 10.5.0 to CHANGELOG.md
  • b6aa7e8 chore: rename 'master' to 'main' in docs and tooling (#5130)
  • 67a8124 fix: include stack in browser uncaught error reporting (#5107)
  • Additional commits viewable in compare view

Updates @types/mocha from 10.0.6 to 10.0.7

Commits

Updates bson from 6.7.0 to 6.8.0

Release notes

Sourced from bson's releases.

v6.8.0

6.8.0 (2024-06-27)

The MongoDB Node.js team is pleased to announce version 6.8.0 of the bson package!

Release Notes

Add Signature to Github Releases

The Github release for js-bson now contains a detached signature file for the NPM package (named bson-X.Y.Z.tgz.sig), on every major and patch release to 6.x and 5.x. To verify the signature, follow the instructions in the 'Release Integrity' section of the README.md file.

Optimize performance of Long.fromBigInt

Internally fromBigInt was originally implemented using toString of the bigint value. Now, Long.fromBigInt has been refactored to use bitwise operations greatly improving performance.

Features

  • NODE-6156: add signature to github releases (#692) (f0fbe91)

Performance Improvements

  • NODE-6126: improve Long.fromBigInt performance (#681) (63eafcb)

Documentation

We invite you to try the bson library immediately, and report any issues to the NODE project.

Changelog

Sourced from bson's changelog.

6.8.0 (2024-06-27)

Features

  • NODE-6156: add signature to github releases (#692) (f0fbe91)

Performance Improvements

  • NODE-6126: improve Long.fromBigInt performance (#681) (63eafcb)
Commits
  • ede8357 chore(main): release 6.8.0 [skip-ci] (#689)
  • de780bc docs(NODE-6235): update release integrity section (#702)
  • 676b797 chore: full ssdlc report (#701)
  • 36c8134 chore(NODE-6212): upload sbom to s3 during releases and use actions v2 (#700)
  • 8cf9323 chore: upgrade release signing to drivers-github-tools v2 (#696)
  • 9e7b76a chore(NODE-6170): update release please owner (#690)
  • b0f9264 chore: use sarif report action from main (#699)
  • cc2871e chore(NODE-6195): generate sarif reports during releases (#695)
  • 8c760d1 chore: incorrectly attempting access to sign release artifacts variables (#694)
  • f0fbe91 feat(NODE-6156): add signature to github releases (#692)
  • Additional commits viewable in compare view

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
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the misc group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [mysql2](https://github.com/sidorares/node-mysql2) | `3.10.1` | `3.10.2` |
| [fastify](https://github.com/fastify/fastify) | `4.28.0` | `4.28.1` |
| [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) | `5.15.0` | `5.16.1` |
| [@prisma/instrumentation](https://github.com/prisma/prisma/tree/HEAD/packages/instrumentation) | `5.15.0` | `5.16.1` |
| [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) | `5.15.0` | `5.16.1` |
| [globals](https://github.com/sindresorhus/globals) | `15.6.0` | `15.7.0` |
| [@grpc/grpc-js](https://github.com/grpc/grpc-node) | `1.10.9` | `1.10.10` |
| [mocha](https://github.com/mochajs/mocha) | `10.4.0` | `10.5.2` |
| [@types/mocha](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/mocha) | `10.0.6` | `10.0.7` |
| [bson](https://github.com/mongodb/js-bson) | `6.7.0` | `6.8.0` |



Updates `mysql2` from 3.10.1 to 3.10.2
- [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.10.1...v3.10.2)

Updates `fastify` from 4.28.0 to 4.28.1
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v4.28.0...v4.28.1)

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

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

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

Updates `globals` from 15.6.0 to 15.7.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v15.6.0...v15.7.0)

Updates `@grpc/grpc-js` from 1.10.9 to 1.10.10
- [Release notes](https://github.com/grpc/grpc-node/releases)
- [Commits](https://github.com/grpc/grpc-node/compare/@grpc/grpc-js@1.10.9...@grpc/grpc-js@1.10.10)

Updates `mocha` from 10.4.0 to 10.5.2
- [Release notes](https://github.com/mochajs/mocha/releases)
- [Changelog](https://github.com/mochajs/mocha/blob/main/CHANGELOG.md)
- [Commits](mochajs/mocha@v10.4.0...v10.5.2)

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

Updates `bson` from 6.7.0 to 6.8.0
- [Release notes](https://github.com/mongodb/js-bson/releases)
- [Changelog](https://github.com/mongodb/js-bson/blob/main/HISTORY.md)
- [Commits](mongodb/js-bson@v6.7.0...v6.8.0)

---
updated-dependencies:
- dependency-name: mysql2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: misc
- dependency-name: fastify
  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: prisma
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: misc
- dependency-name: globals
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: misc
- dependency-name: "@grpc/grpc-js"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: misc
- dependency-name: mocha
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: misc
- dependency-name: "@types/mocha"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: misc
- dependency-name: bson
  dependency-type: direct:production
  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 July 1, 2024 13:44
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jul 1, 2024
@raphael-theriault-swi raphael-theriault-swi merged commit 60ca7d3 into main Jul 2, 2024
6 of 7 checks passed
@raphael-theriault-swi raphael-theriault-swi deleted the dependabot/npm_and_yarn/misc-a1509bab0e branch July 2, 2024 17:52
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

1 participant