Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 18, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@prisma/client (source) ^6.19.0 -> ^6.19.1 age adoption passing confidence dependencies patch
@types/bun (source) ^1.3.2 -> ^1.3.5 age adoption passing confidence devDependencies patch
actions/checkout v5.0.0 -> v5.0.1 age adoption passing confidence action patch
better-dx ^0.2.3 -> ^0.2.5 age adoption passing confidence devDependencies patch
better-sqlite3 ^12.4.1 -> ^12.5.0 age adoption passing confidence dependencies minor
drizzle-orm (source) ^0.44.7 -> ^0.45.1 age adoption passing confidence dependencies minor
kysely (source) ^0.28.8 -> ^0.28.9 age adoption passing confidence dependencies patch
prisma (source) ^7.1.0 -> ^7.2.0 age adoption passing confidence dependencies minor
shivammathur/setup-php 2.35.5 -> 2.36.0 age adoption passing confidence action minor
typeorm (source) ^0.3.27 -> ^0.3.28 age adoption passing confidence dependencies patch

Release Notes

prisma/prisma (@​prisma/client)

v6.19.1

Compare Source

actions/checkout (actions/checkout)

v5.0.1

Compare Source

What's Changed

Full Changelog: actions/checkout@v5...v5.0.1

stacksjs/development (better-dx)

v0.2.5

Compare Source

No significant changes

    View changes on GitHub

v0.2.4

Compare Source

No significant changes

    View changes on GitHub
WiseLibs/better-sqlite3 (better-sqlite3)

v12.5.0

Compare Source

What's Changed

  • Update SQLite to version 3.51.1 in #​1424

Full Changelog: WiseLibs/better-sqlite3@v12.4.6...v12.5.0

v12.4.6

Compare Source

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v12.4.5...v12.4.6

v12.4.5

Compare Source

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v12.4.4...v12.4.5

drizzle-team/drizzle-orm (drizzle-orm)

v0.45.1

Compare Source

  • Fixed pg-native Pool detection in node-postgres transactions breaking in environments with forbidden require() (#​5107)

v0.45.0

Compare Source

  • Fixed pg-native Pool detection in node-postgres transactions
  • Allowed subqueries in select fields
  • Updated typo algorythm => algorithm
  • Fixed $onUpdate not handling SQL values (fixes #​2388, tests implemented by L-Mario564 in #​2911)
  • Fixed pg mappers not handling Date instances in bun-sql:postgresql driver responses for date, timestamp types (fixes #​4493)
kysely-org/kysely (kysely)

v0.28.9: 0.28.9

Compare Source

Hey 👋

A small batch of bug fixes. Please report any issues. 🤞😰🤞

🚀 Features

🐞 Bugfixes

PostgreSQL 🐘

📖 Documentation

📦 CICD & Tooling

⚠️ Breaking Changes

🐤 New Contributors

Full Changelog: kysely-org/kysely@v0.28.8...v0.28.9

prisma/prisma (prisma)

v7.2.0

Compare Source

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

🌟 Star this repo for notifications about new releases, bug fixes & features — or follow us on X!

Highlights
ORM
  • #​28830: feat: add sqlcommenter-query-insights plugin
    • Adds a new SQL commenter plugin to support query insights metadata.
  • #​28860: feat(migrate): add -url param for db pull, db push, migrate dev
    • Adds a -url flag to key migrate commands to make connection configuration more flexible.
  • #​28895: feat(config): allow undefined URLs in e.g. prisma generate
    • Allows certain workflows (such as prisma generate) to proceed even when URLs are undefined.
  • #​28903: feat(cli): customize prisma init based on the JS runtime (Bun vs others)
    • Makes prisma init tailor generated setup depending on whether the runtime is Bun or another JavaScript runtime.
  • #​28846: fix(client-engine-runtime): make DataMapperError a UserFacingError
    • Ensures DataMapperError is surfaced as a user-facing error for clearer, more actionable error reporting.
  • #​28849: fix(adapter-{pg,neon,ppg}): handle 22P02 error in Postgres
    • Improves Postgres adapter error handling for invalid-text-representation errors (22P02).
  • #​28913: fix: fix byte upserts by removing legacy byte array representation
    • Fixes byte upsert behavior by removing a legacy byte-array representation path.
  • #​28535: fix(client,internals,migrate,generator-helper): handle multibyte UTF-8 characters split across chunk boundaries in byline
    • Prevents issues when multibyte UTF-8 characters are split across chunk boundaries during line processing.
  • #​28911: fix(cli): make prisma version --json emit JSON only to stdout
    • Ensures machine-readable JSON output is emitted cleanly to stdout without extra noise.
VS Code Extension
  • #​1950: fix: TML-1670 studio connections
    • Resolves issues related to Studio connections, improving reliability for VS Code or language-server integrations.
  • #​1953: chore(vscode): bump @​prisma/dev, use its daemon
    • Bumps the @prisma/dev dependency for the VS Code extension and updates it to use its daemon for better performance and tooling integration.
Open roles at Prisma

Interested in joining Prisma? We’re growing and have several exciting opportunities across the company for developers who are passionate about building with Prisma. Explore our open positions on our [Careers page](https://www.prisma.io/careers#current) and find the role that’s right for you.

Enterprise support

Thousands of teams use Prisma and many of them already tap into our Enterprise & Agency Support Program for hands-on help with everything from schema integrations and performance tuning to security and compliance.

With this program you also get priority issue triage and bug fixes, expert scalability advice, and custom training so that your Prisma-powered apps stay rock-solid at any scale. Learn more or join: https://prisma.io/enterprise.

shivammathur/setup-php (shivammathur/setup-php)

v2.36.0

Compare Source

Changelog
  • Added support for PHP 8.5 stable release.
- name: Setup PHP 8.5 (stable)
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.5'
  • Added support for PHP 8.6.0-dev. Specifying 8.6 in the php-version input should now set up a nightly build from the master branch of php-src. (#​1002)
- name: Setup PHP 8.6.0-dev
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.6'
  • Added support for pdo_ibm and ibm_db2 extensions.
- name: Setup PHP with pdo_ibm and ibm_db2 extensions
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.5'
    extensions: pdo_ibm, ibm_db2
  • Added support to install blackfire extension on PHP 8.5.
- name: Setup PHP with blackfire extension
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.5'
    extensions: blackfire
  • Improved support to detect the required libraries when building from source for common extensions. For example installing gnupg from source would install the required libgpgme library automatically. (#​1021)
- name: Setup PHP with amqp extension
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.5'
    extensions: gnupg-1.5.4
  • Improved support for symfony-cli. It should now correctly set up the requested version. (#​1008)
- name: Setup PHP with symfony-cli
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.5'
    tools: symfony-cli:5.16.0
  • Improved support for relay extension. Also added support to install the nightly version of the extension. (#​1011, #​1012)

  • Improved installing PHP on macOS. Also fixed installing PHP on macos-15-intel GitHub runner. (#​1029)

  • Improved support for deb822 format sources files on Linux. It should now set up the sources files in deb822 format on Ubuntu 24.04, Debian 13, and newer. It would automatically switch the format as well for the repositories added by the action to the new format when supported. (#​1027)

  • Improved support for installing pdo_oci. (#​1028)

  • Fixed installing gearman extension for PHP 5.6 and 7.0 on Linux.

  • Fixed an edge case in tools setup to fall back to the latest version. (#​1024)

  • Fixed support to build extensions with uppercase names from PECL. (#​1017)

  • Fixed warning on redis setup on macOS after formula rename. (shivammathur/homebrew-extensions#5413)

  • Fixed fallback link for composer setup. (#​1025)

  • Updated the link for flex documentation in README. (#​1020)

  • Updated Node.js dependencies.

Thanks @​shyim, @​tillkruss, and @​nicolas-grekas for the contributions 🎉

Thanks @​JetBrainsOfficial and @​cachewerk for the sponsorship ❤️

For the complete list of changes, please refer to the Full Changelog

Follow for updates

setup-php reddit setup-php twitter setup-php status

typeorm/typeorm (typeorm)

v0.3.28

Compare Source

Bug Fixes
Features

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 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 was generated by Mend Renovate. View the repository job log.

@netlify
Copy link

netlify bot commented Dec 18, 2025

Deploy Preview for bun-query-builder failed. Why did it fail? →

Name Link
🔨 Latest commit 5230355
🔍 Latest deploy log https://app.netlify.com/projects/bun-query-builder/deploys/694450f28df895000825613d

@pkg-pr-new
Copy link

pkg-pr-new bot commented Dec 18, 2025

Open in StackBlitz

npm i https://pkg.pr.new/stacksjs/bun-query-builder@464

commit: 5230355

@chrisbbreuer
Copy link
Member

🤖 Auto-closing obsolete PR

This PR was automatically closed because the dependency files it references are no longer present in the project.

Removed files:

  • [Age](https://docs.renovatebot.com/merge-confidence/)
  • ![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@prisma%2fclient/6.19.0/6.19.1?slim=true)
  • [@types/bun](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/bun) ([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/bun))
  • ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fbun/1.3.2/1.3.5?slim=true)
  • ![age](https://developer.mend.io/api/mc/badges/age/npm/better-dx/0.2.5?slim=true)
  • ![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/better-sqlite3/12.5.0?slim=true)
  • ![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/drizzle-orm/0.44.7/0.45.1?slim=true)
  • [kysely](https://kysely.dev) ([source](https://redirect.github.com/kysely-org/kysely))
  • ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/kysely/0.28.8/0.28.9?slim=true)
  • [^7.1.0->^7.2.0](https://renovatebot.com/diffs/npm/prisma/7.1.0/7.2.0)
  • ![age](https://developer.mend.io/api/mc/badges/age/github-tags/shivammathur%2fsetup-php/2.36.0?slim=true)
  • ![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/typeorm/0.3.28?slim=true)
  • `---

Release Notes

prisma/prisma (@​prisma/client)

v6.19.1

Compare Source

actions/checkout (actions/checkout)

v5.0.1

Compare Source

What's Changed

Full Changelog: actions/checkout@v5...v5.0.1

stacksjs/development (better-dx)

v0.2.5

Compare Source

No significant changes

    View changes on GitHub

v0.2.4

Compare Source

No significant changes

    View changes on GitHub
WiseLibs/better-sqlite3 (better-sqlite3)

v12.5.0

Compare Source

What's Changed

  • Update SQLite to version 3.51.1 in #​1424

Full Changelog: WiseLibs/better-sqlite3@v12.4.6...v12.5.0

v12.4.6

Compare Source

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v12.4.5...v12.4.6

v12.4.5

Compare Source

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v12.4.4...v12.4.5

drizzle-team/drizzle-orm (drizzle-orm)

v0.45.1

Compare Source

  • Fixed pg-native Pool detection in node-postgres transactions breaking in environments with forbidden require() (#​5107)

v0.45.0

Compare Source

  • Fixed pg-native Pool detection in node-postgres transactions
  • Allowed subqueries in select fields
  • Updated typo algorythm => algorithm
  • Fixed $onUpdate not handling SQL values (fixes #​2388, tests implemented by L-Mario564 in #​2911)
  • Fixed pg mappers not handling Date instances in bun-sql:postgresql driver responses for date, timestamp types (fixes #​4493)
kysely-org/kysely (kysely)

v0.28.9: 0.28.9

Compare Source

Hey 👋

A small batch of bug fixes. Please report any issues. 🤞😰🤞

🚀 Features

🐞 Bugfixes

PostgreSQL 🐘
  • fix: withSchema not applying for delete query using clause. by @​igalklebanov in #​1648
  • fix: withSchema adds schema to for update`

If this was closed in error, please reopen the PR and update the dependency files accordingly.

@github-actions github-actions bot deleted the renovate/all-minor-patch branch December 18, 2025 19:11
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.

2 participants