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

Update all dependencies (major) #238

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Update all dependencies (major) #238

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 16, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@faker-js/faker (source) 8.0.2 -> 9.3.0 age adoption passing confidence devDependencies major
@prisma/client (source) 5.3.1 -> 6.0.1 age adoption passing confidence dependencies major
@prisma/instrumentation (source) 5.3.1 -> 6.0.1 age adoption passing confidence dependencies major
@types/express (source) 4.17.17 -> 5.0.0 age adoption passing confidence devDependencies major
@types/node (source) 18.17.16 -> 22.10.2 age adoption passing confidence devDependencies major
@types/passport-jwt (source) 3.0.8 -> 4.0.1 age adoption passing confidence devDependencies major
@types/supertest (source) 2.0.12 -> 6.0.2 age adoption passing confidence devDependencies major
@typescript-eslint/eslint-plugin (source) 6.7.0 -> 8.18.0 age adoption passing confidence devDependencies major
@typescript-eslint/parser (source) 6.7.0 -> 8.18.0 age adoption passing confidence devDependencies major
@vitest/coverage-v8 (source) ^0.34.0 -> ^2.0.0 age adoption passing confidence devDependencies major
actions/cache v3 -> v4 age adoption passing confidence action major
actions/checkout v3 -> v4 age adoption passing confidence action major
actions/setup-node v3 -> v4 age adoption passing confidence action major
bullmq (source) ^4.0.0 -> ^5.0.0 age adoption passing confidence dependencies major
date-fns 2.30.0 -> 4.1.0 age adoption passing confidence dependencies major
eslint (source) 8.49.0 -> 9.16.0 age adoption passing confidence devDependencies major
eslint-config-async 2.0.1 -> 3.0.0 age adoption passing confidence devDependencies major
eslint-config-prettier 8.10.0 -> 9.1.0 age adoption passing confidence devDependencies major
firebase-admin (source) 11.10.1 -> 13.0.1 age adoption passing confidence dependencies major
github/codeql-action v2 -> v3 age adoption passing confidence action major
graphql-subscriptions 2.0.0 -> 3.0.0 age adoption passing confidence dependencies major
husky 8.0.3 -> 9.1.7 age adoption passing confidence devDependencies major
lint-staged 13.3.0 -> 15.2.11 age adoption passing confidence devDependencies major
node (source) 18.x -> 22.x age adoption passing confidence engines major
node 18-alpine -> 22-alpine age adoption passing confidence final major
prisma (source) 5.3.1 -> 6.0.1 age adoption passing confidence devDependencies major
rimraf 5.0.1 -> 6.0.1 age adoption passing confidence dependencies major
supertest 6.3.3 -> 7.0.0 age adoption passing confidence devDependencies major
szenius/set-timezone v1.2 -> v2.0 age adoption passing confidence action major
vite-tsconfig-paths 4.2.0 -> 5.1.4 age adoption passing confidence devDependencies major
vitest (source) 0.34.4 -> 2.1.8 age adoption passing confidence devDependencies major
vitest-mock-extended 1.2.1 -> 2.0.2 age adoption passing confidence devDependencies major

Release Notes

faker-js/faker (@​faker-js/faker)

v9.3.0

Compare Source

Features
Changed Locales
Bug Fixes
  • internet: ensure domainWord always returns a valid value in all locales (#​3253) (525fedc)
  • locale: add Isadora to female names in pt_BR for consistency (#​3282) (b390432)
  • locale: fix incorrect accents in it first_name (#​3281) (e0fb23e)

v9.2.0

Compare Source

Features
Changed Locales

v9.1.0

Compare Source

New Locales
Features
Changed Locales
Bug Fixes

v9.0.3

Compare Source

Changed Locales
Bug Fixes

v9.0.2

Compare Source

Bug Fixes

v9.0.1

Compare Source

Bug Fixes

v9.0.0

Compare Source

No noteworthy changes to 9.0.0-rc.1

For those upgrading from earlier versions, please refer to our Migration Guide for detailed instructions.

v8.4.1

Compare Source

  • JSDocs improvements

v8.4.0

Compare Source

Features
Bug Fixes
8.3.1 (2023-11-14)
Bug Fixes
  • remove [@internal](https://redirect.github.com/internal) from module parent classes (#​2548) (77f54ad)

v8.3.1

Compare Source

v8.3.0

Compare Source

Features
Bug Fixes
Changed Locales
New Locales

v8.2.0

Compare Source

Features
Bug Fixes
New Locales

v8.1.0

Compare Source

Features
Bug Fixes
Changed Locales
New Locales
8.0.2 (2023-05-27)
Bug Fixes
prisma/prisma (@​prisma/client)

v6.0.1

Compare Source

v6.0.0

Compare Source

We’re excited to share the Prisma ORM v6 release today 🎉

As this is a major release, it includes a few breaking changes that may affect your application. Before upgrading, we recommend that you check out our upgrade guide to understand the impact on your application.

If you want to have an overview of what we accomplished since v5, check out our announcement blog post: Prisma 6: Better Performance, More Flexibility & Type-Safe SQL.

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

Breaking changes

⚠️ This section contains a list of breaking changes. If you upgrade your application to Prisma ORM v6 without addressing these, your application is going to break! For detailed upgrade instructions, check out the upgrade guide. ⚠️ 

Minimum supported Node.js versions

The new minimum supported Node.js versions for Prisma ORM v6 are:

  • for Node.js 18 the minimum supported version is 18.18.0
  • for Node.js 20 the minimum supported version is 20.9.0
  • for Node.js 22 the minimum supported version is 22.11.0

There is no official support for Node.js <18.18.0, 19, 21, 23.

Minimum supported TypeScript version

The new minimum supported TypeScript version for Prisma ORM v6 is: 5.1.0.

Schema change for implicit m-n relations on PostgreSQL

If you're using PostgreSQL and are defining implicit many-to-many relations in your Prisma schema, Prisma ORM maintains the relation table for you under the hood. This relation table has A and B columns to represent the tables of the models that are part of this relation.

Previous versions of Prisma ORM used to create a unique index on these two columns. In Prisma v6, this unique index is changing to a primary key in order to simplify for the default replica identity behaviour.

If you're defining implicit m-n relations in your Prisma schema, the next migration you'll create will contain ALTER TABLE statements for all the relation tables that belong to these relations.

Full-text search on PostgreSQL

The fullTextSearch Preview feature is promoted to General Availability only for MySQL. This means that if you're using PostgreSQL and currently make use of this Preview feature, you now need to use the new fullTextSearchPostgres Preview feature.

Usage of Buffer

Prisma v6 replaces the usage of Buffer with Uint8Array to represent fields of type Bytes. Make sure to replace all your occurrences of the Buffer type with the new Uint8Array.

Removed NotFoundError

In Prisma v6, we removed the NotFoundError in favor of PrismaClientKnownRequestError with error code P2025 in findUniqueOrThrow() and [findFirstOrThrow()


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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title Update Node.js to v20 Update all dependencies (major) Aug 6, 2023
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from 28794a6 to 7fff3f6 Compare August 6, 2023 04:26
@renovate renovate bot force-pushed the renovate/major-all branch from 7fff3f6 to 0456c4a Compare August 13, 2023 21:39
@renovate renovate bot force-pushed the renovate/major-all branch from 0456c4a to d330710 Compare August 21, 2023 11:21
@renovate renovate bot force-pushed the renovate/major-all branch from d330710 to 631cb4d Compare September 4, 2023 13:19
@renovate renovate bot force-pushed the renovate/major-all branch from 631cb4d to 65e39a8 Compare September 16, 2023 00:32
@renovate renovate bot force-pushed the renovate/major-all branch 4 times, most recently from c05bcd6 to 52a133d Compare October 20, 2023 00:50
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from 6fcbfa0 to 5de8a42 Compare October 25, 2023 19:13
@renovate renovate bot force-pushed the renovate/major-all branch from 5de8a42 to 502b108 Compare October 31, 2023 10:08
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from a636e17 to 3ce689a Compare November 11, 2023 17:14
@renovate renovate bot force-pushed the renovate/major-all branch 5 times, most recently from 74f90b7 to 8e828b5 Compare November 23, 2023 22:18
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from 2333958 to da86a4f Compare November 29, 2023 20:23
@renovate renovate bot force-pushed the renovate/major-all branch 4 times, most recently from d406ca7 to 64af474 Compare December 3, 2023 20:51
Copy link

sonarqubecloud bot commented Dec 3, 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

@renovate renovate bot force-pushed the renovate/major-all branch from 64af474 to 7aef736 Compare December 4, 2023 17:03
@renovate renovate bot force-pushed the renovate/major-all branch 4 times, most recently from 2b06e1d to d0e56cd Compare November 1, 2024 05:45
@renovate renovate bot force-pushed the renovate/major-all branch 4 times, most recently from 6249e35 to 7bbc012 Compare November 5, 2024 05:27
@renovate renovate bot force-pushed the renovate/major-all branch 6 times, most recently from 17e9860 to 28aa720 Compare November 15, 2024 20:11
@renovate renovate bot force-pushed the renovate/major-all branch 6 times, most recently from d38e5f5 to 27cba02 Compare November 25, 2024 18:51
@renovate renovate bot force-pushed the renovate/major-all branch 5 times, most recently from a99a0da to 094992c Compare December 2, 2024 20:42
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from 3f9a903 to 128d48b Compare December 11, 2024 17:13
@renovate renovate bot force-pushed the renovate/major-all branch from 128d48b to 8af9226 Compare December 13, 2024 22:31
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