na2na-p / avion

An web application
1 stars 0 forks source link

Update all non-major dependencies #61

Closed renovate[bot] closed 1 year ago

renovate[bot] commented 1 year ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@prisma/client (source) ^4.14.1 -> ^4.15.0 age adoption passing confidence
@swc/core (source) ^1.3.60 -> ^1.3.61 age adoption passing confidence
prisma (source) ^4.14.1 -> ^4.15.0 age adoption passing confidence
turbo (source) ^1.9.9 -> ^1.10.0 age adoption passing confidence

Release Notes

prisma/prisma ### [`v4.15.0`](https://togithub.com/prisma/prisma/releases/tag/4.15.0) [Compare Source](https://togithub.com/prisma/prisma/compare/4.14.1...4.15.0) 🌟 **Help us spread the word about Prisma by starring the repo or [tweeting](https://twitter.com/intent/tweet?text=Check%20out%20the%20latest%20@​prisma%20release%20v4.15.0%20%F0%9F%9A%80%0D%0A%0D%0Ahttps://github.com/prisma/prisma/releases/tag/4.15.0) 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: ```tsx // 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: ```bash npx prisma db seed -- --environment development ``` Let us know what you think, share example usage of this feature, and create a [bug report](https://togithub.com/prisma/prisma/issues/new?assignees=\&labels=kind/bug\&projects=\&template=bug_report.yml) 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](https://marketplace.visualstudio.com/items?itemName=Prisma.prisma): 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](https://code.visualstudio.com/docs/editor/refactoring#\_code-actions-quick-fixes-and-refactorings) for unique identifiers for MongoDB to add the `@map("_id")` attribute function when it’s missing on an identifier field https://user-images.githubusercontent.com/29753584/239030357-2b6613bf-b6b5-48f2-a2df-b93df0692fda.mov 3. Support for [renaming symbols](https://code.visualstudio.com/docs/editor/refactoring#\_rename-symbol) for composite types and views https://user-images.githubusercontent.com/33921841/242042225-87dfee9b-0698-4e1d-b05e-5cb0b8ab1349.mov ##### Fixes and improvements ##### Prisma Client - [Prisma generate - `Error: write EPIPE` on WSL <-> Windows](https://togithub.com/prisma/prisma/issues/3294) - [`prisma generate` is blocked by `query-engine-rhel-openssl-1.0.x` opening in Notepad on Windows](https://togithub.com/prisma/prisma/issues/4308) - [Generated client output path hardcoded to build environment](https://togithub.com/prisma/prisma/issues/7228) - [Issue with Yarn Workspace Monorepo: Query engine binary for current platform could not be found.](https://togithub.com/prisma/prisma/issues/7311) - [Cloning a project with checked in `node_modules` (from another platform) leads to platform engine not being present](https://togithub.com/prisma/prisma/issues/7848) - [SvelteKit, Vite and Prisma "module not defined"](https://togithub.com/prisma/prisma/issues/10404) - [Schema File Not Found in non monorepo with custom `output`](https://togithub.com/prisma/prisma/issues/10433) - [Deploying to Cloudflare Workers | "PrismaClient is unable to be run in the browser"](https://togithub.com/prisma/prisma/issues/12981) - [Inline/bundle the contents of the prisma schema on generate](https://togithub.com/prisma/prisma/issues/13052) - [Netlify: `Query engine library for current platform "rhel-openssl-1.0.x" could not be found. You incorrectly pinned it to rhel-openssl-1.0.x`](https://togithub.com/prisma/prisma/issues/13266) - [Query Engine Library Not Found](https://togithub.com/prisma/prisma/issues/13396) - [No client schema when using PrismaClient during cached (standard) Netlify build](https://togithub.com/prisma/prisma/issues/13475) - [Module "@​prisma/client" has no exported member "PrismaClient"](https://togithub.com/prisma/prisma/issues/13946) - [EPERM: operation not permitted](https://togithub.com/prisma/prisma/issues/14626) - [prisma/client crashes when used with older versions of react-refresh](https://togithub.com/prisma/prisma/issues/14953) - [Unable to run prisma cli in pnpm monorepo from workspace install](https://togithub.com/prisma/prisma/issues/15081) - [Misleading error message when the query engine is not found](https://togithub.com/prisma/prisma/issues/15292) - [When setting custom client output directory, generated package.json does not include "sideEffects: false"](https://togithub.com/prisma/prisma/issues/15301) - [ You already added the platform "debian-openssl-1.1.x" to the "generator" block in the "schema.prisma" file as described in https://pris.ly/d/client-generator, but something went wrong. ](https://togithub.com/prisma/prisma/issues/15631) - [Prisma seems to be looking in the wrong location for rhel-openssl-1.0.x](https://togithub.com/prisma/prisma/issues/15638) - [Can't find prisma engine](https://togithub.com/prisma/prisma/issues/16872) - [`Cannot find name '$PrismaModel'` due to feature `extendedWhereUnique` with preview feature `fieldReference`](https://togithub.com/prisma/prisma/issues/16997) - [Netlify build fails with PrismaClientInitializationError](https://togithub.com/prisma/prisma/issues/17167) - [i'm getting the error while requesting the api ](https://togithub.com/prisma/prisma/issues/17906) - [Query engine library for current platform could not be found.](https://togithub.com/prisma/prisma/issues/17996) - [Prisma unable to reconnect if initial connection fails](https://togithub.com/prisma/prisma/issues/18071) - [GraphQL protocol encoder incorrectly turns empty array into empty object.](https://togithub.com/prisma/prisma/issues/18846) - [GraphQL protocol: Invalid `Date` values silently turn into `nulls`](https://togithub.com/prisma/prisma/issues/18970) - [@​prisma/client/edge + Cloudflare Worker / wrangler = Could not resolve "os"](https://togithub.com/prisma/prisma/issues/19174) - [Client is bricked from connecting to DB if first attempt fails.](https://togithub.com/prisma/prisma/issues/19182) - [JSON protocol: incorrect recursive composites detection through multiple nesting levels](https://togithub.com/prisma/prisma/issues/19373) - [`fieldReference` is not working with enums](https://togithub.com/prisma/prisma/issues/19449) ##### Prisma Migrate - [Pass extra arguments to `prisma db seed` to the seed command](https://togithub.com/prisma/prisma/issues/9403) - [Typo in generating migration SQL to add enum.](https://togithub.com/prisma/prisma/issues/19352) ##### Language tools (e.g. VS Code) - [MongoDB: Quick fix for missing `@map("_id")` annotation](https://togithub.com/prisma/language-tools/issues/762) - [Rename composite types](https://togithub.com/prisma/language-tools/issues/1135) - [Views: Support for rename](https://togithub.com/prisma/language-tools/issues/1365) - [TextDocument deprecation](https://togithub.com/prisma/language-tools/issues/1421) - [Lib name change vsce -> @​vscode/vsce](https://togithub.com/prisma/language-tools/issues/1425) ##### Credits Huge thanks to [@​RobertCraigie](https://togithub.com/RobertCraigie), [@​KhooHaoYit](https://togithub.com/KhooHaoYit), [@​art049](https://togithub.com/art049), [@​luxaritas](https://togithub.com/luxaritas), [@​mrazauskas](https://togithub.com/mrazauskas), [@​maxmartynov](https://togithub.com/maxmartynov), [@​haneenmahd](https://togithub.com/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"](https://youtube.com/playlist?list=PLn2e1F9Rfr6l1B9RP0A9NdX7i7QIWfBa7) live stream. The stream takes place [on YouTube](https://youtu.be/t7jsqf0DeNc) on **Thursday, June 1** at **5 pm Berlin | 8 am San Francisco**.
swc-project/swc ### [`v1.3.61`](https://togithub.com/swc-project/swc/blob/HEAD/CHANGELOG.md#​1361---2023-05-30) [Compare Source](https://togithub.com/swc-project/swc/compare/v1.3.60...v1.3.61) ##### Bug Fixes - **(css/modules)** Don't drop the correct selector ([#​7450](https://togithub.com/swc-project/swc/issues/7450)) ([d370324](https://togithub.com/swc-project/swc/commit/d370324cfd251af49853fe887644fcaa8d811431)) - **(es/codegen)** Emit `;` for `TsImportEqualsDecl` ([#​7464](https://togithub.com/swc-project/swc/issues/7464)) ([3935d02](https://togithub.com/swc-project/swc/commit/3935d02e365c2fcfdf517fe6dc5943f4ba2616cd)) - **(es/parser)** Fix parsing of generic jsx element name ([#​7449](https://togithub.com/swc-project/swc/issues/7449)) ([77850dd](https://togithub.com/swc-project/swc/commit/77850dd8f01f51af1e9dda3eabddd07b7e39c841)) - **(plugin/runner)** Disable `wasi_env` cleanup ([#​7458](https://togithub.com/swc-project/swc/issues/7458)) ([1868d36](https://togithub.com/swc-project/swc/commit/1868d36cfed54e48c3439ec4547251e45731c93a)) ##### Features - **(common)** Enable bytecheck for missing structs ([#​7465](https://togithub.com/swc-project/swc/issues/7465)) ([56ac9eb](https://togithub.com/swc-project/swc/commit/56ac9eb6b3c8cc379ee4ccf55d6130e39aa641b8)) - **(es/minifier)** Inline for loop variables ([#​7445](https://togithub.com/swc-project/swc/issues/7445)) ([0cd2b61](https://togithub.com/swc-project/swc/commit/0cd2b61b054031f1a49cae25a82925d52dff0a73)) ##### Miscellaneous Tasks - **(es/preset-env)** Update data ([#​7459](https://togithub.com/swc-project/swc/issues/7459)) ([e15adaf](https://togithub.com/swc-project/swc/commit/e15adaf6eaada62b6a3c1b8447fb39612dee7946)) ##### Testing - **(es/parser)** Add a test for a fixed issue ([#​7467](https://togithub.com/swc-project/swc/issues/7467)) ([8274cce](https://togithub.com/swc-project/swc/commit/8274cce9a7d0aca8d005a215b46f7db9ed7c5aed))
vercel/turbo ### [`v1.10.0`](https://togithub.com/vercel/turbo/releases/tag/v1.10.0): Turborepo v1.10.0 [Compare Source](https://togithub.com/vercel/turbo/compare/v1.9.9...v1.10.0) #### What's Changed ##### Changelog - Exclude Pipeline Definition from Global Hash by [@​nathanhammond](https://togithub.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4545](https://togithub.com/vercel/turbo/pull/4545) - chore(turbo/gen): mark as experimental by [@​tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/5016](https://togithub.com/vercel/turbo/pull/5016) - fix: no longer crash for single projects with global dependencies by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/5002](https://togithub.com/vercel/turbo/pull/5002) - Add `dotEnv` to `turbo.json` by [@​nathanhammond](https://togithub.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4870](https://togithub.com/vercel/turbo/pull/4870) - Add missing `--copy` flag. by [@​anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/5021](https://togithub.com/vercel/turbo/pull/5021) - feat(basic): add generators to basic example by [@​tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/5006](https://togithub.com/vercel/turbo/pull/5006) - feat(prune) allow pruning of projects using Yarn PnP by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/5019](https://togithub.com/vercel/turbo/pull/5019) - Update skipping-tasks.mdx by [@​anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/5039](https://togithub.com/vercel/turbo/pull/5039) - Update skipping-tasks.mdx by [@​anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/5041](https://togithub.com/vercel/turbo/pull/5041) - feat(turborepo): remove RelativeSystemPathBuf, clean paths on join by [@​gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5020](https://togithub.com/vercel/turbo/pull/5020) - fix(create-turbo): default example messaging by [@​tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/5059](https://togithub.com/vercel/turbo/pull/5059) - fix(daemon): kill daemon when root is removed by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/5038](https://togithub.com/vercel/turbo/pull/5038) - ci(turbo): allow publishing from non-main by [@​tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/5062](https://togithub.com/vercel/turbo/pull/5062) - refactor(turborepo): Consolidated PathError and PathValidationError by [@​NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/5060](https://togithub.com/vercel/turbo/pull/5060) - fix(create-turbo): git init must use add by [@​tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/5058](https://togithub.com/vercel/turbo/pull/5058) - feat: go daemon opt-in feature flag by [@​arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/5076](https://togithub.com/vercel/turbo/pull/5076) - Add codemod to transform literals to wildcards by [@​nathanhammond](https://togithub.com/nathanhammond) in [https://github.com/vercel/turbo/pull/5054](https://togithub.com/vercel/turbo/pull/5054) - Wildcard env by [@​nathanhammond](https://togithub.com/nathanhammond) in [https://github.com/vercel/turbo/pull/5017](https://togithub.com/vercel/turbo/pull/5017) - fix(daemon): plumb through flush watch errors by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/5070](https://togithub.com/vercel/turbo/pull/5070) - Improve error message when repo is not linked or token is expired by [@​mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/5089](https://togithub.com/vercel/turbo/pull/5089) - fix(turborepo):Support distinguishing unset env vars by [@​nathanhammond](https://togithub.com/nathanhammond) in [https://github.com/vercel/turbo/pull/5086](https://togithub.com/vercel/turbo/pull/5086) #### New Contributors - [@​jw-vercel](https://togithub.com/jw-vercel) made their first contribution in [https://github.com/vercel/turbo/pull/5057](https://togithub.com/vercel/turbo/pull/5057) **Full Changelog**: https://github.com/vercel/turbo/compare/v1.9.9...v1.10.0

Configuration

πŸ“… Schedule: Branch creation - "after 9am,before 12am" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).

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

β™» 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.



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