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

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 10, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@prisma/client (source) 6.3.0 -> 6.4.1 age adoption passing confidence dependencies minor
@swc/core (source) 1.10.12 -> 1.11.1 age adoption passing confidence devDependencies minor
@types/bun (source) 1.2.1 -> 1.2.4 age adoption passing confidence devDependencies patch
@types/node (source) 22.12.0 -> 22.13.5 age adoption passing confidence devDependencies minor
akhileshns/heroku-deploy v3.12.14 -> v3.14.15 age adoption passing confidence action minor
bullmq (source) 5.39.1 -> 5.41.6 age adoption passing confidence dependencies minor
discord.js (source) 14.17.3 -> 14.18.0 age adoption passing confidence dependencies minor
ioredis 5.4.2 -> 5.5.0 age adoption passing confidence dependencies minor
node (source) 20.10.0 -> 20.18.3 age adoption passing confidence engines minor
prettier (source) 3.4.2 -> 3.5.2 age adoption passing confidence devDependencies minor
prisma (source) 6.3.0 -> 6.4.1 age adoption passing confidence dependencies minor

Release Notes

prisma/prisma (@​prisma/client)

v6.4.1

Compare Source

Today, we are issuing the 6.4.1 patch release. It fixes a few issues with the NPS survey and makes it respect the --no-hints CLI flag.

Fixes

Prisma CLI

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!

v6.3.1

Compare Source

This patch releases introduces improvements to the prisma init output when invoked to with the --db option.

Run npx prisma@latest init --db to get an instant Prisma Postgres database.

swc-project/swc (@​swc/core)

v1.11.1

Compare Source

Bug Fixes
Documentation
Features
Miscellaneous Tasks
Performance
Refactor

v1.10.18

Compare Source

Bug Fixes
Miscellaneous Tasks
  • (es/minifier) Make minify-all example ignore parsing errors (#​10045) (6c7ec46)
Build

v1.10.17

Compare Source

Bug Fixes
Performance
Testing

v1.10.16

Compare Source

Bug Fixes
  • (es/minifier) Check assign target before merge assign cond (#​10020) (6dab49a)

  • (es/parser) Preserve comment positions with leading semicolon (#​10019) (c9937b6)

  • (swc_common) Fix panic with non-narrow chars with width != 2 (#​10011) (f9f4cac)

  • (ts/fast-strip) Handle unsupported module keyword (#​10022) (308f5d0)

Performance

v1.10.15

Compare Source

Bug Fixes
Features
Performance

v1.10.14

Compare Source

Bug Fixes
Features
Performance
akhileshns/heroku-deploy (akhileshns/heroku-deploy)

v3.14.15

Compare Source

  • Fix stack issue (courtesy of @​sstepanchuk)
  • Add dotenv dependency (courtesy of @​sstepanchuk)
  • Update documentation to more precisely mention that the heroku cli must be installed

v3.13.15

Compare Source

Updated node version to "node20" (as "node18" is not supported by GitHub Actions)

v3.13.14

Compare Source

Updated node version from 16 to 18 (as 16 is causing problems due to deprecation)

taskforcesh/bullmq (bullmq)

v5.41.6

Compare Source

Bug Fixes
  • flow: consider delayed state when moving a parent to failed (#​3112) (6a28b86)
  • telemetry: fix span name for moveToFailed logic (#​3113) (7a4b500)

v5.41.5

Compare Source

Bug Fixes
  • job-scheduler: consider removing current job from wait, paused or prioritized (#​3066) (97cd2b1)

v5.41.4

Compare Source

Performance Improvements
  • delayed: add marker once when promoting delayed jobs (#​3096) (python) (38912fb)

v5.41.3

Compare Source

Bug Fixes
  • worker: do not execute run method when no processor is defined when resuming (#​3089) (4a66933)

v5.41.2

Compare Source

Bug Fixes

v5.41.1

Compare Source

Bug Fixes

v5.41.0

Compare Source

Features
Performance Improvements
  • add-job: add job into wait or prioritized state when delay is provided as 0 (#​3052) (3e990eb)

v5.40.5

Compare Source

Bug Fixes

v5.40.4

Compare Source

Bug Fixes

v5.40.3

Compare Source

Bug Fixes

v5.40.2

Compare Source

Bug Fixes
  • fix return type of getNextJob (b970281)

v5.40.1

Compare Source

Bug Fixes
  • worker: wait fetched jobs to be processed when closing (#​3059) (d4de2f5)

v5.40.0

Compare Source

Features
  • job-scheduler: revert add delayed job and update in the same script (9f0f1ba)

v5.39.2

Compare Source

Bug Fixes
  • worker: evaluate if a job needs to be fetched when moving to failed (#​3043) (406e21c)
discordjs/discord.js (discord.js)

v14.18.0

Compare Source

Bug Fixes

Documentation

Features

Refactor

Styling

Typings

luin/ioredis (ioredis)

v5.5.0

Compare Source

Features

5.4.2 (2024-12-20)

Bug Fixes

5.4.1 (2024-04-17)

Bug Fixes
nodejs/node (node)

v20.18.3: 2025-02-10, Version 20.18.3 'Iron' (LTS), @​marco-ippolito

Compare Source

Notable Changes
Commits

Configuration

📅 Schedule: Branch creation - "before 6pm every weekday" in timezone Asia/Kolkata, Automerge - "after 9pm every weekday" in timezone Asia/Kolkata.

🚦 Automerge: Enabled.

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 requested a review from EvolutionX-10 as a code owner December 10, 2023 18:44
@renovate renovate bot added Dependencies: Patch Patch fix to dependencies the Project depends on Type: Dependencies All PRs related to dependencies labels Dec 10, 2023
renovate-approve[bot]
renovate-approve bot previously approved these changes Dec 10, 2023
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Dec 10, 2023
@renovate renovate bot changed the title chore(deps): update dependency prettier to v3.1.1 chore(deps): update all non-major dependencies Dec 11, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from d9487fa to a4bdf01 Compare December 16, 2023 02:03
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Dec 16, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 5af834e to 5451adf Compare December 24, 2023 07:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 4203947 to 9554fc5 Compare December 31, 2023 14:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from fb09246 to 7367518 Compare January 6, 2024 02:05
renovate-approve[bot]
renovate-approve bot previously approved these changes Feb 21, 2025
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Feb 21, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1392351 to c5e0c4e Compare February 21, 2025 22:33
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Feb 21, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Feb 21, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c5e0c4e to 65fb940 Compare February 22, 2025 07:05
renovate-approve[bot]
renovate-approve bot previously approved these changes Feb 22, 2025
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Feb 22, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 65fb940 to 52423dc Compare February 22, 2025 10:56
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Feb 22, 2025
renovate-approve[bot]
renovate-approve bot previously approved these changes Feb 22, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 52423dc to e2dacc8 Compare February 24, 2025 16:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e2dacc8 to ec1058f Compare February 25, 2025 06:22
renovate-approve[bot]
renovate-approve bot previously approved these changes Feb 25, 2025
renovate-approve-2[bot]
renovate-approve-2 bot previously approved these changes Feb 25, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ec1058f to 6c20da3 Compare February 25, 2025 23:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6c20da3 to d0d99e0 Compare February 26, 2025 15:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Dependencies: Patch Patch fix to dependencies the Project depends on Type: Dependencies All PRs related to dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants