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(eslint-config-custom-next): update minor dependencies #135

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 9, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@next/eslint-plugin-next (source) 14.1.0 -> 14.2.4 age adoption passing confidence
@prisma/client (source) 5.9.1 -> 5.16.1 age adoption passing confidence
@t3-oss/env-nextjs (source) 0.8.0 -> 0.10.1 age adoption passing confidence
@types/node (source) 18.19.14 -> 18.19.39 age adoption passing confidence
@types/react (source) 18.2.52 -> 18.3.3 age adoption passing confidence
@types/react-dom (source) 18.2.18 -> 18.3.0 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 7.0.1 -> 7.15.0 age adoption passing confidence
@typescript-eslint/parser (source) 7.0.1 -> 7.15.0 age adoption passing confidence
@vercel/analytics (source) 1.1.2 -> 1.3.1 age adoption passing confidence
clsx 2.1.0 -> 2.1.1 age adoption passing confidence
eslint (source) 8.56.0 -> 8.57.0 age adoption passing confidence
eslint-config-next (source) 14.1.0 -> 14.2.4 age adoption passing confidence
eslint-plugin-jsx-a11y 6.8.0 -> 6.9.0 age adoption passing confidence
eslint-plugin-react 7.33.2 -> 7.34.3 age adoption passing confidence
eslint-plugin-react-hooks (source) 4.6.0 -> 4.6.2 age adoption passing confidence
eslint-plugin-storybook 0.6.15 -> 0.8.0 age adoption passing confidence
eslint-plugin-tailwindcss 3.14.1 -> 3.17.4 age adoption passing confidence
framer-motion 11.0.3 -> 11.2.12 age adoption passing confidence
lucide-react (source) 0.321.0 -> 0.400.0 age adoption passing confidence
next (source) 14.1.0 -> 14.2.4 age adoption passing confidence
next-themes 0.2.1 -> 0.3.0 age adoption passing confidence
pnpm (source) 9.0.4 -> 9.4.0 age adoption passing confidence
prisma (source) 5.9.1 -> 5.16.1 age adoption passing confidence
react (source) 18.2.0 -> 18.3.1 age adoption passing confidence
react-dom (source) 18.2.0 -> 18.3.1 age adoption passing confidence
react-icons 5.0.1 -> 5.2.1 age adoption passing confidence
tailwind-merge 2.2.1 -> 2.3.0 age adoption passing confidence
tailwind-variants 0.1.20 -> 0.2.1 age adoption passing confidence
typescript (source) 5.3.3 -> 5.5.3 age adoption passing confidence
zod (source) 3.22.4 -> 3.23.8 age adoption passing confidence

Release Notes

vercel/next.js (@​next/eslint-plugin-next)

