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

Merged
merged 1 commit into from
Jul 21, 2022
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 17, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@prisma/client (source) ^4.0.0 -> ^4.1.0 age adoption passing confidence
@typescript-eslint/eslint-plugin 5.30.6 -> 5.30.7 age adoption passing confidence
@typescript-eslint/parser 5.30.6 -> 5.30.7 age adoption passing confidence
prisma (source) 4.0.0 -> 4.1.0 age adoption passing confidence

Release Notes

prisma/prisma

v4.1.0

Compare Source

🌟 Help us spread the word about Prisma by starring the repo or tweeting about the release. 🌟

Upgrading to Prisma 4

In case you missed it, we held a livestream last week and walked through issues you may run into while upgrading to Prisma 4 and how to fix them!

Major improvements

Ordering by nulls first and last support (Preview)

In this release, we're adding support for choosing how to sort null values in a query.

To get started, enable the orderByNulls Preview feature flag in your Prisma schema:

 generator client {
   provider        = "prisma-client-js"
   previewFeatures = ["orderByNulls"]
 }

Next, run prisma generate to re-generate Prisma Client. You will now have new fields you can now use to order null values:

await prisma.post.findMany({
  orderBy: {
    updatedAt: { 
      sort: 'asc',
      nulls: 'last'
    },
  },
})

Learn more in our documentation and don't hesitate to share your feedback in this issue.

Fixed memory leaks and CPU usage in Prisma Client

In this release, we've fixed the following issues experienced when setting up and tearing down Prisma Client while running tests:

  1. Prisma Client now correctly releases memory on Prisma Client instances that are no longer being used. Learn more in this GitHub issue
  2. Reduced CPU usage spikes when disconnecting Prisma Client instances while using Prisma Client. You can learn more in this GitHub issue

These fixes will allow you to run your tests a little faster!

Prisma Studio improvements

We're refining the experience when working with Prisma studio with the following changes:

  1. An always visible filter panel and functionality to clear all filters at once

  1. Improved relationship model view with more visible buttons

Let us know what you think, and in the event, you run into any issues, please create a GitHub issue

Fixes and improvements

Prisma
Prisma Client
Prisma Migrate
Language tools (e.g. VS Code)
@​prisma/engines npm package

Credits

Huge thanks to @​shian15810, @​zifeo, @​lodi-g, @​Gnucki, @​apriil15 for helping!

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

We're looking for a Technical Support Engineer and Back-end Engineer: Prisma Data Platform.

Feel free to read the job descriptions and apply using the links provided.

📺 Join us for another "What's new in Prisma" livestream

Learn about the latest release and other news from the Prisma community by joining us for another "What's new in Prisma" livestream.

The stream takes place on YouTube on Thursday, July 19 at 5 pm Berlin | 8 am San Francisco.

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v5.30.7

Compare Source

Bug Fixes
  • eslint-plugin: [no-inferrable] fix optional param to valid code (#​5342) (98f6d5e)
  • eslint-plugin: [no-unused-vars] highlight last write reference (#​5267) (c3f199a)
typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v5.30.7

Compare Source

Bug Fixes

Configuration

📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 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, click this checkbox.

This PR has been generated by Mend Renovate. View repository job log here.

mcpsbot
mcpsbot previously approved these changes Jul 17, 2022
@mcpsbot mcpsbot enabled auto-merge (squash) July 17, 2022 21:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 09a03bc to adf76f0 Compare July 17, 2022 21:47
@renovate renovate bot changed the title fix(deps): update all non-major dependencies fix(deps): update dependency @discordjs/builders to ^0.16.0 Jul 17, 2022
mcpsbot
mcpsbot previously approved these changes Jul 17, 2022
@renovate renovate bot changed the title fix(deps): update dependency @discordjs/builders to ^0.16.0 fix(deps): update dependency @discordjs/builders to ^0.16.0 - autoclosed Jul 17, 2022
@renovate renovate bot closed this Jul 17, 2022
auto-merge was automatically disabled July 17, 2022 21:51

Pull request was closed

@renovate renovate bot deleted the renovate/all-minor-patch branch July 17, 2022 21:51
@renovate renovate bot changed the title fix(deps): update dependency @discordjs/builders to ^0.16.0 - autoclosed fix(deps): update dependency @discordjs/builders to ^0.16.0 Jul 18, 2022
@renovate renovate bot reopened this Jul 18, 2022
@renovate renovate bot restored the renovate/all-minor-patch branch July 18, 2022 18:35
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from adf76f0 to 7ae9fe2 Compare July 18, 2022 21:42
@renovate renovate bot changed the title fix(deps): update dependency @discordjs/builders to ^0.16.0 chore(deps): update all non-major dependencies to v5.30.7 Jul 18, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7ae9fe2 to d6def11 Compare July 19, 2022 14:57
@renovate renovate bot changed the title chore(deps): update all non-major dependencies to v5.30.7 fix(deps): update all non-major dependencies Jul 19, 2022
@mcpsbot mcpsbot merged commit 8b8a8af into main Jul 21, 2022
@renovate renovate bot deleted the renovate/all-minor-patch branch July 21, 2022 08:13
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.

1 participant