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-and-patch group with 22 updates #303

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 26, 2024

Bumps the minor-and-patch group with 22 updates:

Package From To
@hookform/resolvers 3.4.2 3.6.0
@mui/material 5.15.18 5.15.20
@next/third-parties 14.2.3 14.2.4
@prisma/client 5.14.0 5.16.0
@supabase/ssr 0.3.0 0.4.0
@supabase/supabase-js 2.43.4 2.44.0
framer-motion 11.2.6 11.2.12
next 14.2.3 14.2.4
react-hook-form 7.51.5 7.52.0
@types/node 20.12.12 20.14.9
@typescript-eslint/eslint-plugin 7.10.0 7.14.1
@typescript-eslint/parser 7.10.0 7.14.1
eslint-config-next 14.2.3 14.2.4
prettier 3.2.5 3.3.2
prettier-plugin-tailwindcss 0.5.14 0.6.5
prisma 5.14.0 5.16.0
sass 1.77.2 1.77.6
stylelint 16.6.0 16.6.1
stylelint-config-standard 36.0.0 36.0.1
stylelint-scss 6.3.0 6.3.2
tailwindcss 3.4.3 3.4.4
typescript 5.4.5 5.5.2

Updates @hookform/resolvers from 3.4.2 to 3.6.0

Release notes

Sourced from @​hookform/resolvers's releases.

v3.6.0

3.6.0 (2024-06-06)

Features

  • upgrade and migrate Valibot to v0.31.0 (#688) (bdd5ef5)

v3.5.0

3.5.0 (2024-06-04)

Features

Commits

Updates @mui/material from 5.15.18 to 5.15.20

Release notes

Sourced from @​mui/material's releases.

v5.15.20

Jun 12, 2024

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

@mui/[email protected]

@mui/[email protected]

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​anle9650, @​DanailH, @​danilo-leal, @​erezstmn-doit, @​iammminzzy, @​oliviertassinari, @​sai6855, @​ZeeshanTamboli

v5.15.19

May 29, 2024

A big thanks to the 12 contributors who made this release possible. This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/[email protected]

... (truncated)

Changelog

Sourced from @​mui/material's changelog.

v5.15.20

Jun 12, 2024

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

@mui/[email protected]

@mui/[email protected]

Docs

Core

All contributors of this release in alphabetical order: @​aarongarciah, @​anle9650, @​DanailH, @​danilo-leal, @​erezstmn-doit, @​iammminzzy, @​oliviertassinari, @​sai6855, @​ZeeshanTamboli

v5.15.19

May 29, 2024

A big thanks to the 12 contributors who made this release possible. This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

... (truncated)

Commits

Updates @next/third-parties from 14.2.3 to 14.2.4

Release notes

Sourced from @​next/third-parties's releases.

v14.2.4

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

Core Changes

  • fix: ensure route handlers properly track dynamic access (#66446)
  • fix NextRequest proxy in edge runtime (#66551)
  • Fix next/dynamic with babel and src dir (#65177)
  • Use vercel deployment url for metadataBase fallbacks (#65089)
  • fix(next/image): detect react@19 for fetchPriority prop (#65235)
  • Fix loading navigation with metadata and prefetch (#66447)
  • prevent duplicate RSC fetch when action redirects (#66620)
  • ensure router cache updates reference the latest cache values (#66681)
  • Prevent append of trailing slash in cases where path ends with a file extension (#66636)
  • Fix inconsistency with 404 getStaticProps cache-control (#66674)
  • Use addDependency to track metadata route file changes (#66714)
  • Add timeout/retry handling for fetch cache (#66652)
  • fix: app-router prefetch crash when an invalid URL is passed to Link (#66755)

Credits

Huge thanks to @​ztanner, @​ijjk, @​wbinnssmith, @​huozhi, and @​lubieowoce for helping!

Commits

Updates @prisma/client from 5.14.0 to 5.16.0

Release notes

Sourced from @​prisma/client's releases.

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

const prisma = new PrismaClient({
  omit: {
    user: { 
      // password is omitted globally.
      password: true,
    },
  },
});
</tr></table> 

... (truncated)

Commits
  • 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)
  • d988aff chore(deps): update engines to 5.16.0-19.5e01b9388099d5c46de4969759ebb24b001a...
  • Additional commits viewable in compare view

Updates @supabase/ssr from 0.3.0 to 0.4.0

Release notes

Sourced from @​supabase/ssr's releases.

v0.4.0

0.4.0 (2024-06-24)

Features

  • full rewrite using getAll and setAll cookie methods (#1) (b6ae192)

Bug Fixes

  • allow use of createBrowserClient without window present (#20) (27d868d)
  • deprecate parse, serialize exports for more useful functions (#14) (0b5f881)
  • fix createBrowserClient deprecation tsdoc (#17) (1df70ad)

v0.4.0-rc.6

This is a release candidate. See release-please PR #12 for context.

v0.4.0-rc.5

This is a release candidate. See release-please PR #12 for context.

v0.4.0-rc.4

This is a release candidate. See release-please PR #12 for context.

v0.4.0-rc.3

This is a release candidate. See release-please PR #12 for context.

v0.4.0-rc.2

This is a release candidate. See release-please PR #12 for context.

Changelog

Sourced from @​supabase/ssr's changelog.

0.4.0 (2024-06-24)

Features

  • full rewrite using getAll and setAll cookie methods (#1) (b6ae192)

Bug Fixes

  • allow use of createBrowserClient without window present (#20) (27d868d)
  • deprecate parse, serialize exports for more useful functions (#14) (0b5f881)
  • fix createBrowserClient deprecation tsdoc (#17) (1df70ad)
Commits
  • 8dae532 chore(main): release 0.4.0 (#12)
  • 27d868d fix: allow use of createBrowserClient without window present (#20)
  • 1df70ad fix: fix createBrowserClient deprecation tsdoc (#17)
  • 0b5f881 fix: deprecate parse, serialize exports for more useful functions (#14)
  • d01c628 ci: fix doubling of rc version identifier (#13)
  • b6ae192 feat: full rewrite using getAll and setAll cookie methods (#1)
  • b115940 ci: add release please action (#10)
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by stdim, a new releaser for @​supabase/ssr since your current version.


Updates @supabase/supabase-js from 2.43.4 to 2.44.0

Release notes

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

v2.44.0

2.44.0 (2024-06-25)

Features

v2.43.6

2.43.6 (2024-06-25)

Bug Fixes

v2.43.5

2.43.5 (2024-06-16)

Bug Fixes

Commits
  • 37dc1ae feat: Bump realtime-js 2.10.1 (#1231)
  • 450aa49 fix: postgrest-js 1.15.6
  • cb7b046 fix: bump dependencies. (#1225)
  • 2ffce15 chore(deps): bump storage-js dependency (#1224)
  • 9e606cf chore(deps): resolve dependabot alerts
  • c8768c2 chore(deps): bump next from 14.0.1 to 14.1.1 in /examples/next-storage
  • 8c4e0ca chore(deps): bump next from 14.0.1 to 14.1.1 in /examples/next-ts
  • 8d5fe92 chore(deps): bump next from 14.0.1 to 14.1.1 in /examples/next-todo
  • See full diff in compare view

Updates framer-motion from 11.2.6 to 11.2.12

Changelog

Sourced from framer-motion's changelog.

[11.2.12] 2024-06-25

Fixed

  • Fixing dragConstraints={ref} mixed with layout animations.

[11.2.10] 2024-05-31

Fixed

  • Changing invalid number interpolation from error to warning and immediate mix.

[11.2.9] 2024-05-29

Fixed

  • Fixing animation of CSS variables when leading space is present.

[11.2.8] 2024-05-29

Fixed

  • Ensuring instant animations return animation controls.

[11.2.7] 2024-05-29

Fixed

  • Only allow layout animations to cancel optimised appear animations when on the same node or an ancestor.
Commits

Updates next from 14.2.3 to 14.2.4

Release notes

Sourced from next's releases.

v14.2.4

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

Core Changes

  • fix: ensure route handlers properly track dynamic access (#66446)
  • fix NextRequest proxy in edge runtime (#66551)
  • Fix next/dynamic with babel and src dir (#65177)
  • Use vercel deployment url for metadataBase fallbacks (#65089)
  • fix(next/image): detect react@19 for fetchPriority prop (#65235)
  • Fix loading navigation with metadata and prefetch (#66447)
  • prevent duplicate RSC fetch when action redirects (#66620)
  • ensure router cache updates reference the latest cache values (#66681)
  • Prevent append of trailing slash in cases where path ends with a file extension (#66636)
  • Fix inconsistency with 404 getStaticProps cache-control (#66674)
  • Use addDependency to track metadata route file changes (#66714)
  • Add timeout/retry handling for fetch cache (#66652)
  • fix: app-router prefetch crash when an invalid URL is passed to Link (#66755)

Credits

Huge thanks to @​ztanner, @​ijjk, @​wbinnssmith, @​huozhi, and @​lubieowoce for helping!

Commits
  • 3078441 v14.2.4
  • 0538a0d [not a backport] fix lint errors
  • 2807fb4 fix: app-router prefetch crash when an invalid URL is passed to Link (#66755)
  • efb476e Add timeout/retry handling for fetch cache (#66652)
  • c16a3f9 Use addDependency to track metadata route file changes (#66714)
  • 942e45a Fix inconsistency with 404 getStaticProps cache-control (#66674)
  • 9728a35 Prevent append of trailing slash in cases where path ends with a file extensi...
  • 44661c2 ensure router cache updates reference the latest cache values (#66681)
  • f7ec039 prevent duplicate RSC fetch when action redirects (#66620)
  • dd6ab93 Fix loading navigation with metadata and prefetch (#66447)
  • Additional commits viewable in compare view

Updates react-hook-form from 7.51.5 to 7.52.0

Release notes

Sourced from react-hook-form's releases.

v7.52.0

⚛️ close #11932 enable react 19 peer dependency (#11935) 👮‍♀️ close #11954 getFieldState remove unnessaried inValidating and touched subscription (#11995) 🐞 fix #11985 logic createFormControl check field before usage (#11986) ⌨️ fix: enforce type safety for deps property in RegisterOptions (#11969) 🐞 fix #11922 keep dirty on reset with dirty fields (#11958) 🚔 close #11937 add validation in the cleanup process in useController (#11938) Revert "⌨️ close: correct type of error field in getFieldState return object (#11831)" 📖 fix: change info.values type in WatchObserver (#11917)

thanks to @​nakaakist, @​IdoBouskila, @​pincy and @​peinguin

Commits

Updates @types/node from 20.12.12 to 20.14.9

Commits

Updates @typescript-eslint/eslint-plugin from 7.10.0 to 7.14.1

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v7.14.1

7.14.1 (2024-06-24)

🚀 Features

  • support TypeScript 5.5 (#9397)
  • ast-spec: tighter types and documentation for declaration/* (#9211)

🩹 Fixes

  • keep warnAbountTSVersion in sync with package.json (#9400)
  • eslint-plugin: [no-extraneous-class] handle abstract members (#9367)
  • eslint-plugin: [prefer-nullish-coalescing] handle intersected primitive types (#9378)
  • eslint-plugin: [no-invalid-this] support AccessorProperty (#9411)
  • eslint-plugin: [prefer-nullish-coalescing] treat enums and literals as their underlying primitive types (#9376)
  • eslint-plugin: [prefer-nullish-coalescing] ensure ternary fix does not remove parens (#9380)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

v7.14.0

7.14.0 (2024-06-24)

We followed this up soon after with 7.14.1 - see the combined release notes here https://github.com/typescript-eslint/typescript-eslint/releases/tag/v7.14.1

You can read about our versioning strategy and releases on our website.

v7.13.1

7.13.1 (2024-06-17)

🩹 Fixes

  • eslint-plugin: [prefer-readonly] refine report locations (#8894)
  • eslint-plugin: [return-await] support explicit resource management (#9044)
  • eslint-plugin: [no-unsafe-member-access] differentiate a types-error any from a true any (#9291)

❤️ Thank You

... (truncated)

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

7.14.1 (2024-06-24)

🩹 Fixes

  • eslint-plugin: [prefer-nullish-coalescing] treat enums and literals as their underlying primitive types

  • eslint-plugin: [prefer-nullish-coalescing] ensure ternary fix does not remove parens

❤️ Thank You

  • Jake Bailey

You can read about our versioning strategy and releases on our website.

7.14.0 (2024-06-24)

🚀 Features

  • support TypeScript 5.5

🩹 Fixes

  • eslint-plugin: [no-extraneous-class] handle abstract members

  • eslint-plugin: [prefer-nullish-coalescing] handle intersected primitive types

  • eslint-plugin: [no-invalid-this] support AccessorProperty

❤️ Thank You

  • Brad Zacher
  • cm-ayf
  • Jake Bailey
  • James Zhan
  • Joshua Chen
  • yoshi2no

You can read about our versioning strategy and releases on our website.

7.13.1 (2024-06-17)

🩹 Fixes

  • eslint-plugin: [prefer-readonly] refine report locations

... (truncated)

Commits
  • b4fe94f chore(release): publish 7.14.1
  • f29150f fix(eslint-plugin): [prefer-nullish-coalescing] ensure ternary fix does not r...
  • 9b7731d fix(eslint-plugin): [prefer-nullish-coalescing] treat enums and literals as t...
  • dfc4469 chore(release): publish 7.14.0
  • 635133a docs: split troubleshooting into granular sections (#9024)
  • c322099 fix(eslint-plugin): [no-invalid-this] support AccessorProperty (#9411)
  • 23e6468 fix(eslint-plugin): [prefer-nullish-coalescing] handle intersected primitive ...
  • 5c4a5de feat(ast-spec): tighter types and documentation for declaration/* (#9211)
  • e47123d fix(eslint-plugin): [no-extraneous-class] handle abstract members (#9367)
  • dc18229 feat: support TypeScript 5.5 (#9397)
  • Additional commits viewable in compare view

Updates @typescript-eslint/parser from 7.10.0 to 7.14.1

Release notes

Sourced from

Bumps the minor-and-patch group with 22 updates:

| Package | From | To |
| --- | --- | --- |
| [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `3.4.2` | `3.6.0` |
| [@mui/material](https://github.com/mui/material-ui/tree/HEAD/packages/mui-material) | `5.15.18` | `5.15.20` |
| [@next/third-parties](https://github.com/vercel/next.js/tree/HEAD/packages/third-parties) | `14.2.3` | `14.2.4` |
| [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) | `5.14.0` | `5.16.0` |
| [@supabase/ssr](https://github.com/supabase/ssr) | `0.3.0` | `0.4.0` |
| [@supabase/supabase-js](https://github.com/supabase/supabase-js) | `2.43.4` | `2.44.0` |
| [framer-motion](https://github.com/framer/motion) | `11.2.6` | `11.2.12` |
| [next](https://github.com/vercel/next.js) | `14.2.3` | `14.2.4` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.51.5` | `7.52.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.12.12` | `20.14.9` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `7.10.0` | `7.14.1` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `7.10.0` | `7.14.1` |
| [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) | `14.2.3` | `14.2.4` |
| [prettier](https://github.com/prettier/prettier) | `3.2.5` | `3.3.2` |
| [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) | `0.5.14` | `0.6.5` |
| [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) | `5.14.0` | `5.16.0` |
| [sass](https://github.com/sass/dart-sass) | `1.77.2` | `1.77.6` |
| [stylelint](https://github.com/stylelint/stylelint) | `16.6.0` | `16.6.1` |
| [stylelint-config-standard](https://github.com/stylelint/stylelint-config-standard) | `36.0.0` | `36.0.1` |
| [stylelint-scss](https://github.com/stylelint-scss/stylelint-scss) | `6.3.0` | `6.3.2` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.4.3` | `3.4.4` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.4.5` | `5.5.2` |


Updates `@hookform/resolvers` from 3.4.2 to 3.6.0
- [Release notes](https://github.com/react-hook-form/resolvers/releases)
- [Commits](react-hook-form/resolvers@v3.4.2...v3.6.0)

Updates `@mui/material` from 5.15.18 to 5.15.20
- [Release notes](https://github.com/mui/material-ui/releases)
- [Changelog](https://github.com/mui/material-ui/blob/v5.15.20/CHANGELOG.md)
- [Commits](https://github.com/mui/material-ui/commits/v5.15.20/packages/mui-material)

Updates `@next/third-parties` from 14.2.3 to 14.2.4
- [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.2.4/packages/third-parties)

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

Updates `@supabase/ssr` from 0.3.0 to 0.4.0
- [Release notes](https://github.com/supabase/ssr/releases)
- [Changelog](https://github.com/supabase/ssr/blob/main/CHANGELOG.md)
- [Commits](supabase/ssr@v0.3.0...v0.4.0)

Updates `@supabase/supabase-js` from 2.43.4 to 2.44.0
- [Release notes](https://github.com/supabase/supabase-js/releases)
- [Changelog](https://github.com/supabase/supabase-js/blob/master/RELEASE.md)
- [Commits](supabase/supabase-js@v2.43.4...v2.44.0)

Updates `framer-motion` from 11.2.6 to 11.2.12
- [Changelog](https://github.com/framer/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v11.2.6...v11.2.12)

Updates `next` from 14.2.3 to 14.2.4
- [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.3...v14.2.4)

Updates `react-hook-form` from 7.51.5 to 7.52.0
- [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.51.5...v7.52.0)

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

Updates `@typescript-eslint/eslint-plugin` from 7.10.0 to 7.14.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.14.1/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 7.10.0 to 7.14.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.14.1/packages/parser)

Updates `eslint-config-next` from 14.2.3 to 14.2.4
- [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.2.4/packages/eslint-config-next)

Updates `prettier` from 3.2.5 to 3.3.2
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.2.5...3.3.2)

Updates `prettier-plugin-tailwindcss` from 0.5.14 to 0.6.5
- [Release notes](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/prettier-plugin-tailwindcss/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/prettier-plugin-tailwindcss@v0.5.14...v0.6.5)

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

Updates `sass` from 1.77.2 to 1.77.6
- [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.2...1.77.6)

Updates `stylelint` from 16.6.0 to 16.6.1
- [Release notes](https://github.com/stylelint/stylelint/releases)
- [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md)
- [Commits](stylelint/stylelint@16.6.0...16.6.1)

Updates `stylelint-config-standard` from 36.0.0 to 36.0.1
- [Release notes](https://github.com/stylelint/stylelint-config-standard/releases)
- [Changelog](https://github.com/stylelint/stylelint-config-standard/blob/main/CHANGELOG.md)
- [Commits](stylelint/stylelint-config-standard@36.0.0...36.0.1)

Updates `stylelint-scss` from 6.3.0 to 6.3.2
- [Release notes](https://github.com/stylelint-scss/stylelint-scss/releases)
- [Changelog](https://github.com/stylelint-scss/stylelint-scss/blob/master/CHANGELOG.md)
- [Commits](stylelint-scss/stylelint-scss@v6.3.0...v6.3.2)

Updates `tailwindcss` from 3.4.3 to 3.4.4
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.4/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss@v3.4.3...v3.4.4)

Updates `typescript` from 5.4.5 to 5.5.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.4.5...v5.5.2)

---
updated-dependencies:
- dependency-name: "@hookform/resolvers"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@mui/material"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@next/third-parties"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@prisma/client"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@supabase/ssr"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@supabase/supabase-js"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: framer-motion
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: next
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react-hook-form
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: eslint-config-next
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: prettier-plugin-tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: prisma
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: sass
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: stylelint
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: stylelint-config-standard
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: stylelint-scss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: tailwindcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jun 26, 2024
Copy link

vercel bot commented Jun 26, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

1 Ignored Deployment
Name Status Preview Updated (UTC)
lounas ⬜️ Ignored (Inspect) Visit Preview Jun 26, 2024 3:38pm

version update of `prettier-plugin-tailwindcss` related
Copy link
Contributor

@wiyco wiyco left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM 🐳

piplup

@wiyco wiyco merged commit 10d514c into develop Jun 26, 2024
2 checks passed
@wiyco wiyco deleted the dependabot/npm_and_yarn/develop/minor-and-patch-04f3c6b7ee branch June 26, 2024 15:43
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.

1 participant