v14.2.4

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
  • fix: ensure route handlers properly track dynamic access (#​66446)
  • fix NextRequest proxy in edge runtime (#​66551)
  • Fix next/dynamic with babel and src dir (#​65177)
  • Use vercel deployment url for metadataBase fallbacks (#​65089)
  • fix(next/image): detect react@19 for fetchPriority prop (#​65235)
  • Fix loading navigation with metadata and prefetch (#​66447)
  • prevent duplicate RSC fetch when action redirects (#​66620)
  • ensure router cache updates reference the latest cache values (#​66681)
  • Prevent append of trailing slash in cases where path ends with a file extension (#​66636)
  • Fix inconsistency with 404 getStaticProps cache-control (#​66674)
  • Use addDependency to track metadata route file changes (#​66714)
  • Add timeout/retry handling for fetch cache (#​66652)
  • fix: app-router prefetch crash when an invalid URL is passed to Link (#​66755)
Credits

Huge thanks to @​ztanner, @​ijjk, @​wbinnssmith, @​huozhi, and @​lubieowoce for helping!

v14.2.3

Compare Source

v14.2.2

Compare Source

v14.2.1

Compare Source

v14.2.0

Compare Source

v14.1.4

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
Test Changes

v14.1.3

Compare Source

v14.1.2

Compare Source

Note: this is a backport release for critical bug fixes -- this does not include all pending features/changes on canary

Core Changes
  • Fix sitemap generateSitemaps support for string id (#​61088)
  • Fix: generateSitemaps in production giving 404 (#​62212)
  • Fix redirect under suspense boundary with basePath (#​62597)
  • Fix: Add stricter check for "use server" exports (#​62821)
  • ensure server action errors notify rejection handlers (#​61588)
  • make router restore action resilient to a missing tree (#​62098)
  • build: remove sentry from the externals list #​61194
  • Reduce memory/cache overhead from over loader processing #​62005
Credits

Huge thanks to @​huozhi, @​shuding, @​Ethan-Arrowood, @​styfle, @​ijjk, @​ztanner, @​balazsorban44, @​kdy1, and @​williamli for helping!

v14.1.1

Compare Source

Note: this is a backport release for critical bug fixes -- this does not include all pending features/changes on canary

Core Changes
Credits

Huge thanks to @​huozhi, @​shuding, @​Ethan-Arrowood, @​styfle, @​ijjk, @​ztanner, @​balazsorban44, @​kdy1, and @​williamli for helping!

prisma/prisma (@​prisma/client)

v5.16.1

Compare Source

Today, we are issuing the 5.16.1 patch release to fix an issue in Prisma client.

Fix in Prisma Client

v5.16.0

Compare Source

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

Highlights
Omit model fields globally

With Prisma ORM 5.16.0 we’re more than happy to announce that we’re expanding the omitApi Preview feature to also include the ability to omit fields globally.

When the Preview feature is enabled, you’re able to define fields to omit when instantiating Prisma Client.

const prisma = new PrismaClient({
  omit: {
    user: {
      // make sure that password is never queried.
      password: true,
    },
  },
});

You’re also able to omit fields from multiple models and multiple fields from the same model

const prisma = new PrismaClient({
  omit: {
    user: { 
      // make sure that password and internalId are never queried.
      password: true,
      internalId: true,
    },
    post: {
      secretkey: true,
    },
  },
});

With both local and global omit, you now have the flexibility to completely remove sensitive fields while also tailoring individual queries. If you need the ability to generally omit a field except in a specific query, you can also overwrite a global omit locally

const prisma = new PrismaClient({
  omit: {
    user: { 
      // password is omitted globally.
      password: true,
    },
  },
});

const userWithPassword = await prisma.user.findUnique({
  omit: { password: false }, // omit now false, so password is returned
  where: { id: 1 },
});
Changes to prismaSchemaFolder

In 5.15.0 we released the prismaSchemaFolder Preview feature, allowing you to create multiple Prisma Schema files in a prisma/schema directory. We’ve gotten a lot of great feedback and are really excited with how the community has been using the feature.

To continue improving our multi-file schema support, we have a few breaking changes to the prismaSchemaFolder feature:

  • When using relative paths in Prisma Schema files with the prismaSchemaFolder feature, a path is now relative to the file it is defined in rather than relative to the prisma/schema folder. This means that if you have a generator block in /project/prisma/schema/config/generator.prisma with an output of ./foo the output will be resolved to /project/prisma/schema/config/foo rather than /project/prisma/foo. The path to a SQLite file will be resolved in the same manner.
  • We realized that during migration many people would have prisma/schema as well as prisma/schema.prisma. Our initial implementation looked for a .prisma file first and would ignore the schema folder if it exists. This is now an error.
Changes to fullTextSearch

In order to improve our full-text search implementation we have made a breaking change to the fullTextSearch Preview feature.

Previously, when the feature was enabled we updated the <Model>OrderByWithRelationInput TypeScript type with the <Model>OrderByWithRelationAndSearchRelevanceInput type. However, we have noted that there are no cases where relational ordering is needed but search relevance is not. Thus, we have decided to remove the <Model>OrderByWithRelationAndSearchRelevanceInput naming and only use the <Model>OrderByWithRelationInput naming.

Fixes and improvements
Prisma
Language tools (e.g. VS Code)
Prisma Engines
Credits

Huge thanks to @​key-moon, @​pranayat, @​yubrot, @​skyzh, @​brian-dlee, @​mydea, @​nickcarnival, @​eruditmorina, @​nzakas, @​gutyerrez, @​avallete, @​ceddy4395, @​Kayoshi-dev, @​yehonatanz for helping!

v5.15.1

Compare Source

Today, we are issuing the 5.15.1 patch release.

Fixes in Prisma Client

v5.15.0

Compare Source

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

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

Highlights
Multi-File Prisma Schema support

Prisma ORM 5.15.0 features support for multi-file Prisma Schema in Preview.

This closes a long standing issue and does so in a clean and easy to migrate way.

To get started:

  1. Enable the prismaSchemaFolder Preview feature by including it in the previewFeatures field of your generator.
    datasource db {
      provider = "postgresql"
      url      = env("DATABASE_URL")
    }
    
    generator client {
      provider        = "prisma-client-js"
      previewFeatures = ["prismaSchemaFolder"]
    }
    
  2. Create a schema subdirectory under your prisma directory.
  3. Move your schema.prisma into this directory.

You are now set up with a multi-file Prisma Schema! Add as many or as few .prisma files to the new prisma/schema directory.

When running commands where a Prisma Schema file is expected to be provided, you can now define a Prisma Schema directory. This includes Prisma CLI commands that use the --schema option as well as defining schema via package.json

Our tooling has also been updated to handle multiple Prisma Schema files. This includes our Visual Studio Code extension and tools like database introspection, which will deposit new models in a introspected.prisma file. Existing models will be updated in the file they are found.

To learn more, please refer to our official documentation and announcement blog post. If you try out prismaSchemaFolder, please let us know!

Interesting Bug Fixes
Fix for PostgreSQL prepared statement caching for raw queries

This release fixes a nasty bug with the caching of prepared statements in raw Prisma Client queries that affected PostgreSQL when you ran the same SQL statement with differently typed paramters. This should not fail any more.

Fix for SQL Server introspection of (deprecated) CREATE DEFAULT

Our Introspection logic crashed on encountering certain multi-line CREATE DEFAULT, a deprecated way to define defaults in SQL Server. As many SQL Server users are working with established databases, this happened frequently enough that we now explicitly ignore these defaults instead of crashing.

Fix for Cloudflare D1’s lower parameter limit

Cloudflare’s D1 has a lower parameter limit than local SQLite, which caused bigger queries to fail. We adapted that limit to the D1 default for @prisma/adapter-d1, which will avoid such failures.

Fix for Cloudflare D1’s different PRAGMA support

Our generated migration SQL for SQLite did not always work for Cloudflare D1, because of differences in the supported pragmas. We adapted the SQL to work in both local SQLite and Cloudflare D1.

Fixes and improvements
Prisma Migrate
Prisma Client
Language tools (e.g. VS Code)
Credits

Huge thanks to @​pranayat, @​yubrot, and @​skyzh for helping!

v5.14.0

Compare Source

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

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

Highlights
Share your feedback about Prisma ORM

We want to know how you like working with Prisma ORM in your projects! Please take our 2min survey and let us know what you like or where we can improve 🙏

createManyAndReturn()

We’re happy to announce the availability of a new, top-level Prisma Client query: createManyAndReturn(). It works similarly to createMany() but uses a RETURNING clause in the SQL query to retrieve the records that were just created.

Here’s an example of creating multiple posts and then immediately returning those posts.

const postBodies = req.json()['posts']

const posts = prisma.post.createManyAndReturn({
	data: postBodies
});

return posts

Additionally,createManyAndReturn() supports the same options as findMany(), such as the ability to return only specific fields.

const postBodies = req.json()['posts']

const postTitles = prisma.post.createManyAndReturn({
	data: postBodies,
	select: {
	  title: true,
	},
});

return postTitles

Note: Because createManyAndReturn() uses the RETURNING clause, it is only supported by PostgreSQL, CockroachDB, and SQLite databases. At this time, relationLoadStrategy: join is not supported in createManyAndReturn() queries.

MongoDB performance improvements

Previously, Prisma ORM suffered from performance issues when using the in operator or when including related models in queries against a MongoDB database. These queries were translated by the Prisma query engine in such a way that indexes were skipped and collection scans were used, leading to slower queries especially on large datasets.

With 5.14.0, Prisma ORM now rewrites queries to use a combination of $or and $eq operators, leading to dramatic performance increases for queries that include in operators or relation loading.

Fixes and improvements
Prisma Client
Prisma Migrate
Language tools (e.g. VS Code)
Company news
Prisma Changelog

Curious about all things Prisma? Be sure to check out the Prisma Changelog for updates across Prisma's products, including ORM, Accelerate, and Pulse!

Credits

Huge thanks to @​pranayat, @​yubrot, @​skyzh, @​anuraaga, @​gutyerrez, @​avallete, @​ceddy4395, @​Kayoshi-dev for helping!

v5.13.0

Compare Source

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

🌟 **Help us spread the word about Prisma by starring the repo or [posting on X](https://twitter.com/in


Configuration

📅 Schedule: Branch creation - "after 10pm every weekend,before 5am every weekend" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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.

Copy link

vercel bot commented Feb 9, 2024

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

Name Status Preview Comments Updated (UTC)
space-inder-web ❌ Failed (Inspect) Jul 1, 2024 9:30pm

@renovate renovate bot force-pushed the renovate/minor-dependencies branch from d6433ba to c95ea83 Compare February 9, 2024 18:58
@renovate renovate bot force-pushed the renovate/minor-dependencies branch from c95ea83 to cbc7404 Compare February 9, 2024 21:35
@renovate renovate bot force-pushed the renovate/minor-dependencies branch from cbc7404 to c40e8e6 Compare February 11, 2024 03:36
@renovate renovate bot force-pushed the renovate/minor-dependencies branch from c40e8e6 to d2566f9 Compare February 11, 2024 18:51
@renovate renovate bot force-pushed the renovate/minor-dependencies branch from d2566f9 to 41b5c87 Compare February 12, 2024 01:12
@renovate renovate bot force-pushed the renovate/minor-dependencies branch from 41b5c87 to 03b0670 Compare February 12, 2024 18:15
@renovate renovate bot force-pushed the renovate/minor-dependencies branch from 03b0670 to 3ee14e8 Compare February 13, 2024 01:19
@renovate renovate bot force-pushed the renovate/minor-dependencies branch from 3ee14e8 to 85221c2 Compare February 13, 2024 17:18
@renovate renovate bot force-pushed the renovate/minor-dependencies branch from 85221c2 to 38561a6 Compare February 15, 2024 10:23
@renovate renovate bot force-pushed the renovate/minor-dependencies branch from 38561a6 to 96e99c2 Compare February 15, 2024 13:40
@renovate renovate bot force-pushed the renovate/minor-dependencies branch from 96e99c2 to 0e3d06c Compare February 15, 2024 22:44
@renovate renovate bot force-pushed the renovate/minor-dependencies branch from 0e3d06c to 99adf8a Compare February 16, 2024 13:33
@renovate renovate bot force-pushed the renovate/minor-dependencies branch from 99adf8a to 15390a4 Compare February 16, 2024 18:04
@renovate renovate bot force-pushed the renovate/minor-dependencies branch from 15390a4 to 9ba8009 Compare February 16, 2024 22:07
@renovate renovate bot force-pushed the renovate/minor-dependencies branch from ad67f45 to 2e4c367 Compare June 21, 2024 13:16
@renovate renovate bot force-pushed the renovate/minor-dependencies branch from 2e4c367 to c60000c Compare June 21, 2024 18:37
@renovate renovate bot force-pushed the renovate/minor-dependencies branch from c60000c to b51dab1 Compare June 21, 2024 21:39
@renovate renovate bot force-pushed the renovate/minor-dependencies branch from b51dab1 to 19a12c6 Compare June 22, 2024 11:10
@renovate renovate bot force-pushed the renovate/minor-dependencies branch from 19a12c6 to 4534d25 Compare June 24, 2024 18:18
@renovate renovate bot force-pushed the renovate/minor-dependencies branch from 4534d25 to 8007965 Compare June 24, 2024 21:25
@renovate renovate bot force-pushed the renovate/minor-dependencies branch from 8007965 to 66317f6 Compare June 25, 2024 08:16
@renovate renovate bot force-pushed the renovate/minor-dependencies branch from 66317f6 to 25a2f09 Compare June 25, 2024 15:47
@renovate renovate bot force-pushed the renovate/minor-dependencies branch from 25a2f09 to 0fec706 Compare June 26, 2024 10:01
@renovate renovate bot force-pushed the renovate/minor-dependencies branch from 0fec706 to cc43fc9 Compare June 27, 2024 14:17
@renovate renovate bot force-pushed the renovate/minor-dependencies branch from cc43fc9 to bcf7753 Compare June 28, 2024 09:18
@renovate renovate bot force-pushed the renovate/minor-dependencies branch from bcf7753 to 900fc53 Compare June 28, 2024 22:59
@renovate renovate bot force-pushed the renovate/minor-dependencies branch from 900fc53 to 6e06f0d Compare July 1, 2024 18:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants