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

Merged
merged 1 commit into from
Sep 4, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 26, 2024

This PR contains the following updates:

Package Type Update Change OpenSSF
@neondatabase/serverless (source) dependencies patch 0.9.4 -> 0.9.5 OpenSSF Scorecard
@prisma/adapter-neon (source) dependencies minor 5.18.0 -> 5.19.1 OpenSSF Scorecard
@prisma/client (source) dependencies minor 5.18.0 -> 5.19.1 OpenSSF Scorecard
@relative-ci/agent (source) devDependencies patch 4.2.10 -> 4.2.11 OpenSSF Scorecard
@types/node (source) devDependencies patch 20.16.1 -> 20.16.4 OpenSSF Scorecard
@types/react (source) devDependencies patch 18.3.4 -> 18.3.5 OpenSSF Scorecard
eslint-import-resolver-typescript devDependencies patch 3.6.1 -> 3.6.3 OpenSSF Scorecard
eslint-plugin-react devDependencies patch 7.35.0 -> 7.35.2 OpenSSF Scorecard
knip (source) devDependencies minor 5.27.3 -> 5.29.2 OpenSSF Scorecard
lint-staged devDependencies patch 15.2.9 -> 15.2.10 OpenSSF Scorecard
pnpm (source) packageManager minor 9.8.0 -> 9.9.0 OpenSSF Scorecard
prettier-plugin-packagejson devDependencies patch 2.5.1 -> 2.5.2 OpenSSF Scorecard
prisma (source) devDependencies minor 5.18.0 -> 5.19.1 OpenSSF Scorecard
tsx (source) devDependencies minor 4.17.0 -> 4.19.0 OpenSSF Scorecard
type-fest devDependencies minor 4.25.0 -> 4.26.0 OpenSSF Scorecard

Release Notes

neondatabase/serverless (@​neondatabase/serverless)

v0.9.5

Compare Source

prisma/prisma (@​prisma/adapter-neon)

v5.19.1

Compare Source

Today, we are issuing the 5.19.1 patch release.

What's Changed

We've fixed the following issues:

Full Changelog: prisma/prisma@5.19.0...5.19.x, prisma/prisma-engines@5.19.0...5.19.x

v5.19.0

Compare Source

Today, we are excited to share the 5.19.0 stable release 🎉

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

Highlights

Introducing TypedSQL

TypedSQL is a brand new way to interact with your database from Prisma Client. After enabling the typedSql Preview feature, you’re able to write SQL queries in a new sql subdirectory of your prisma directory. These queries are then checked by Prisma during using the new --sql flag of prisma generate and added to your client for use in your code.

To get started with TypedSQL:

  1. Make sure that you have the latest version of prisma and @prisma/client installed:

    npm install -D prisma@latest
    npm install @​prisma/client@latest
    
  2. Enable the typedSql Preview feature in your Prisma Schema.

       generator client {
         provider = "prisma-client-js"
         previewFeatures = ["typedSql"]
       }
    
  3. Create a sql subdirectory of your prisma directory.

    mkdir -p prisma/sql
    
  4. You can now add .sql files to the sql directory! Each file can contain one sql query and the name must be a valid JS identifier. For this example, say you had the file getUsersWithPosts.sql with the following contents:

    SELECT u.id, u.name, COUNT(p.id) as "postCount"
    FROM "User" u
    LEFT JOIN "Post" p ON u.id = p."authorId"
    GROUP BY u.id, u.name
  5. Import your SQL query into your code with the @prisma/client/sql import:

       import { PrismaClient } from '@​prisma/client'
       import { getUsersWithPosts } from '@​prisma/client/sql'
    
       const prisma = new PrismaClient()
    
       const usersWithPostCounts = await prisma.$queryRawTyped(getUsersWithPosts)
       console.log(usersWithPostCounts)

There’s a lot more to talk about with TypedSQL. We think that the combination of the high-level Prisma Client API and the low-level TypedSQL will make for a great developer experience for all of our users.

To learn more about behind the “why” of TypedSQL be sure to check out our announcement blog post.

For docs, check out our new TypedSQL section.

Bug fixes

Driver adapters and D1

