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

Merged
merged 1 commit into from
Mar 13, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 7, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@prisma/adapter-neon (source) 5.10.2 -> 5.11.0 age adoption passing confidence
@prisma/client (source) 5.10.2 -> 5.11.0 age adoption passing confidence
@trpc/client (source) 10.45.1 -> 10.45.2 age adoption passing confidence
@trpc/next (source) 10.45.1 -> 10.45.2 age adoption passing confidence
@trpc/react-query (source) 10.45.1 -> 10.45.2 age adoption passing confidence
@trpc/server (source) 10.45.1 -> 10.45.2 age adoption passing confidence
@types/node (source) 20.11.25 -> 20.11.27 age adoption passing confidence
@types/react (source) 18.2.64 -> 18.2.65 age adoption passing confidence
@types/react-dom (source) 18.2.20 -> 18.2.22 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 7.1.1 -> 7.2.0 age adoption passing confidence
@typescript-eslint/parser (source) 7.1.1 -> 7.2.0 age adoption passing confidence
chromatic (source) 11.0.4 -> 11.0.8 age adoption passing confidence
dotenv-cli 7.3.0 -> 7.4.1 age adoption passing confidence
eslint-plugin-codegen 0.25.0 -> 0.26.0 age adoption passing confidence
i18next (source) 23.10.0 -> 23.10.1 age adoption passing confidence
prisma (source) 5.10.2 -> 5.11.0 age adoption passing confidence
react-i18next 14.0.8 -> 14.1.0 age adoption passing confidence
type-fest 4.11.1 -> 4.12.0 age adoption passing confidence

Release Notes

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

v5.11.0

Compare Source

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

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

Highlights

Edge function support for Cloudflare and Vercel (Preview)

We’re thrilled to announce that support for edge function deployments with Prisma ORM is now in Preview 🥳 As of this release, you can deploy your apps that are using Prisma ORM to:

  • Vercel Edge Functions and Vercel Edge Middleware
  • Cloudflare Workers and Cloudflare Pages

In order to deploy to an edge function, you’ll need to use a compatible database driver (along with its Prisma driver adapter):

  • Neon Serverless Driver (for PostgreSQL databases hosted via Neon)
  • PlanetScale Serverless Driver (for MySQL databases hosted via PlanetScale)
  • pg driver (for traditional PostgreSQL databases)
  • @libsql/client driver (for SQLite databases hosted via Turso)

Check out our documentation to learn how you can deploy an edge function using any combination of supported edge function provider and database.

You can also read more about it in the announcement blog post!

Performance improvements in nested create operations

With Prisma ORM, you can create multiple new records in nested queries, for example:

const user = await prisma.user.update({
  where: { id: 9 },
  data: {
    name: 'Elliott',
    posts: {
      create: {
        data: [{ title: 'My first post' }, { title: 'My second post' }],
      },
    },
  },
})

In previous versions, Prisma ORM would translate this into multiple SQL INSERT queries, each requiring its own roundtrip to the database. As of this release, these nested create queries are optimized and the INSERT queries are sent to the database in bulk in a single roundtrip. These optimizations apply to one-to-many as well as many-to-many relations.

With this change, using the nested create option to create multiple records effectively becomes equivalent to using a nested createMany operation (except that createMany only works with one-to-many relations, whereas create works both with one-to-many and many-to-many).

Note: Only the deepest nested operation is optimized. If a user specified create (1) -> create (2) -> create (3) in their query, only create (3) will be optimized.

Fixes and improvements

Prisma Client
Prisma Migrate
Prisma Engines
trpc/trpc (@​trpc/client)

v10.45.2

Compare Source

trpc/trpc (@​trpc/next)

v10.45.2

Compare Source

What's Changed

Full Changelog: trpc/trpc@v10.45.1...v10.45.2

trpc/trpc (@​trpc/react-query)

v10.45.2

Compare Source

trpc/trpc (@​trpc/server)

v10.45.2

Compare Source

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v7.2.0

Compare Source

🚀 Features
  • support TS 5.4

  • eslint-plugin: [prefer-string-starts-ends-with] add allowSingleElementEquality option

🩹 Fixes
  • eslint-plugin: expose *-type-checked-only configs for extension

  • eslint-plugin: [member-ordering] report alphabetical sorting for all groups instead of just the first failing group

  • eslint-plugin: [no-var-requires, no-require-imports] support template literal

  • eslint-plugin: [no-useless-template-literals] detect TemplateLiteral

  • eslint-plugin: [no-unnecessary-condition] handle union array and tuple type

  • eslint-plugin: [prefer-find] support ternary branches in prefer-find

❤️ Thank You
  • Arka Pratim Chaudhuri
  • auvred
  • Chris Plummer
  • Fotis Papadogeorgopoulos
  • Josh Goldberg ✨
  • Kirk Waiblinger
  • Wayne Zhang
  • YeonJuan

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v7.2.0

Compare Source

🚀 Features
  • support TS 5.4
❤️ Thank You
  • Arka Pratim Chaudhuri
  • auvred
  • Chris Plummer
  • Fotis Papadogeorgopoulos
  • Josh Goldberg ✨
  • Kirk Waiblinger
  • Wayne Zhang
  • YeonJuan

You can read about our versioning strategy and releases on our website.

chromaui/chromatic-cli (chromatic)

v11.0.8

Compare Source

🐛 Bug Fix
Authors: 1

v11.0.7

Compare Source

🐛 Bug Fix
Authors: 1

v11.0.6

Compare Source

🐛 Bug Fix
Authors: 1

v11.0.5

Compare Source

🐛 Bug Fix
Authors: 1

entropitor/dotenv-cli (dotenv-cli)

v7.4.1

Compare Source

v7.4.0: Release better variable usage (-v)

Compare Source

Releases https://github.com/entropitor/dotenv-cli/pull/105

mmkal/eslint-plugin-codegen (eslint-plugin-codegen)

v0.26.0

Compare Source

i18next/i18next (i18next)

v23.10.1

Compare Source

i18next/react-i18next (react-i18next)

v14.1.0

Compare Source

  • types(Trans): add typechecking on context prop 1732 (might brake if using "internal" Trans or TransProps)
sindresorhus/type-fest (type-fest)

v4.12.0

Compare Source

New types

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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from JoeKarow as a code owner March 7, 2024 01:40
@renovate renovate bot added automerge Enable Kodiak auto-merge dependencies Change in project dependencies. labels Mar 7, 2024
Copy link

vercel bot commented Mar 7, 2024

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

Name Status Preview Comments Updated (UTC)
glaad ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 13, 2024 6:01pm
transmascfutures ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 13, 2024 6:01pm

Copy link

socket-security bot commented Mar 7, 2024

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@prisma/adapter-neon@5.11.0 Transitive: environment, network +4 459 kB prismabot
npm/@prisma/client@5.11.0 environment, filesystem, shell 0 8.44 MB prismabot
npm/@trpc/client@10.45.2 network Transitive: environment +1 967 kB katt
npm/@trpc/next@10.45.2 Transitive: environment, network +5 4.97 MB katt
npm/@trpc/react-query@10.45.2 Transitive: environment, network +4 4.86 MB katt
npm/@trpc/server@10.45.2 environment 0 713 kB katt
npm/@types/react@18.2.65 None +3 1.69 MB types
npm/@typescript-eslint/eslint-plugin@7.2.0 Transitive: environment, eval, filesystem, shell, unsafe +56 13.5 MB jameshenry
npm/@typescript-eslint/parser@7.2.0 Transitive: environment, eval, filesystem, shell, unsafe +51 10.4 MB jameshenry
npm/chromatic@11.0.8 None 0 4.3 MB ghengeveld
npm/dotenv-cli@7.4.1 Transitive: environment, filesystem, shell +3 124 kB entropitor
npm/eslint-plugin-codegen@0.26.0 environment, filesystem, shell Transitive: eval, unsafe +100 26.8 MB mmkale
npm/i18next@23.10.1 None +1 897 kB adrai

🚮 Removed packages: npm/@prisma/adapter-neon@5.10.2, npm/@prisma/client@5.10.2, npm/@trpc/client@10.45.1, npm/@trpc/next@10.45.1, npm/@trpc/react-query@10.45.1, npm/@trpc/server@10.45.1, npm/@types/node@20.11.25, npm/@types/react-dom@18.2.20, npm/@types/react@18.2.64, npm/@typescript-eslint/eslint-plugin@7.1.1, npm/@typescript-eslint/parser@7.1.1, npm/chromatic@11.0.4, npm/dotenv-cli@7.3.0, npm/eslint-plugin-codegen@0.25.0, npm/i18next@23.10.0

View full report↗︎

Copy link

github-actions bot commented Mar 7, 2024

📦 Next.js Bundle Analysis for @weareinreach/glaad

This analysis was generated by the Next.js Bundle Analysis action. 🤖

This PR introduced no changes to the JavaScript bundle! 🙌

Copy link

socket-security bot commented Mar 8, 2024

👍 Dependency issues cleared. Learn more about Socket for GitHub ↗︎

This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored.

View full report↗︎

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@kodiakhq kodiakhq bot merged commit b584f95 into dev Mar 13, 2024
16 checks passed
@kodiakhq kodiakhq bot deleted the renovate/all-minor-patch branch March 13, 2024 18:13
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.

None yet

1 participant