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 #161

Merged
merged 2 commits into from
Sep 2, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 14, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nuxt/image (source) ^1.7.0 -> ^1.7.1 age adoption passing confidence
@prisma/client (source) ^5.18.0 -> ^5.19.0 age adoption passing confidence
prisma (source) ^5.18.0 -> ^5.19.0 age adoption passing confidence
turbo (source) ^2.0.14 -> ^2.1.0 age adoption passing confidence

Release Notes

nuxt/image (@​nuxt/image)

v1.7.1

Compare Source

compare changes

🩹 Fixes
  • cloudinary: Map cover to lfill mode (#​1355)
  • Import runtime types from module entrypoint (#​1384)
  • Update to latest @nuxt/module-builder (#​1439)
  • Only add preload links on server (510e719)
  • weserv: Map rotate operation to ro (#​1441)
💅 Refactors
  • Convert <NuxtImg> to SFC (#​1435)
  • Convert <NuxtPicture> to SFC (#​1432)
  • Use more import.meta.* properties (#​1440)
📖 Documentation
🏡 Chore
❤️ Contributors
prisma/prisma (@​prisma/client)

v5.19.0

Compare Source

Today, we are excited to share the 5.19.0 stable release 🎉

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

Highlights

Introducing TypedSQL

TypedSQL is a brand new way to interact with your database from Prisma Client. After enabling the typedSql Preview feature, you’re able to write SQL queries in a new sql subdirectory of your prisma directory. These queries are then checked by Prisma during using the new --sql flag of prisma generate and added to your client for use in your code.

To get started with TypedSQL:

  1. Make sure that you have the latest version of prisma and @prisma/client installed:

    npm install -D prisma@latest
    npm install @&#8203;prisma/client@latest
    
  2. Enable the typedSql Preview feature in your Prisma Schema.

       generator client {
         provider = "prisma-client-js"
         previewFeatures = ["typedSql"]
       }
    
  3. Create a sql subdirectory of your prisma directory.

    mkdir -p prisma/sql
    
  4. You can now add .sql files to the sql directory! Each file can contain one sql query and the name must be a valid JS identifier. For this example, say you had the file getUsersWithPosts.sql with the following contents:

    SELECT u.id, u.name, COUNT(p.id) as "postCount"
    FROM "User" u
    LEFT JOIN "Post" p ON u.id = p."authorId"
    GROUP BY u.id, u.name
  5. Import your SQL query into your code with the @prisma/client/sql import:

       import { PrismaClient } from '@&#8203;prisma/client'
       import { getUsersWithPosts } from '@&#8203;prisma/client/sql'
    
       const prisma = new PrismaClient()
    
       const usersWithPostCounts = await prisma.$queryRawTyped(getUsersWithPosts)
       console.log(usersWithPostCounts)

There’s a lot more to talk about with TypedSQL. We think that the combination of the high-level Prisma Client API and the low-level TypedSQL will make for a great developer experience for all of our users.

To learn more about behind the “why” of TypedSQL be sure to check out our announcement blog post.

For docs, check out our new TypedSQL section.

Bug fixes

Driver adapters and D1

A few issues with our driverAdapters Preview feature and Cloudflare D1 support were resolved via https://github.com/prisma/prisma-engines/pull/4970 and https://github.com/prisma/prisma/pull/24922

  • Mathematic operations such as max, min, eq, etc in queries when using Cloudflare D1.
  • Resolved issues when comparing BigInt IDs when relationMode="prisma" was enabled and Cloudflare D1 was being used.
Joins

Join us

Looking to make an impact on Prisma in a big way? We're now hiring engineers for the ORM team!

  • Senior Engineer (TypeScript): This person will be primarily working on the TypeScript side and evolving our Prisma client. Rust knowledge (or desire to learn Rust) is a plus.
  • Senior Engineer (Rust): This person will be focused on the prisma-engines Rust codebase. TypeScript knowledge (or, again, a desire to learn) is a plus.

Credits

Huge thanks to @​mcuelenaere, @​pagewang0, @​Druue, @​key-moon, @​Jolg42, @​pranayat, @​ospfranco, @​yubrot, @​skyzh for helping!

vercel/turborepo (turbo)

v2.1.0: Turborepo v2.1.0

Compare Source

What's Changed

Docs
@​turbo/codemod
Examples
Changelog

New Contributors

Full Changelog: vercel/turborepo@v2.0.14...v2.1.0


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 Aug 14, 2024

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

Name Status Preview Comments Updated (UTC)
shelve ❌ Failed (Inspect) Aug 27, 2024 6:25pm

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fcca89f to 9369959 Compare August 14, 2024 16:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9369959 to 339dbc9 Compare August 15, 2024 11:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 339dbc9 to eecf4f1 Compare August 15, 2024 17:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from eecf4f1 to 9b1f060 Compare August 17, 2024 07:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9b1f060 to 70d6c4a Compare August 18, 2024 17:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 70d6c4a to 119c06d Compare August 21, 2024 18:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 119c06d to ee2d800 Compare August 22, 2024 17:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ee2d800 to 5ea61c5 Compare August 23, 2024 17:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5ea61c5 to 4c4b665 Compare August 23, 2024 23:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4c4b665 to c726551 Compare August 24, 2024 06:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c726551 to 57e39d3 Compare August 24, 2024 16:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 57e39d3 to 36ccc3d Compare August 25, 2024 01:31
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update all non-major dependencies - autoclosed Aug 26, 2024
@renovate renovate bot closed this Aug 26, 2024
@renovate renovate bot deleted the renovate/all-minor-patch branch August 26, 2024 17:23
@renovate renovate bot restored the renovate/all-minor-patch branch August 27, 2024 17:22
@renovate renovate bot changed the title chore(deps): update all non-major dependencies - autoclosed chore(deps): update all non-major dependencies Aug 27, 2024
@renovate renovate bot reopened this Aug 27, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 36ccc3d to 745ef6a Compare August 27, 2024 18:22
Copy link

Thank you for following the naming conventions! 🙏

Copy link
Contributor Author

renovate bot commented Aug 27, 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 82a6062 into main Sep 2, 2024
5 of 6 checks passed
@HugoRCD HugoRCD deleted the renovate/all-minor-patch branch September 2, 2024 06:39
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