A few issues with our driverAdapters Preview feature and Cloudflare D1 support were resolved via https://github.com/prisma/prisma-engines/pull/4970 and https://github.com/prisma/prisma/pull/24922

  • Mathematic operations such as max, min, eq, etc in queries when using Cloudflare D1.
  • Resolved issues when comparing BigInt IDs when relationMode="prisma" was enabled and Cloudflare D1 was being used.
Joins
MongoDB

The MongoDB driver for Rust (that our query engine users under the hood) had behavior that prioritized IPv4 connections over IPv6 connections. In IPv6-only environments, this could lead to significant "cold starts" where the query engine had to wait for IPv4 to fail before the driver would try IPv6.

With help from the MongoDB team, this has been resolved. The driver will now try IPv4 and IPv6 connections in parallel and then move forward with the first response. This should prevent cold start issues that have been seen with MongoDB in Prisma Accelerate.

Thank you to the MongoDB team!

Join us

Looking to make an impact on Prisma in a big way? We're now hiring engineers for the ORM team!

  • Senior Engineer (TypeScript): This person will be primarily working on the TypeScript side and evolving our Prisma client. Rust knowledge (or desire to learn Rust) is a plus.
  • Senior Engineer (Rust): This person will be focused on the prisma-engines Rust codebase. TypeScript knowledge (or, again, a desire to learn) is a plus.

Credits

Huge thanks to @​mcuelenaere, @​pagewang0, @​Druue, @​key-moon, @​Jolg42, @​pranayat, @​ospfranco, @​yubrot, @​skyzh for helping!

relative-ci/agent (@​relative-ci/agent)

v4.2.11

Compare Source

What's Changed

Full Changelog: relative-ci/agent@v4.2.10...v4.2.11

import-js/eslint-import-resolver-typescript (eslint-import-resolver-typescript)

v3.6.3

Compare Source

Patch Changes
jsx-eslint/eslint-plugin-react (eslint-plugin-react)

v7.35.2

Compare Source

Fixed
  • [jsx-curly-brace-presence]: avoid autofixing attributes with double quotes to a double quoted attribute ([#​3814][] @​ljharb)

undefined
[#​1000]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1000%0A[#​1002]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1002%0A[#​1005]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1005%0A[#​100]: https://github.com/jsx-eslint/eslint-plugin-react/issues/100%0A[#​1010]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1010%0A[#​1013]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1013%0A[#​1022]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1022%0A[#​1029]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1029%0A[#​102]: https://github.com/jsx-eslint/eslint-plugin-react/issues/102%0A[#​1034]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1034%0A[#​1038]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1038%0A[#​1041]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1041%0A[#​1043]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1043%0A[#​1046]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1046%0A[#​1047]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1047%0A[#​1050]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1050%0A[#​1053]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1053%0A[#​1057]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1057%0A[#​105]: https://github.com/jsx-eslint/eslint-plugin-react/issues/105%0A[#​1061]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1061%0A[#​1062]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1062%0A[#​1070]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1070%0A[#​1071]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1071%0A[#​1073]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1073%0A[#​1076]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1076%0A[#​1079]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1079%0A[#​1088]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1088%0A[#​1098]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1098%0A[#​1101]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1101%0A[#​1103]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1103%0A[#​110]: https://github.com/jsx-eslint/eslint-plugin-react/issues/110%0A[#​1116]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1116%0A[#​1117]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1117%0A[#​1119]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1119%0A[#​1121]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1121%0A[#​1122]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1122%0A[#​1123]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1123%0A[#​1130]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1130%0A[#​1131]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1131%0A[#​1132]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1132%0A[#​1134]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1134%0A[#​1135]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1135%0A[#​1139]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1139%0A[#​1148]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1148%0A[#​1149]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1149%0A[#​114]: https://github.com/jsx-eslint/eslint-plugin-react/pull/114%0A[#​1151]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1151%0A[#​1155]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1155%0A[#​1161]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1161%0A[#​1167]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1167%0A[#​1173]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1173%0A[#​1174]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1174%0A[#​1175]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1175%0A[#​1178]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1178%0A[#​1179]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1179%0A[#​117]: https://github.com/jsx-eslint/eslint-plugin-react/pull/117%0A[#​1180]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1180%0A[#​1183]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1183%0A[#​1189]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1189%0A[#​118]: https://github.com/jsx-eslint/eslint-plugin-react/issues/118%0A[#​1192]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1192%0A[#​1195]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1195%0A[#​1199]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1199%0A[#​119]: https://github.com/jsx-eslint/eslint-plugin-react/pull/119%0A[#​11]: https://github.com/jsx-eslint/eslint-plugin-react/issues/11%0A[#​1201]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1201%0A[#​1202]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1202%0A[#​1206]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1206%0A[#​1213]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1213%0A[#​1216]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1216%0A[#​1222]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1222%0A[#​1226]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1226%0A[#​1227]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1227%0A[#​122]: https://github.com/jsx-eslint/eslint-plugin-react/issues/122%0A[#​1231]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1231%0A[#​1236]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1236%0A[#​1239]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1239%0A[#​123]: https://github.com/jsx-eslint/eslint-plugin-react/pull/123%0A[#​1241]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1241%0A[#​1242]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1242%0A[#​1246]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1246%0A[#​1249]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1249%0A[#​1253]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1253%0A[#​1257]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1257%0A[#​125]: https://github.com/jsx-eslint/eslint-plugin-react/issues/125%0A[#​1260]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1260%0A[#​1261]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1261%0A[#​1262]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1262%0A[#​1264]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1264%0A[#​1266]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1266%0A[#​1269]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1269%0A[#​1273]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1273%0A[#​1274]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1274%0A[#​1277]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1277%0A[#​127]: https://github.com/jsx-eslint/eslint-plugin-react/pull/127%0A[#​1281]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1281%0A[#​1287]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1287%0A[#​1288]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1288%0A[#​1289]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1289%0A[#​128]: https://github.com/jsx-eslint/eslint-plugin-react/issues/128%0A[#​1290]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1290%0A[#​1294]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1294%0A[#​1296]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1296%0A[#​129]: https://github.com/jsx-eslint/eslint-plugin-react/issues/129%0A[#​12]: https://github.com/jsx-eslint/eslint-plugin-react/issues/12%0A[#​1301]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1301%0A[#​1303]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1303%0A[#​1306]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1306%0A[#​1308]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1308%0A[#​1309]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1309%0A[#​130]: https://github.com/jsx-eslint/eslint-plugin-react/issues/130%0A[#​1310]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1310%0A[#​1323]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1323%0A[#​1329]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1329%0A[#​132]: https://github.com/jsx-eslint/eslint-plugin-react/issues/132%0A[#​1335]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1335%0A[#​1337]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1337%0A[#​133]: https://github.com/jsx-eslint/eslint-plugin-react/issues/133%0A[#​1344]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1344%0A[#​1352]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1352%0A[#​1353]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1353%0A[#​1354]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1354%0A[#​135]: https://github.com/jsx-eslint/eslint-plugin-react/issues/135%0A[#​1361]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1361%0A[#​1363]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1363%0A[#​1364]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1364%0A[#​1366]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1366%0A[#​1369]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1369%0A[#​136]: https://github.com/jsx-eslint/eslint-plugin-react/issues/136%0A[#​1374]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1374%0A[#​1376]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1376%0A[#​137]: https://github.com/jsx-eslint/eslint-plugin-react/issues/137%0A[#​1380]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1380%0A[#​1381]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1381%0A[#​1382]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1382%0A[#​1383]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1383%0A[#​1384]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1384%0A[#​1386]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1386%0A[#​1388]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1388%0A[#​1389]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1389%0A[#​138]: https://github.com/jsx-eslint/eslint-plugin-react/pull/138%0A[#​1392]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1392%0A[#​1395]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1395%0A[#​1396]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1396%0A[#​1398]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1398%0A[#​139]: https://github.com/jsx-eslint/eslint-plugin-react/issues/139%0A[#​13]: https://github.com/jsx-eslint/eslint-plugin-react/issues/13%0A[#​1400]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1400%0A[#​1403]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1403%0A[#​1406]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1406%0A[#​1409]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1409%0A[#​1412]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1412%0A[#​1413]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1413%0A[#​1414]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1414%0A[#​1417]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1417%0A[#​1422]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1422%0A[#​1423]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1423%0A[#​142]: https://github.com/jsx-eslint/eslint-plugin-react/issues/142%0A[#​1432]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1432%0A[#​1435]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1435%0A[#​1438]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1438%0A[#​1444]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1444%0A[#​1449]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1449%0A[#​144]: https://github.com/jsx-eslint/eslint-plugin-react/issues/144%0A[#​1450]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1450%0A[#​145]: https://github.com/jsx-eslint/eslint-plugin-react/issues/145%0A[#​1462]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1462%0A[#​1464]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1464%0A[#​1467]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1467%0A[#​1468]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1468%0A[#​146]: https://github.com/jsx-eslint/eslint-plugin-react/issues/146%0A[#​1471]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1471%0A[#​1475]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1475%0A[#​1476]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1476%0A[#​1478]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1478%0A[#​1479]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1479%0A[#​147]: https://github.com/jsx-eslint/eslint-plugin-react/pull/147%0A[#​1485]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1485%0A[#​148]: https://github.com/jsx-eslint/eslint-plugin-react/issues/148%0A[#​1493]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1493%0A[#​1494]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1494%0A[#​1496]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1496%0A[#​1497]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1497%0A[#​1499]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1499%0A[#​14]: https://github.com/jsx-eslint/eslint-plugin-react/issues/14%0A[#​1500]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1500%0A[#​1502]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1502%0A[#​1507]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1507%0A[#​1508]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1508%0A[#​1511]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1511%0A[#​1512]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1512%0A[#​1514]: [https://github.com/jsx-eslint/eslint-plugin-react/pull/1514](https://redirect.github.com/jsx-eslint/eslint-pl


Configuration

📅 Schedule: Branch creation - "before 4am on Monday,before 4am on Thursday" (UTC), 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 added automerge Enable Kodiak auto-merge dependencies Change in project dependencies. labels Aug 26, 2024
@renovate renovate bot requested a review from JoeKarow as a code owner August 26, 2024 02:40
Copy link

vercel bot commented Aug 26, 2024

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

Name Status Preview Comments Updated (UTC)
transmascfutures ✅ Ready (Inspect) Visit Preview 💬 Add feedback Sep 4, 2024 3:35am

Copy link

coderabbitai bot commented Aug 26, 2024

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Walkthrough

The changes involve updating the version numbers of several dependencies in the package.json file. The versions of @prisma/adapter-neon, @prisma/client, @types/node, eslint-import-resolver-typescript, knip, prettier-plugin-packagejson, prisma, and tsx have been incremented to newer versions. These updates reflect maintenance changes aimed at ensuring compatibility with the latest features or bug fixes, with no structural alterations to the package.json.

Changes

File Change Summary
package.json Updated versions: @prisma/adapter-neon from 5.18.0 to 5.19.0, @prisma/client from 5.18.0 to 5.19.0, @types/node from 20.16.1 to 20.16.3, eslint-import-resolver-typescript from 3.6.1 to 3.6.3, knip from 5.27.3 to 5.29.1, prettier-plugin-packagejson from 2.5.1 to 2.5.2, prisma from 5.18.0 to 5.19.0, tsx from 4.17.0 to 4.19.0, and packageManager from pnpm@9.8.0 to pnpm@9.9.0.

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary or <!-- #coderabbitai summary --> to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai or @coderabbitai title anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

relativeci bot commented Aug 26, 2024

#325 Bundle Size — 18.74MiB (~+0.01%).

b5dcc73(current) vs 473f5ac dev#300(baseline)

Bundle metrics  Change 2 changes Regression 1 regression
                 Current
#325
     Baseline
#300
Regression  Initial JS 1006.93KiB(+0.01%) 1006.81KiB
No change  Initial CSS 6.61KiB 6.61KiB
Change  Cache Invalidation 2.31% 2.86%
No change  Chunks 20 20
No change  Assets 80 80
No change  Modules 790 790
No change  Duplicate Modules 103 103
No change  Duplicate Code 5.66% 5.66%
No change  Packages 81 81
No change  Duplicate Packages 0 0
Bundle size by type  Change 1 change Regression 1 regression
                 Current
#325
     Baseline
#300
No change  IMG 17.47MiB 17.47MiB
Regression  JS 1.08MiB (+0.01%) 1.08MiB
No change  Fonts 189.64KiB 189.64KiB
No change  CSS 6.61KiB 6.61KiB
No change  Other 4.07KiB 4.07KiB

Bundle analysis reportBranch renovate/all-minor-patchProject dashboard


Generated by RelativeCIDocumentationReport issue

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 473f5ac and db2dafb.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (1)
  • package.json (1 hunks)
Files skipped from review due to trivial changes (1)
  • package.json

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from db2dafb to 62d08d3 Compare August 26, 2024 10:54
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between db2dafb and 62d08d3.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (1)
  • package.json (2 hunks)
Files skipped from review as they are similar to previous changes (1)
  • package.json

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 62d08d3 and 45eb6e9.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (1)
  • package.json (2 hunks)
Files skipped from review as they are similar to previous changes (1)
  • package.json

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 45eb6e9 and cb9cefc.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (1)
  • package.json (2 hunks)
Files skipped from review as they are similar to previous changes (1)
  • package.json

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cb9cefc to d374a32 Compare August 27, 2024 15:51
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Aug 27, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d374a32 to fc7626f Compare August 28, 2024 01:33
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between cb9cefc and fc7626f.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (1)
  • package.json (4 hunks)
Additional comments not posted (9)
package.json (9)

44-44: LGTM!

The version update for @prisma/adapter-neon from 5.18.0 to 5.19.0 is appropriate.

The code changes are approved.


45-45: LGTM!

The version update for @prisma/client from 5.18.0 to 5.19.0 is appropriate.

The code changes are approved.


88-88: LGTM!

The version update for @types/node from 20.16.1 to 20.16.2 is appropriate.

The code changes are approved.


103-103: LGTM!

The version update for eslint-import-resolver-typescript from 3.6.1 to 3.6.3 is appropriate.

The code changes are approved.


113-113: LGTM!

The version update for knip from 5.27.3 to 5.27.4 is appropriate.

The code changes are approved.


120-120: LGTM!

The version update for prettier-plugin-packagejson from 2.5.1 to 2.5.2 is appropriate.

The code changes are approved.


122-122: LGTM!

The version update for prisma from 5.18.0 to 5.19.0 is appropriate.

The code changes are approved.


125-125: LGTM!

The version update for tsx from 4.17.0 to 4.19.0 is appropriate.

The code changes are approved.


130-130: LGTM!

The version update for pnpm from 9.8.0 to 9.9.0 is appropriate.

The code changes are approved.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between fc7626f and aa76ac4.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (1)
  • package.json (4 hunks)
Files skipped from review as they are similar to previous changes (1)
  • package.json

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between aa76ac4 and 2af93fd.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (1)
  • package.json (5 hunks)
Files skipped from review as they are similar to previous changes (1)
  • package.json

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 2af93fd and be62bc6.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (1)
  • package.json (5 hunks)
Files skipped from review due to trivial changes (1)
  • package.json

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between be62bc6 and be79092.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (1)
  • package.json (5 hunks)
Files skipped from review as they are similar to previous changes (1)
  • package.json

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between be79092 and 0d1a363.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (1)
  • package.json (5 hunks)
Files skipped from review as they are similar to previous changes (1)
  • package.json

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 0d1a363 and 08b89b6.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (1)
  • package.json (5 hunks)
Files skipped from review due to trivial changes (1)
  • package.json

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Copy link

sonarcloud bot commented Sep 4, 2024

@kodiakhq kodiakhq bot merged commit 29e9d1d into dev Sep 4, 2024
17 of 18 checks passed
@kodiakhq kodiakhq bot deleted the renovate/all-minor-patch branch September 4, 2024 16:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
automerge Enable Kodiak auto-merge dependencies Change in project dependencies.
Development

Successfully merging this pull request may close these issues.

1 participant