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

chore(deps): bump the minor group with 16 updates #343

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

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 14, 2024

Bumps the minor group with 16 updates:

Package From To
@prisma/client 5.18.0 5.20.0
@react-email/components 0.0.22 0.0.25
next 14.2.14 14.2.15
nodemailer 6.9.14 6.9.15
@types/nodemailer 6.4.15 6.4.16
react-intersection-observer 9.13.0 9.13.1
rehype-format 5.0.0 5.0.1
rehype-stringify 10.0.0 10.0.1
remark-rehype 11.1.0 11.1.1
sass 1.77.8 1.79.5
winston 3.14.2 3.15.0
@types/jsonwebtoken 9.0.6 9.0.7
@types/react 18.3.3 18.3.11
@types/react-dom 18.3.0 18.3.1
prisma 5.18.0 5.20.0
typescript 5.5.4 5.6.3

Updates @prisma/client from 5.18.0 to 5.20.0

Release notes

Sourced from @​prisma/client's releases.

5.20.0

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

Highlights

strictUndefinedChecks in Preview

With Prisma ORM 5.20.0, the Preview feature strictUndefinedChecks will disallow any value that is explicitly undefined and will be a runtime error. This change is direct feedback from this GitHub issue and follows our latest proposal on the same issue.

To demonstrate the change, take the following code snippet:

prisma.table.deleteMany({
  where: {
    // If `nullableThing` is nullish, this query will remove all data.
    email: nullableThing?.property,
  }
})

In Prisma ORM 5.19.0 and below, this could result in unintended behavior. In Prisma ORM 5.20.0, if the strictUndefinedChecks Preview feature is enabled, you will get a runtime error instead:

Invalid \`prisma.user.findMany()\` invocation in
/client/tests/functional/strictUndefinedChecks/test.ts:0:0
  XX })
  XX 
  XX test('throws on undefined input field', async () => {
→ XX   const result = prisma.user.deleteMany({
         where: {
           email: undefined
                  ~~~~~~~~~
         }
       })
Invalid value for argument \`where\`: explicitly \`undefined\` values are not allowed."

We have also introduced the Prisma.skip symbol, which will allow you to get the previous behavior if desired.

prisma.table.findMany({
  where: {
    // Use Prisma.skip to skip parts of the query
    email: nullableEmail ?? Prisma.skip
  }
})

From Prisma ORM 5.20.0 onward, we recommend enabling strictUndefinedChecks, along with the TypeScript compiler option exactOptionalPropertyTypes, which will help catch cases of undefined values at compile time. Together, these two changes will help protect your Prisma queries from potentially destructive behavior.

... (truncated)

Commits
  • bf237ff chore(deps): update engines to 5.20.0-12.06fc58a368dc7be9fbbbe894adf8d445d208...
  • b2c080e test(e2e): Update types in e2e tests (#25263)
  • 100c926 feat(typed-sql): Support enum names that are not valid JS identifiers (#25262)
  • ce11a90 feat(client): implement strictUndefinedChecks (#25224)
  • 9810341 chore(deps): update engines to 5.20.0-8.c9ff5773c72b821ff6daf2c55dbe3809eae7c...
  • def5747 chore(e2e): Update next.js to 14 in "schema-not-found" suite (#25197)
  • 47e8f13 feat(driver-adapters): add TransactionContext (#24878)
  • cfd2791 chore: add explicit ts-toolbelt dependency, only use "import type" to avoid b...
  • 08a1733 fix(client): .$extends prevents typescript documentation (#25070)
  • ff16728 chore(deps): update engines to 5.20.0-4.f2561ec470647d6a14db84d3c1dc6fc1c2414...
  • Additional commits viewable in compare view

Updates @react-email/components from 0.0.22 to 0.0.25

Release notes

Sourced from @​react-email/components's releases.

@​react-email/components 0.0.25

What's Changed

  • Updated dependencies [0a40975]
    • @​react-email/code-block@​0.0.9

Full Changelog: https://github.com/resend/react-email/compare/@​react-email/components@​0.0.24...@​react-email/components@​0.0.25

@​react-email/components 0.0.24

What's Changed

  • Updated dependencies [1afe32a]
    • @​react-email/code-block@​0.0.8
  • Updated dependencies [7481b12]
    • @​react-email/render@​1.0.1

Full Changelog: https://github.com/resend/react-email/compare/@​react-email/components@​0.0.23...@​react-email/components@​0.0.24

@​react-email/components 0.0.23

What's Changed

  • 3caaf53: Updated peer dependencies to allow for React 19 release candidate and React 19 itself
  • Updated dependencies [3caaf53]
  • Updated dependencies [5018ce8]
  • Updated dependencies [bec4b08]
  • Updated dependencies [f9483ec]
  • Updated dependencies [6d27a20]
    • @​react-email/code-inline@​0.0.4
    • @​react-email/code-block@​0.0.7
    • @​react-email/container@​0.0.14
    • @​react-email/markdown@​0.0.12
    • @​react-email/tailwind@​0.1.0
    • @​react-email/heading@​0.0.14
    • @​react-email/preview@​0.0.11
    • @​react-email/section@​0.0.14
    • @​react-email/button@​0.0.17
    • @​react-email/column@​0.0.12
    • @​react-email/render@​1.0.0
    • @​react-email/body@​0.0.10
    • @​react-email/font@​0.0.8
    • @​react-email/head@​0.0.11
    • @​react-email/html@​0.0.10
    • @​react-email/link@​0.0.10
    • @​react-email/text@​0.0.10
    • @​react-email/img@​0.0.10
    • @​react-email/row@​0.0.10
    • @​react-email/hr@​0.0.10

Full Changelog: https://github.com/resend/react-email/compare/@​react-email/components@​0.0.22...@​react-email/components@​0.0.23

Changelog

Sourced from @​react-email/components's changelog.

0.0.25

Patch Changes

  • Updated dependencies [0a40975]
    • @​react-email/code-block@​0.0.9

0.0.24

Patch Changes

  • Updated dependencies [1afe32a]
  • Updated dependencies [7481b12]
    • @​react-email/code-block@​0.0.8
    • @​react-email/render@​1.0.1
    • @​react-email/body@​0.0.10
    • @​react-email/button@​0.0.17
    • @​react-email/code-inline@​0.0.4
    • @​react-email/column@​0.0.12
    • @​react-email/container@​0.0.14
    • @​react-email/font@​0.0.8
    • @​react-email/head@​0.0.11
    • @​react-email/heading@​0.0.14
    • @​react-email/hr@​0.0.10
    • @​react-email/html@​0.0.10
    • @​react-email/img@​0.0.10
    • @​react-email/link@​0.0.10
    • @​react-email/markdown@​0.0.12
    • @​react-email/preview@​0.0.11
    • @​react-email/row@​0.0.10
    • @​react-email/section@​0.0.14
    • @​react-email/text@​0.0.10

0.0.23

Patch Changes

  • 3caaf53: Updated peer dependencies to allow for React 19 release candidated and React 19 itself
  • Updated dependencies [3caaf53]
  • Updated dependencies [5018ce8]
  • Updated dependencies [bec4b08]
  • Updated dependencies [f9483ec]
  • Updated dependencies [6d27a20]
    • @​react-email/code-inline@​0.0.4
    • @​react-email/code-block@​0.0.7
    • @​react-email/container@​0.0.14
    • @​react-email/markdown@​0.0.12
    • @​react-email/tailwind@​0.1.0
    • @​react-email/heading@​0.0.14
    • @​react-email/preview@​0.0.11

... (truncated)

Commits

Updates next from 14.2.14 to 14.2.15

Release notes

Sourced from next's releases.

v14.2.15

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes

  • support breadcrumb style catch-all parallel routes #65063
  • Provide non-dynamic segments to catch-all parallel routes #65233
  • Fix client reference access causing metadata missing #70732
  • feat(next/image): add support for decoding prop #70298
  • feat(next/image): add images.localPatterns config #70529
  • fix(next/image): handle undefined images.localPatterns config in images-manifest.json
  • fix: Do not omit alt on getImgProps return type, ImgProps #70608
  • [i18n] Routing fix #70761

Credits

Huge thanks to @​ztanner, @​agadzik, @​huozhi, @​styfle, @​icyJoseph and @​wyattjoh for helping!

Commits

Updates nodemailer from 6.9.14 to 6.9.15

Release notes

Sourced from nodemailer's releases.

v6.9.15

6.9.15 (2024-08-08)

Bug Fixes

Changelog

Sourced from nodemailer's changelog.

6.9.15 (2024-08-08)

Bug Fixes

Commits

Updates @types/nodemailer from 6.4.15 to 6.4.16

Commits

Updates react-intersection-observer from 9.13.0 to 9.13.1

Release notes

Sourced from react-intersection-observer's releases.

v9.13.1

9.13.1 (2024-09-04)

Bug Fixes

  • align IntersectionObserver options with DOM API (abb4ee8)
Commits
  • 7c6939a Merge pull request #701 from thebuilder/fix/align-options-with-dom
  • abb4ee8 fix: align IntersectionObserver options with DOM API
  • b6ef3ce Merge pull request #698 from thebuilder/fix/action-install-playwright
  • 4193313 ci: fix install playwright correctly in test run
  • See full diff in compare view

Updates rehype-format from 5.0.0 to 5.0.1

Release notes

Sourced from rehype-format's releases.

5.0.1

Misc

  • 1d9bb05 Refactor to externalize core as hast-util-format

Types

  • 75a0ecc Refactor to use @imports
  • ae554c2 Add declaration maps

Full Changelog: rehypejs/rehype-format@5.0.0...5.0.1

Commits

Updates rehype-stringify from 10.0.0 to 10.0.1

Commits

Updates remark-rehype from 11.1.0 to 11.1.1

Release notes

Sourced from remark-rehype's releases.

11.1.1

Fix

  • f0cce2d Fix mutate support in unified-engine

Miscellaneous

  • 364ee71 Remove license year

Types

  • e4576c0 Refactor to use @imports
  • c62d719 Add declaration maps

Full Changelog: remarkjs/remark-rehype@11.1.0...11.1.1

Commits

Updates sass from 1.77.8 to 1.79.5

Release notes

Sourced from sass's releases.

Dart Sass 1.79.5

To install Sass 1.79.5, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Changes to how selector.unify() and @extend combine selectors:

    • The relative order of pseudo-classes (like :hover) and pseudo-elements (like ::before) within each original selector is now preserved when they're combined.

    • Pseudo selectors are now consistently placed at the end of the combined selector, regardless of which selector they came from. Previously, this reordering only applied to pseudo-selectors in the second selector.

  • Tweak the color transformation matrices for OKLab and OKLCH to match the newer, more accurate values in the CSS spec.

  • Fix a slight inaccuracy case when converting to srgb-linear and display-p3.

  • Potentially breaking bug fix: math.unit() now wraps multiple denominator units in parentheses. For example, px/(em*em) instead of px/em*em.

Command-Line Interface

  • Use @parcel/watcher to watch the filesystem when running from JavaScript and not using --poll. This should mitigate more frequent failures users have been seeing since version 4.0.0 of Chokidar, our previous watching tool, was released.

JS API

  • Fix SassColor.interpolate() to allow an undefined options parameter, as the types indicate.

Embedded Sass

  • Properly pass missing color channel values to and from custom functions.

See the full changelog for changes in earlier releases.

Dart Sass 1.79.4

To install Sass 1.79.4, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

JS API

  • Fix a bug where passing green or blue to color.change() for legacy colors would fail.

See the full changelog for changes in earlier releases.

Dart Sass 1.79.3

To install Sass 1.79.3, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

... (truncated)

Changelog

Sourced from sass's changelog.

1.79.5

  • Changes to how selector.unify() and @extend combine selectors:

    • The relative order of pseudo-classes (like :hover) and pseudo-elements (like ::before) within each original selector is now preserved when they're combined.

    • Pseudo selectors are now consistently placed at the end of the combined selector, regardless of which selector they came from. Previously, this reordering only applied to pseudo-selectors in the second selector.

  • Tweak the color transformation matrices for OKLab and OKLCH to match the newer, more accurate values in the CSS spec.

  • Fix a slight inaccuracy case when converting to srgb-linear and display-p3.

  • Potentially breaking bug fix: math.unit() now wraps multiple denominator units in parentheses. For example, px/(em*em) instead of px/em*em.

Command-Line Interface

  • Use @parcel/watcher to watch the filesystem when running from JavaScript and not using --poll. This should mitigate more frequent failures users have been seeing since version 4.0.0 of Chokidar, our previous watching tool, was released.

JS API

  • Fix SassColor.interpolate() to allow an undefined options parameter, as the types indicate.

Embedded Sass

  • Properly pass missing color channel values to and from custom functions.

1.79.4

JS API

  • Fix a bug where passing green or blue to color.change() for legacy colors would fail.

1.79.3

  • Update the $channel parameter in the suggested replacement for color.red(), color.green(), color.blue(), color.hue(), color.saturation(), color.lightness(), color.whiteness(), and color.blackness() to use a quoted string.

... (truncated)

Commits
  • 7290399 Partially replace chokidar with @​parcel/watcher (#2379)
  • 85b467b Update LMS matrices (#2374)
  • 2c5f1e9 Use correct notation for multiple denominator units (#2375)
  • d58e219 Add sass-parser support for for the @supports rule (#2378)
  • 5535d1f Fix srgb to linear (#2372)
  • 5acae8a Fix JS API color.interpolate(color2) without options (#2369)
  • 4890989 Add support for missing color channels to the protofier (#2366)
  • 67fecff unifyComound() and unifyComplex() no longer move pseudo-classes across pseudo...
  • f84e867 Fix JS API legacy SassColor.change (#2368)
  • 72612c4 Bump bufbuild/buf-setup-action in /.github/util/initialize (#2363)
  • Additional commits viewable in compare view

Updates winston from 3.14.2 to 3.15.0

Release notes

Sourced from winston's releases.

v3.15.0

Note: we removed LogCallback from the TS definitions because the underlying library didn't actually support these. If this causes issues in your apps, we recommend you remove references to LogCallbacks, since such code was not being executed anyways. See #2513 and the issue linked therein.

  • remove logcallback (#2513) 3a54777
  • chore(docs): Update README.md w/ usage comments (#2507) f110f61
  • Bump nyc from 15.1.0 to 17.1.0 (#2511) f5dde86
  • Bump @​babel/cli from 7.24.7 to 7.25.6 (#2512) d1b8dc6
  • Bump @​babel/preset-env from 7.24.8 to 7.25.4 (#2506) 564161a
  • Bump mocha from 10.7.0 to 10.7.3 (#2500) eb7e315
  • Unified Handler Tests (#2020) 22aab6d

winstonjs/winston@v3.14.2...v3.15.0

Commits

Updates @types/jsonwebtoken from 9.0.6 to 9.0.7

Commits

Updates @types/nodemailer from 6.4.15 to 6.4.16

Commits

Updates @types/react from 18.3.3 to 18.3.11

Commits

Updates @types/react-dom from 18.3.0 to 18.3.1

Commits

Updates prisma from 5.18.0 to 5.20.0

Release notes

Sourced from prisma's releases.

5.20.0

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

Highlights

strictUndefinedChecks in Preview

With Prisma ORM 5.20.0, the Preview feature strictUndefinedChecks will disallow any value that is explicitly undefined and will be a runtime error. This change is direct feedback from this GitHub issue and follows our latest proposal on the same issue.

To demonstrate the change, take the following code snippet:

prisma.table.deleteMany({
  where: {
    // If `nullableThing` is nullish, this query will remove all data.
    email: nullableThing?.property,
  }
})

In Prisma ORM 5.19.0 and below, this could result in unintended behavior. In Prisma ORM 5.20.0, if the strictUndefinedChecks Preview feature is enabled, you will get a runtime error instead:

Invalid \`prisma.user.findMany()\` invocation in
/client/tests/functional/strictUndefinedChecks/test.ts:0:0
  XX })
  XX 
  XX test('throws on undefined input field', async () => {
→ XX   const result = prisma.user.deleteMany({
         where: {
           email: undefined
                  ~~~~~~~~~
         }
       })
Invalid value for argument \`where\`: explicitly \`undefined\` values are not allowed."

We have also introduced the Prisma.skip symbol, which will allow you to get the previous behavior if desired.

prisma.table.findMany({
  where: {
    // Use Prisma.skip to skip parts of the query
    email: nullableEmail ?? Prisma.skip
  }
})

From Prisma ORM 5.20.0 onward, we recommend enabling strictUndefinedChecks, along with the TypeScript compiler option exactOptionalPropertyTypes, which will help catch cases of undefined values at compile time. Together, these two changes will help protect your Prisma queries from potentially destructive behavior.

... (truncated)

Commits

Updates typescript from 5.5.4 to 5.6.3

Release notes

Sourced from typescript's releases.

TypeScript 5.6.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6 RC

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.6 Beta

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

... (truncated)

Commits
  • d48a5cf Bump version to 5.6.3 and LKG
  • fefa70a 🤖 Pick PR #60083 (Don't issue implicit any when obtai...) into release-5.6 (#...
  • ff71692 [release-5.6] Remove tsbuildInfo specification error now that we need it for ...
  • 1f44dcf 🤖 Pick PR #60157 (fix automatic type acquisition) into release-5.6 (#60169)
  • a7e3374 Bump version to 5.6.2 and LKG
  • 2063357 🤖 Pick PR #59708 (LEGO: Pull request from lego/hb_537...) into release-5.6 (#...
  • 4fe7e41 🤖 Pick PR #59670 (fix(59649): ts Move to a new file d...) into release-5.6 (#...
  • 1a03e53 🤖 Pick PR #59761 (this can be nullish) into release-5.6 (#59762)
  • 6212132 Update LKG
  • bbb5faf 🤖 Pick PR #59542 (Fixing delay caused in vscode due t...) into release-5.6 (#...
  • 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 minor group with 16 updates:

| Package | From | To |
| --- | --- | --- |
| [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) | `5.18.0` | `5.20.0` |
| [@react-email/components](https://github.com/resend/react-email/tree/HEAD/packages/components) | `0.0.22` | `0.0.25` |
| [next](https://github.com/vercel/next.js) | `14.2.14` | `14.2.15` |
| [nodemailer](https://github.com/nodemailer/nodemailer) | `6.9.14` | `6.9.15` |
| [@types/nodemailer](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/nodemailer) | `6.4.15` | `6.4.16` |
| [react-intersection-observer](https://github.com/thebuilder/react-intersection-observer) | `9.13.0` | `9.13.1` |
| [rehype-format](https://github.com/rehypejs/rehype-format) | `5.0.0` | `5.0.1` |
| [rehype-stringify](https://github.com/rehypejs/rehype) | `10.0.0` | `10.0.1` |
| [remark-rehype](https://github.com/remarkjs/remark-rehype) | `11.1.0` | `11.1.1` |
| [sass](https://github.com/sass/dart-sass) | `1.77.8` | `1.79.5` |
| [winston](https://github.com/winstonjs/winston) | `3.14.2` | `3.15.0` |
| [@types/jsonwebtoken](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jsonwebtoken) | `9.0.6` | `9.0.7` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.3.3` | `18.3.11` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.3.0` | `18.3.1` |
| [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) | `5.18.0` | `5.20.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.5.4` | `5.6.3` |


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

Updates `@react-email/components` from 0.0.22 to 0.0.25
- [Release notes](https://github.com/resend/react-email/releases)
- [Changelog](https://github.com/resend/react-email/blob/canary/packages/components/CHANGELOG.md)
- [Commits](https://github.com/resend/react-email/commits/@react-email/components@0.0.25/packages/components)

Updates `next` from 14.2.14 to 14.2.15
- [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.2.14...v14.2.15)

Updates `nodemailer` from 6.9.14 to 6.9.15
- [Release notes](https://github.com/nodemailer/nodemailer/releases)
- [Changelog](https://github.com/nodemailer/nodemailer/blob/master/CHANGELOG.md)
- [Commits](nodemailer/nodemailer@v6.9.14...v6.9.15)

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

Updates `react-intersection-observer` from 9.13.0 to 9.13.1
- [Release notes](https://github.com/thebuilder/react-intersection-observer/releases)
- [Commits](thebuilder/react-intersection-observer@v9.13.0...v9.13.1)

Updates `rehype-format` from 5.0.0 to 5.0.1
- [Release notes](https://github.com/rehypejs/rehype-format/releases)
- [Commits](rehypejs/rehype-format@5.0.0...5.0.1)

Updates `rehype-stringify` from 10.0.0 to 10.0.1
- [Release notes](https://github.com/rehypejs/rehype/releases)
- [Changelog](https://github.com/rehypejs/rehype/blob/main/changelog.md)
- [Commits](https://github.com/rehypejs/rehype/compare/rehype-stringify@10.0.0...10.0.1)

Updates `remark-rehype` from 11.1.0 to 11.1.1
- [Release notes](https://github.com/remarkjs/remark-rehype/releases)
- [Commits](remarkjs/remark-rehype@11.1.0...11.1.1)

Updates `sass` from 1.77.8 to 1.79.5
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.77.8...1.79.5)

Updates `winston` from 3.14.2 to 3.15.0
- [Release notes](https://github.com/winstonjs/winston/releases)
- [Changelog](https://github.com/winstonjs/winston/blob/master/CHANGELOG.md)
- [Commits](winstonjs/winston@v3.14.2...v3.15.0)

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

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

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

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

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

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

---
updated-dependencies:
- dependency-name: "@prisma/client"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@react-email/components"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: next
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: nodemailer
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@types/nodemailer"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: react-intersection-observer
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: rehype-format
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: rehype-stringify
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: remark-rehype
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: sass
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: winston
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@types/jsonwebtoken"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@types/nodemailer"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: prisma
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 14, 2024
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants