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

fix(deps): update all non-major dependencies #216

Merged
merged 1 commit into from
Jan 12, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 12, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@prisma/client (source) 5.7.1 -> 5.8.0 age adoption passing confidence
@storybook/addon-actions (source) 7.6.7 -> 7.6.8 age adoption passing confidence
@storybook/addon-docs (source) 7.6.7 -> 7.6.8 age adoption passing confidence
@storybook/addon-essentials (source) 7.6.7 -> 7.6.8 age adoption passing confidence
@storybook/addon-interactions (source) 7.6.7 -> 7.6.8 age adoption passing confidence
@storybook/addon-links (source) 7.6.7 -> 7.6.8 age adoption passing confidence
@storybook/react (source) 7.6.7 -> 7.6.8 age adoption passing confidence
@types/eslint (source) 8.56.1 -> 8.56.2 age adoption passing confidence
@types/node (source) 20.10.6 -> 20.11.0 age adoption passing confidence
@types/react (source) 18.2.46 -> 18.2.47 age adoption passing confidence
build-ts 12.0.1 -> 12.0.3 age adoption passing confidence
prettier (source) 3.1.1 -> 3.2.0 age adoption passing confidence
prisma (source) 5.7.1 -> 5.8.0 age adoption passing confidence

Release Notes

prisma/prisma (@​prisma/client)

v5.8.0

Compare Source

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

Highlights

Happy New Year from your friends at Prisma! 🎊

In the last 4 weeks, we resolved some bugs on the ORM and made some progress on some exciting features that we’re not yet ready to announce. Stay tuned for the upcoming releases, in which we’ll be announcing new features. 😉

relationJoins improvements: Relation loading strategy per query (Preview)

In version 5.7.0, we released relationJoins into Preview. The relationJoins feature enables support for JOINs for relation queries.

This release adds support for the ability to specify the strategy used to fetch relational data per query when the Preview feature is enabled. This will enable you to choose the most efficient strategy for fetching relation data depending on your use case.

You can now load relation data using either of the following strategies:

  • join — uses JOINs to fetch relation data
  • query — uses sub-queries to fetch relation data

When the relationJoins Preview feature is enabled, by default, the relation fetching strategy used is join. You can override the default behavior by using the relationLoadStrategy query option.

To get started, enable the Preview feature:

// schema.prisma
generator client {
  provider        = "prisma-client-js"
  previewFeatures = ["relationJoins"]
}

… and specify the relation loading strategy for your query as follows:

await prisma.user.findMany({
  relationLoadStrategy: 'query',
  include: {
    posts: true,
  },
})

Try it out and share your feedback and create a bug report if you encounter any issues.

Survey: Edge functions support

We’re working on bringing Edge function support to Prisma ORM and we would appreciate your input by submitting a response to our survey. By filling out the survey, you will be considered for our Early Access cohort as soon as we have something for you to try out.

Fixes and improvements
Prisma Client
Prisma Migrate
Language tools (e.g. VS Code)
Credits

Huge thanks to @​anuraaga, @​onichandame, @​LucianBuzzo, @​RobertCraigie, @​fqazi, @​KhooHaoYit, @​alencardc, @​Oreilles, @​tinola, @​AikoRamalho, @​luxaritas for helping!

Company news
🎉 A billion queries and counting: Prisma Accelerate

Prisma Accelerate, our global database cache has served over 1 billion queries since its General Availability launch.

We’d like to give a shoutout to our team and everyone who’s been with us on this journey. Stay tuned for some exciting products and features in the pipeline for 2024!

🔮 Prisma ORM Ecosystem

Are you building a cool tool, extension, generator, CLI tool or anything else, for Prisma ORM? Let us know.

We would like to learn about it and feature it on our Ecosystem page.

💼 We’re hiring

If you're interested in joining our growing team to help empower developers to build data-intensive applications, Prisma is the place for you. Check out our Careers page for open positions.

storybookjs/storybook (@​storybook/addon-actions)

v7.6.8

Compare Source

storybookjs/storybook (@​storybook/addon-docs)

v7.6.8

Compare Source

storybookjs/storybook (@​storybook/addon-interactions)

v7.6.8

Compare Source

WillBooster/build-ts (build-ts)

v12.0.3

Compare Source

Bug Fixes

v12.0.2

Compare Source

Bug Fixes
  • warning of rollup-plugin-preserve-directives (7ff5dc2)
prettier/prettier (prettier)

v3.2.0

Compare Source

diff

🔗 Release Notes


Configuration

📅 Schedule: Branch creation - "before 6am on Saturday" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot enabled auto-merge (squash) January 12, 2024 17:58
@renovate renovate bot merged commit 0982ea8 into main Jan 12, 2024
8 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch January 12, 2024 18:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants