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

Merged
merged 1 commit into from
May 30, 2023
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 30, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@aws-sdk/client-cognito-identity-provider (source) 3.341.0 -> 3.342.0 age adoption passing confidence
@aws-sdk/client-s3 (source) 3.341.0 -> 3.342.0 age adoption passing confidence
@aws-sdk/signature-v4 (source) 3.341.0 -> 3.342.0 age adoption passing confidence
@prisma/client (source) 4.14.1 -> 4.15.0 age adoption passing confidence
@prisma/instrumentation (source) 4.14.1 -> 4.15.0 age adoption passing confidence
@​prisma/nextjs-monorepo-workaround-plugin 4.14.1 -> 4.15.0 age adoption passing confidence
chromatic (source) 6.17.4 -> 6.18.0 age adoption passing confidence
dotenv 16.0.3 -> 16.1.0 age adoption passing confidence
eslint-plugin-turbo 1.9.9 -> 1.10.0 age adoption passing confidence
prisma (source) 4.14.1 -> 4.15.0 age adoption passing confidence
prisma-kysely 1.4.1 -> 1.4.2 age adoption passing confidence
turbo (source) 1.9.9 -> 1.10.0 age adoption passing confidence
type-fest 3.11.0 -> 3.11.1 age adoption passing confidence

Release Notes

aws/aws-sdk-js-v3 (@​aws-sdk/client-cognito-identity-provider)

v3.342.0

Compare Source

Note: Version bump only for package @​aws-sdk/client-cognito-identity-provider

aws/aws-sdk-js-v3 (@​aws-sdk/client-s3)

v3.342.0

Compare Source

Note: Version bump only for package @​aws-sdk/client-s3

aws/aws-sdk-js-v3 (@​aws-sdk/signature-v4)

v3.342.0

Compare Source

Features
prisma/prisma

v4.15.0

Compare Source

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

Highlights

For this release, we focused on fixing bugs and making smaller quality-of-life improvements.

Support for custom arguments for prisma db seed

This release adds support for defining and passing arbitrary arguments to prisma db seed. This creates the opportunity for you to define your own arguments in your seed file that you could pass to the prisma db seed command. A few example use-cases include, but are not limited to:

  • Seeding different data in different environments
  • Partially seeding data in some tables

Here is an example seed.ts file that defines custom arguments for seeding different data in different environments:

// prisma/seed.ts
import { parseArgs } from "node:util";

const options = {
  environment: { type: 'string', },
}

async function main() {
  const { values: { environment } } = parseArgs({ options })
  
  switch (environment) {
    case "development":
      /** do something for development */
      break;
    case "test":
      /** do something  for test  environment */
      break;
    default:
      break;
  }
}

main()

You can then provide the environment argument when executing the seed script as follows:

npx prisma db seed -- --environment development

Let us know what you think, share example usage of this feature, and create a bug report if you run into any issues.

Improved error messages when Query Engine file is not found

This release improves the error messages returned by Prisma Client when the Query Engine file is not found. A few reasons the query engine file might be missing from your application bundle include when:

  • The downloaded Query Engine doesn’t match the runtime / target platform your application is running on.
  • The Query Engine is not copied to your final application bundle during the build step.

We hope these error messages are helpful while debugging your application.

Prisma VS Code extension improvements

In this release, we made a few improvements to our VS Code extension:

  1. Updated the file system watcher that is responsible for restarting the TypeScript server when prisma generate is run to ensure the types are in sync

    Note:

    • This new approach is currently only available on Windows and Linux. We plan on adding support for the new file system watcher on macOS soon.
    • This requires both Prisma CLI & VS code extension version 4.15.0 or higher
  2. Added Quick Fixes action for unique identifiers for MongoDB to add the @map("_id") attribute function when it’s missing on an identifier field

    Screen.Recording.2023-05-17.at.19.22.20.mov
  3. Support for renaming symbols for composite types and views

    type-symbol-rename.mov

Fixes and improvements

Prisma Client
Prisma Migrate
Language tools (e.g. VS Code)

Credits

Huge thanks to @​RobertCraigie, @​KhooHaoYit, @​art049, @​luxaritas, @​mrazauskas, @​maxmartynov, @​haneenmahd for helping!

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

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

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

chromaui/chromatic-cli

v6.18.0

Compare Source

  • 737 Better discovery for TurboSnap trace-changed and related directories
  • 747 Fix Storybook config detection by adding serverRequire to interpret files
motdotla/dotenv

v16.1.0

Compare Source

Added
  • Add populate convenience method #​733
  • Accept URL as path option #​720
  • Add dotenv to npm fund command
  • Spanish language README #​698
  • Add .env.vault support. 🎉 (#​730)

ℹ️ .env.vault extends the .env file format standard with a localized encrypted vault file. Package it securely with your production code deploys. It's cloud agnostic so that you can deploy your secrets anywhere – without risky third-party integrations. read more

Changed
  • Fixed "cannot resolve 'fs'" error on tools like Replit #​693
vercel/turbo

v1.10.0: Turborepo v1.10.0

Compare Source

What's Changed

Changelog

New Contributors

Full Changelog: vercel/turborepo@v1.9.9...v1.10.0

valtyr/prisma-kysely

v1.4.2

Compare Source

Patch Changes
  • 744b666: Uses the value of fileName when no enumFileName provided. Previously now if you used a different fileName and you didn't provide enumFileName it put the database in the fileName and enums in types.ts.

    Now imports GeneratedAlways only when needed. Previously it was always added, even if not needed which caused problems with the linter.

sindresorhus/type-fest

v3.11.1

Compare Source


Configuration

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

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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 requested a review from JoeKarow as a code owner May 30, 2023 13:06
@renovate renovate bot added automerge Enable Kodiak auto-merge dependencies Change in project dependencies. labels May 30, 2023
@vercel
Copy link

vercel bot commented May 30, 2023

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

Name Status Preview Comments Updated (UTC)
inreach-app ✅ Ready (Inspect) Visit Preview 💬 Add feedback May 30, 2023 10:24pm
inreach-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback May 30, 2023 10:24pm

@ghost
Copy link

ghost commented May 30, 2023

👇 Click on the image for a new way to code review

Review these changes using an interactive CodeSee Map

Legend

CodeSee Map legend

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 15f16c4 to b160784 Compare May 30, 2023 13:23
@renovate renovate bot changed the title fix(db): update dependency prisma-kysely to v1.4.2 chore(app): update all non-major dependencies May 30, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b160784 to 6f19ac0 Compare May 30, 2023 14:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6f19ac0 to 3dc6127 Compare May 30, 2023 16:56
@renovate renovate bot changed the title chore(app): update all non-major dependencies fix(db): update all non-major dependencies May 30, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3dc6127 to 49faa5d Compare May 30, 2023 19:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 49faa5d to 4c0ce5b Compare May 30, 2023 21:55
@renovate renovate bot changed the title fix(db): update all non-major dependencies fix(auth): update all non-major dependencies May 30, 2023
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4c0ce5b to 912f02f Compare May 30, 2023 22:23
@sonarcloud
Copy link

sonarcloud bot commented May 30, 2023

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
0.0% 0.0% Duplication

@kodiakhq kodiakhq bot merged commit 57b9bb3 into dev May 30, 2023
@kodiakhq kodiakhq bot deleted the renovate/all-minor-patch branch May 30, 2023 23:02
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