Skip to content

chore(deps): update all non-major dependencies - #148

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-non-major
Open

renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-non-major

Conversation

@renovate

@renovate renovate Bot commented Nov 28, 2022

Copy link
Copy Markdown
Contributor

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@commitlint/cli (source) 17.2.0 -> 17.4.2 age adoption passing confidence devDependencies minor
@commitlint/config-conventional (source) 17.2.0 -> 17.4.2 age adoption passing confidence devDependencies minor
@graphql-codegen/add 3.2.1 -> 3.2.3 age adoption passing confidence devDependencies patch
@graphql-codegen/cli 2.13.12 -> 2.16.4 age adoption passing confidence devDependencies minor
@graphql-codegen/typescript 2.8.2 -> 2.8.7 age adoption passing confidence devDependencies patch
@graphql-codegen/typescript-resolvers 2.7.7 -> 2.7.12 age adoption passing confidence devDependencies patch
@graphql-tools/graphql-file-loader 7.5.11 -> 7.5.14 age adoption passing confidence dependencies patch
@graphql-tools/load 7.8.6 -> 7.8.9 age adoption passing confidence dependencies patch
@graphql-tools/schema 9.0.10 -> 9.0.13 age adoption passing confidence dependencies patch
@graphql-tools/utils 9.1.1 -> 9.1.4 age adoption passing confidence dependencies patch
@prisma/client (source) 4.6.1 -> 4.9.0 age adoption passing confidence dependencies minor
@types/jest (source) 29.2.3 -> 29.2.6 age adoption passing confidence devDependencies patch
@types/lodash (source) 4.14.189 -> 4.14.191 age adoption passing confidence devDependencies patch
@typescript-eslint/eslint-plugin 5.43.0 -> 5.48.2 age adoption passing confidence devDependencies minor
@typescript-eslint/parser 5.43.0 -> 5.48.2 age adoption passing confidence devDependencies minor
@vercel/node (source) 2.6.3 -> 2.8.15 age adoption passing confidence dependencies minor
UnlyEd/github-action-await-vercel v1.2.15 -> v1.2.41 age adoption passing confidence action patch
commitizen 4.2.5 -> 4.3.0 age adoption passing confidence devDependencies minor
enhanced-resolve 5.10.0 -> 5.12.0 age adoption passing confidence devDependencies minor
eslint (source) 8.28.0 -> 8.32.0 age adoption passing confidence devDependencies minor
eslint-plugin-jest 27.1.5 -> 27.2.1 age adoption passing confidence devDependencies minor
prettier (source) 2.7.1 -> 2.8.3 age adoption passing confidence devDependencies minor
prisma (source) 4.6.1 -> 4.9.0 age adoption passing confidence dependencies minor
spectaql 1.5.9 -> 1.5.11 age adoption passing confidence devDependencies patch
ts-jest (source) 29.0.3 -> 29.0.5 age adoption passing confidence devDependencies patch
typescript (source) 4.9.3 -> 4.9.4 age adoption passing confidence devDependencies patch
zentered/vercel-preview-url v1.1.2 -> v1.1.9 age adoption passing confidence action patch

⚠ Dependency Lookup Warnings ⚠

Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.


Release Notes

conventional-changelog/commitlint (@​commitlint/cli)

v17.4.2

Compare Source

Note: Version bump only for package @​commitlint/cli

v17.4.1

Compare Source

Note: Version bump only for package @​commitlint/cli

v17.4.0

Compare Source

Bug Fixes

v17.3.0

Compare Source

Note: Version bump only for package @​commitlint/cli

conventional-changelog/commitlint (@​commitlint/config-conventional)

v17.4.2

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

v17.4.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

v17.3.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

dotansimha/graphql-code-generator (@​graphql-codegen/add)

v3.2.3

Compare Source

Patch Changes

v3.2.2

Compare Source

Patch Changes
dotansimha/graphql-code-generator (@​graphql-codegen/cli)

v2.16.4

Compare Source

Patch Changes

v2.16.3

Compare Source

Patch Changes

v2.16.2

Compare Source

Patch Changes

v2.16.1

Compare Source

Patch Changes

v2.16.0

Compare Source

Minor Changes
Patch Changes

v2.15.0

Compare Source

Minor Changes

v2.14.1

Compare Source

Patch Changes

v2.14.0

Compare Source

Minor Changes
Patch Changes
dotansimha/graphql-code-generator (@​graphql-codegen/typescript)

v2.8.7

Compare Source

Patch Changes

v2.8.6

Compare Source

Patch Changes

v2.8.5

Compare Source

Patch Changes

v2.8.4

Compare Source

Patch Changes

v2.8.3

Compare Source

Patch Changes
dotansimha/graphql-code-generator (@​graphql-codegen/typescript-resolvers)

v2.7.12

Compare Source

Patch Changes

v2.7.11

Compare Source

Patch Changes

v2.7.10

Compare Source

Patch Changes

v2.7.9

Compare Source

Patch Changes

v2.7.8

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/graphql-file-loader)

v7.5.14

Compare Source

Patch Changes

v7.5.13

Compare Source

Patch Changes

v7.5.12

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/load)

v7.8.9

Compare Source

Patch Changes

v7.8.8

Compare Source

Patch Changes

v7.8.7

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/schema)

v9.0.13

Compare Source

Patch Changes

v9.0.12

Compare Source

Patch Changes

v9.0.11

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/utils)

v9.1.4

Compare Source

Patch Changes

v9.1.3

Compare Source

Patch Changes

v9.1.2

Compare Source

Patch Changes
prisma/prisma

v4.9.0

Compare Source

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

Highlights

Initial support for database views (Preview)

This release introduces a new keyword, view, behind the views Preview feature flag. You can manually add a view to your Prisma schema, which is ignored when running migrations. This is a small step forward but should already be helpful to many of you depending on workarounds and shell scripts to work with views and Migrate.

Here is an example usage of views:

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

view UserInfo {
  id    Int    @​id
  // from the User model
  email String
  name  String
  // from the Profile model
  bio   String
}

model User {
  id      Int      @​id @​default(autoincrement())
  email   String   @​unique
  name    String?
  profile Profile?
}

model Profile {
  id     Int    @​id @​default(autoincrement())
  bio    String
  user   User   @​relation(fields: [userId], references: [id])
  userId Int    @​unique
}

To learn more, head to our documentation. Try it out and let us know your thoughts on this GitHub issue.

Multi-schema support for SQL Server (Preview)

We're thrilled to share that this release adds Preview support for multi-schema for SQL Server.

This release adds support for:

  • Introspecting databases that organize objects in multiple database schemas
  • Managing multi-schema database setups directly from Prisma schema
  • Generating migrations that are database schema-aware with Prisma Migrate
  • Querying across multiple database schemas with Prisma Client

If you already have a SQL Server database using multiple schemas, you can quickly get up and running and set up multiple schemas by:

  • Enabling the Preview feature in the Prisma schema
  • Defining the schemas in

Configuration

📅 Schedule: Branch creation - "before 3am on Monday" (UTC), 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.


  • 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 mxseev as a code owner November 28, 2022 01:18
@renovate renovate Bot added the dependencies Pull requests that update a dependency file label Nov 28, 2022
@vercel

vercel Bot commented Nov 28, 2022

Copy link
Copy Markdown

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

Name Status Preview Updated
base-api ✅ Ready (Inspect) Visit Preview Dec 28, 2022 at 4:58PM (UTC)

@renovate
renovate Bot force-pushed the renovate/all-non-major branch from 9a68dcf to 7149e00 Compare November 28, 2022 19:45
mxseev added a commit that referenced this pull request Nov 29, 2022
…pdate-skip-renovate

Более простое обновление base
@mxseev mxseev mentioned this pull request Nov 29, 2022
@renovate
renovate Bot force-pushed the renovate/all-non-major branch from 7149e00 to 25e7e7d Compare November 29, 2022 16:24
@renovate
renovate Bot force-pushed the renovate/all-non-major branch from 25e7e7d to 8e2bc0b Compare November 30, 2022 13:15
@renovate
renovate Bot force-pushed the renovate/all-non-major branch from 8e2bc0b to befefb7 Compare November 30, 2022 23:34
@renovate
renovate Bot force-pushed the renovate/all-non-major branch from befefb7 to e9b15d3 Compare December 1, 2022 23:32
@renovate
renovate Bot force-pushed the renovate/all-non-major branch from e9b15d3 to 5b583e4 Compare December 2, 2022 11:05
@renovate
renovate Bot force-pushed the renovate/all-non-major branch from 5b583e4 to cc545a7 Compare December 2, 2022 23:02
@renovate
renovate Bot force-pushed the renovate/all-non-major branch from cc545a7 to 71b849e Compare December 5, 2022 10:31
@renovate
renovate Bot force-pushed the renovate/all-non-major branch from 71b849e to 52fda21 Compare December 5, 2022 20:05
@renovate
renovate Bot force-pushed the renovate/all-non-major branch from 52fda21 to e2db557 Compare December 6, 2022 13:28
@renovate
renovate Bot force-pushed the renovate/all-non-major branch from e2db557 to 96e17b7 Compare December 7, 2022 15:41
@renovate
renovate Bot force-pushed the renovate/all-non-major branch from 96e17b7 to a35ddca Compare December 7, 2022 19:05
@renovate
renovate Bot force-pushed the renovate/all-non-major branch from c453812 to df4cb2f Compare December 17, 2022 01:07
@renovate renovate Bot changed the title chore(deps): update all non-major dependencies Update all non-major dependencies Dec 17, 2022
@renovate renovate Bot changed the title Update all non-major dependencies chore(deps): update all non-major dependencies Dec 17, 2022
@renovate
renovate Bot force-pushed the renovate/all-non-major branch from df4cb2f to 2532dd5 Compare December 19, 2022 21:29
@renovate
renovate Bot force-pushed the renovate/all-non-major branch from 2532dd5 to 7a11265 Compare December 20, 2022 18:19
@renovate
renovate Bot force-pushed the renovate/all-non-major branch from 7a11265 to 6d71da0 Compare December 23, 2022 01:57
@renovate
renovate Bot force-pushed the renovate/all-non-major branch from 6d71da0 to 3bb5bc9 Compare December 23, 2022 09:33
@renovate
renovate Bot force-pushed the renovate/all-non-major branch from 3bb5bc9 to 5275e19 Compare December 26, 2022 18:07
@renovate
renovate Bot force-pushed the renovate/all-non-major branch from 5275e19 to 0dd8081 Compare December 27, 2022 21:01
@renovate
renovate Bot force-pushed the renovate/all-non-major branch from 0dd8081 to 684337b Compare December 28, 2022 13:35
@renovate
renovate Bot force-pushed the renovate/all-non-major branch from 684337b to 84ac6bc Compare December 28, 2022 16:57
@renovate
renovate Bot force-pushed the renovate/all-non-major branch 9 times, most recently from f03ac00 to 4ccc2df Compare January 4, 2023 01:27

This branch was successfully deployed

1 active (outdated) deployment
Preview 84ac6bc0 Deployed Dec 28, 2022 by vercel[bot]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant