Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 3, 2025

Note

Mend has cancelled the proposed renaming of the Renovate GitHub app being renamed to mend[bot].

This notice will be removed on 2025-10-07.


This PR contains the following updates:

Package Change Age Confidence
@libsql/client (source) ^0.14.0 -> ^0.15.0 age confidence
@modelcontextprotocol/inspector ^0.16.7 -> ^0.17.0 age confidence
drizzle-kit (source) ^0.30.2 -> ^0.31.0 age confidence
drizzle-orm (source) ^0.40.0 -> ^0.44.0 age confidence
drizzle-orm (source) ^0.40.1 -> ^0.44.0 age confidence
pnpm (source) 10.17.1 -> 10.18.0 age confidence
pnpm (source) 10.17.1 -> 10.18.0 age confidence
tsdown ^0.11.9 -> ^0.15.0 age confidence

Release Notes

libsql/libsql-client-ts (@​libsql/client)

v0.15.15

Compare Source

v0.15.14

Compare Source

v0.15.13

Compare Source

v0.15.12

Compare Source

v0.15.11

Compare Source

v0.15.10

Compare Source

  • Bump to latest libsql package.

v0.15.9

Compare Source

  • Bump to latest libsql package.

v0.15.8

Compare Source

v0.15.7

Compare Source

  • Bump to latest libsql package.

v0.15.6

Compare Source

  • Bump to latest libsql package.

v0.15.5

Compare Source

  • Bump to latest libsql package.

v0.15.4

Compare Source

  • Bump to latest libsql package.

v0.15.3

Compare Source

  • Bump to latest libsql package.

v0.15.2

Compare Source

  • Bump to latest libsql package.

v0.15.1

Compare Source

  • Bump to latest libsql package.

v0.15.0

Compare Source

  • Bump to latest libsql package.
drizzle-team/drizzle-orm (drizzle-kit)

v0.31.5

Compare Source

  • Add casing support to studio configuration and related functions

v0.31.4

Compare Source

  • Fixed halfvec, bit and sparsevec type generation bug in drizzle-kit

v0.31.3

Compare Source

Bug fixed
  • 🛠️ Fixed RQB behavior for tables with same names in different schemas
  • 🛠️ Fixed [BUG]: Mismatched type hints when using RDS Data API - #​2097
New Prisma-Drizzle extension
import { PrismaClient } from '@​prisma/client';
import { drizzle } from 'drizzle-orm/prisma/pg';
import { User } from './drizzle';

const prisma = new PrismaClient().$extends(drizzle());
const users = await prisma.$drizzle.select().from(User);

For more info, check docs: https://orm.drizzle.team/docs/prisma

v0.31.2

Compare Source

v0.31.1

Compare Source

v0.31.0

Compare Source

Features and improvements

Enum DDL improvements

For situations where you drop an enum value or reorder values in an enum, there is no native way to do this in PostgreSQL. To handle these cases, drizzle-kit used to:

  • Change the column data types from the enum to text
  • Drop the old enum
  • Add the new enum
  • Change the column data types back to the new enum

However, there were a few scenarios that weren’t covered: PostgreSQL wasn’t updating default expressions for columns when their data types changed

Therefore, for cases where you either change a column’s data type from an enum to some other type, drop an enum value, or reorder enum values, we now do the following:

  • Change the column data types from the enum to text
  • Set the default using the ::text expression
  • Drop the old enum
  • Add the new enum
  • Change the column data types back to the new enum
  • Set the default using the ::<new_enum> expression
esbuild version upgrade

For drizzle-kit we upgraded the version to latest (0.25.2), thanks @​paulmarsicloud

Bug fixes

pnpm/pnpm (pnpm)

v10.18.0

Compare Source

Minor Changes
  • Added network performance monitoring to pnpm by implementing warnings for slow network requests, including both metadata fetches and tarball downloads.

    Added configuration options for warning thresholds: fetchWarnTimeoutMs and fetchMinSpeedKiBps.
    Warning messages are displayed when requests exceed time thresholds or fall below speed minimums

    Related PR: #​10025.

Patch Changes
  • Retry filesystem operations on EAGAIN errors #​9959.
  • Outdated command respects minimumReleaseAge configuration #​10030.
  • Correctly apply the cleanupUnusedCatalogs configuration when removing dependent packages.
  • Don't fail with a meaningless error when scriptShell is set to false #​8748.
  • pnpm dlx should not fail when minimumReleaseAge is set #​10037.
rolldown/tsdown (tsdown)

v0.15.6

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.15.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.15.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.15.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.15.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.15.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.15.0

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.14.2

Compare Source

   🚀 Features
    View changes on GitHub

v0.14.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.14.0

Compare Source

   🚨 Breaking Changes
  • Disable expandDirectories for matching fast-glob's behavior  -  by @​sxzz (8171b)
    View changes on GitHub

v0.13.5

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.13.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
  • Suppress mixed export warnings if cjsDefault is enabled  -  by @​sxzz (3ffa9)
    View changes on GitHub

v0.13.3

Compare Source

   🚨 Minor Breaking Changes
  • dts.build option should be enable manually for tsc -b  -  by @​sxzz (13146)
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.13.2

Compare Source

   🚨 Upstream Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.13.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.13.0

Compare Source

   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.12.9

Compare Source

   🚀 Features
    View changes on GitHub

v0.12.8

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.12.7

Compare Source

   🚀 Features
   🏎 Performance
    View changes on GitHub

v0.12.6

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.12.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.12.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.12.3

Compare Source

   🚀 Features
    View changes on GitHub

v0.12.2

Compare Source

   🚀 Features
    View changes on GitHub

v0.12.1

Compare Source

   🚀 Features
   🏎 Performance
    View changes on GitHub

v0.12.0

Compare Source

   🚨 Breaking Changes
  • Rename -f to -F for workspace filter, -f now for format  -  by @​sxzz (727ad)
   🚀 Features
   🏎 Performance
    View changes on GitHub

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.

Copy link

changeset-bot bot commented Oct 3, 2025

⚠️ No Changeset found

Latest commit: e8989db

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link

vercel bot commented Oct 3, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
mcp Ready Ready Preview Comment Oct 4, 2025 7:56am

@svelte-docs-bot
Copy link

@paoloricciuti paoloricciuti merged commit b92dd95 into main Oct 4, 2025
6 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch October 4, 2025 14:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant