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): update all non-major dependencies #214

Merged
merged 2 commits into from
Sep 30, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 30, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@iconify-json/lucide ^1.2.5 -> ^1.2.6 age adoption passing confidence
@nuxt/fonts ^0.8.0 -> ^0.9.2 age adoption passing confidence
@nuxt/scripts ^0.9.2 -> ^0.9.4 age adoption passing confidence
@prisma/client (source) ^5.19.1 -> ^5.20.0 age adoption passing confidence
eslint (source) ^9.11.0 -> ^9.11.1 age adoption passing confidence
nuxt-auth-utils ^0.3.9 -> ^0.4.1 age adoption passing confidence
nypm ^0.3.11 -> ^0.3.12 age adoption passing confidence
prisma (source) ^5.19.1 -> ^5.20.0 age adoption passing confidence
vue (source) ^3.5.8 -> ^3.5.10 age adoption passing confidence

Release Notes

nuxt/fonts (@​nuxt/fonts)

v0.9.2

Compare Source

compare changes

🩹 Fixes
  • Use earlier hooks to mark build done (0311651)
❤️ Contributors

v0.9.1

Compare Source

compare changes

🩹 Fixes
  • Serve fonts from baseURL in dev mode (1fae926)
❤️ Contributors

v0.9.0

Compare Source

compare changes

🚀 Enhancements
  • Serve font files without nitro in spa mode (95e4f44)
🩹 Fixes
  • local: Use extname for extension priority test (b087d47)
  • Emit .cjs version of @nuxt/fonts/utils (10ca0c8)
  • Transform inline styles after other bundle hooks (9156b8a)
  • Only overwrite cacheDir after a fresh build (#​273)
  • Add global preload links to entry chunk (#​274)
📖 Documentation
  • Update installation (#​251)
  • Various improvements ✨ (#​253)
  • Remove incorrect src examples (ca44e0d)
  • Improve wording (c771e86)
  • Add note about how how font-family declarations are handled (df2685d)
🏡 Chore
❤️ Contributors
nuxt/scripts (@​nuxt/scripts)

v0.9.4

Compare Source

compare changes

🩹 Fixes
  • matomo: Easier cloud config using cloudId (d7e18c4)
  • matomo: Support numeric siteId (299516c)
  • Avoid overriding <link rek="preload" with invalid src (25f1ade)
📖 Documentation
  • Fix docs for disabling scripts in development (#​281)
🏡 Chore
❤️ Contributors

v0.9.3

Compare Source

compare changes

🩹 Fixes
  • Use free path for virtual plugin template (8624923)
  • 🐛 Fixed "height" css style property (#​275)
  • adsense: Push ad slot once only on dev (#​276)
📖 Documentation
  • Update scripts:registry hook example (#​271)
  • ✏️ Updated definition for YouTube Player (#​273)
🏡 Chore
❤️ Contributors
prisma/prisma (@​prisma/client)

v5.20.0

Compare Source

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

strictUndefinedChecks will be a valid Preview feature for the remainder of Prisma ORM 5. With our next major version, this behavior will become the default and the Preview feature will be “graduated” to Generally Available.

If you have any questions or feedback about strictUndefinedChecks, please ask/comment in our dedicated Preview feature GitHub discussion.

typedSql bug fix

Thank you to everyone who has tried out our typedSql Preview feature and provided feedback! This release has a quick fix for typescript files generated when Prisma Schema enums had hyphens.

Fixes and improvements
Prisma
Prisma Engines
Credits

Huge thanks to @​mcuelenaere, @​pagewang0, @​key-moon, @​pranayat, @​yubrot, @​thijmenjk, @​mydea, @​HRM, @​haaawk, @​baileywickham, @​brian-dlee, @​nickcarnival, @​eruditmorina, @​nzakas, and @​gutyerrez for helping!

eslint/eslint (eslint)

v9.11.1

Compare Source

atinux/nuxt-auth-utils (nuxt-auth-utils)

v0.4.1

Compare Source

compare changes

📖 Documentation
🏡 Chore
  • Remove unnecessary challenge cookie (be2626b)
❤️ Contributors
  • Gerben Mulder <github.undergo381@​passmail.net>
  • Sébastien Chopin (@​atinux)

v0.4.0

Compare Source

compare changes

🚀 Enhancements
  • Add Dropbox as supported oauth provider (#​183)
  • ⚠️ Call fetch hook if session is not empty instead of user defined (#​188)
  • ⚠️ Rename oauth<Provider>EventHandler todefineOAuth<Provider>EventHandler (#​189)
  • Add hashPassword & verifyPassword server utils (0c4d050)
  • Webauthn (passkey) support (a90b173)
🩹 Fixes
  • steam: Improve open id validation (#​184)
🏡 Chore
⚠️ Breaking Changes
  • ⚠️ Call fetch hook if session is not empty instead of user defined (#​188)
  • ⚠️ Rename oauth<Provider>EventHandler todefineOAuth<Provider>EventHandler (#​189)
❤️ Contributors
unjs/nypm (nypm)

v0.3.12

Compare Source

compare changes

🚀 Enhancements
🏡 Chore
❤️ Contributors
vuejs/core (vue)

v3.5.10

Compare Source

Bug Fixes

v3.5.9

Compare Source

Bug Fixes

Configuration

📅 Schedule: Branch creation - "after 2am and before 3am" (UTC), Automerge - "after 1am and before 2am" (UTC).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

vercel bot commented Sep 30, 2024

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

Name Status Preview Comments Updated (UTC)
shelve ❌ Failed (Inspect) Sep 30, 2024 6:42pm

Copy link

github-actions bot commented Sep 30, 2024

Thank you for following the naming conventions! 🙏

Copy link
Contributor Author

renovate bot commented Sep 30, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@HugoRCD HugoRCD merged commit 4634058 into main Sep 30, 2024
5 of 6 checks passed
@HugoRCD HugoRCD deleted the renovate/all-minor-patch branch September 30, 2024 18:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant