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

chore(deps): Update all non-major dependencies #715

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 16, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nuxt/devtools (source) ^2.0.0 -> ^2.1.0 age adoption passing confidence
@nuxt/eslint (source) ^1.0.1 -> ^1.1.0 age adoption passing confidence
@prisma/client (source) ^6.3.1 -> ^6.4.0 age adoption passing confidence
fast-xml-parser ^4.5.1 -> ^4.5.2 age adoption passing confidence
prisma (source) ^6.3.1 -> ^6.4.0 age adoption passing confidence
protomaps-themes-base ^4.4.0 -> ^4.5.0 age adoption passing confidence

Release Notes

nuxt/devtools (@​nuxt/devtools)

v2.1.0

Compare Source

Bug Fixes
  • hide inspector button when not available (684897f)
Features
  • allow override component inspector with __NUXT_INSPECTOR__ (9f3c8bf)
  • filter out installed modules in search result, closes #​780 (#​786) (fc8ced3)
  • option to disable vueDevTools (3e5251c)
nuxt/eslint (@​nuxt/eslint)

v1.1.0

Compare Source

   🚀 Features
    View changes on GitHub
prisma/prisma (@​prisma/client)

v6.4.0

Compare Source

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

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

Highlights

TypeScript-based configuration with prisma.config.ts (Early Access)

In this release, we're introducing an Early Access version of a TypeScript-based configuration file for Prisma ORM: prisma.config.ts.

This file will serve as a central configuration point for Prisma ORM:

import path from 'node:path'

export default {
  earlyAccess: true, // required while in Early Access

  schema: {
    kind: 'single', // use 'multi' if you're using the `prismaSchemaFolder` preview feature
    filePath: path.join('custom', 'prisma', 'schema.prisma')
  }
  
})

With this file you are able to run any arbitrary code needed to get values required by Prisma ORM, such as database URLs from a secret store or fine-grained control of settings. It needs to live in the current working directory from where you're executing Prisma CLI commands (typically, the root of your project).

Note: If you're using prisma.config.ts, the Prisma CLI will not load environment variables from .env files. If you want to use a .env file with prisma.config.ts, you'll need to load the environment variables manually using the dotenv package (see here).

Learn more about the new prisma.config.ts file in the docs.

Case-insensitive mode in JSON filters

You can now do case-insensitive filtering on JSON data.

Just use the new mode option when filtering using string_contains, string_starts_with or string_ends_with in a JSON object and set it to "insensitive":

await prisma.user.findMany({
  where: {
    pets: {
      path: ['favorites', 'catBreed'],
      string_contains: 'Van',
      mode: "insensitive",
    },
  },
});

The above query returns all users where the favorites.catBreed value contains "Van" or "van".

Thanks to @​lubosmato who implemented this feature 🎉

Improved CockroachDB migration speed

In this release we found some inefficiencies in our migration engine that was impacting CockroachDB migrations. In 6.4.0, CockroachDB migrations should be significantly faster.

Calling all devs: Give us your feedback!

Prisma ORM's community keeps us going. To make sure that we're focused on what the community needs, we would like to get your feedback via our online feedback form.

Credits

Huge thanks to @​lubosmato, @​notomo, @​Mayureshd-18, @​mydea, @​omar-dulaimi and @​Hazmi35 for helping out with this release!

NaturalIntelligence/fast-xml-parser (fast-xml-parser)

v4.5.2

Compare Source

protomaps/basemaps (protomaps-themes-base)

v4.5.0

Compare Source


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 force-pushed the renovate/all-minor-patch branch 4 times, most recently from ae10c09 to 18984c4 Compare February 17, 2025 11:48
@renovate renovate bot changed the title chore(deps): Update devDependency @nuxt/devtools to ^2.1.0 chore(deps): Update all non-major dependencies Feb 17, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 6b763e4 to 12d5036 Compare February 18, 2025 16:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 12d5036 to 5ae3c1b Compare February 18, 2025 19:35
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.

1 participant