also looking at this
chore(deps): update all non-major dependencies
#181
6 files
+15
-15
This PR contains the following updates:
Package Updates Summary
| Type | Count |
|---|---|
| 📦 NPM Packages | 7 |
| 🔧 System Dependencies | 1 |
| 🚀 GitHub Actions | 3 |
| Total | 11 |
📦 npm Dependencies
7 packages will be updated
🔧 System Dependencies
| Package | Change | Type | File |
|---|---|---|---|
| bun | ^1.3.0 → ^1.3.1 | 🟢 patch | deps.yaml |
🚀 GitHub Actions
3 actions will be updated
| Action | Change | Type | Files |
|---|---|---|---|
| oven-sh/setup-bun | v2.0.2 → v2.1.0 | 🟡 minor | ci.yml |
| shivammathur/setup-php | 2.35.5 → 2.36.0 | 🟡 minor | buddy-bot.yml |
| stacksjs/action-releaser | v1.2.7 → v1.2.6 | 🟢 patch | release.yml |
Release Notes
WiseLibs/better-sqlite3 (better-sqlite3)
12.4.1 -> 12.6.0
v12.6.0
What's Changed
- Update SQLite to version 3.51.2 in https://github.com/WiseLibs/better-sqlite3/pull/1436
Full Changelog: https://github.com/WiseLibs/better-sqlite3/compare/v12.5.0...v12.6.0
Released by mceachen on 1/9/2026
v12.5.0
What's Changed
- Update SQLite to version 3.51.1 in https://github.com/WiseLibs/better-sqlite3/pull/1424
Full Changelog: https://github.com/WiseLibs/better-sqlite3/compare/v12.4.6...v12.5.0
Released by mceachen on 11/28/2025
v12.4.6
What's Changed
- Fix npm publishing by mceachen in https://github.com/WiseLibs/better-sqlite3/pull/1423
Full Changelog: https://github.com/WiseLibs/better-sqlite3/compare/v12.4.5...v12.4.6
Released by mceachen on 11/22/2025
drizzle-team/drizzle-orm (drizzle-orm)
0.44.7 -> 0.45.1
v1.0.0-beta.8
drizzle-seed updates
Bug fixes
- [BUG]: drizzle seed doesn't work with libSQL
- [BUG]: Seed UUIDs not compatible with Zod/v4
- [BUG]: drizzle seed generates invalid input value (number) for enum strings (pg)
- [BUG]: drizzle seed breaks serial sequence sync with Postgres serial type
Features
ignore column in refinements
Now you can let drizzle-seed know if you want to ignore column during seeding.
// schema.ts
import { integer, pgTable, text } from "drizzle-orm/pg-core";
export const users = pgTable("users", {
id: integer().primaryKey(),
name: text().notNull(),
age: integer(),
photo: text(),
});// index.ts
import { drizzle } from "drizzle-orm/node-postgres";
import { seed } from "drizzle-seed";
import * as ...
*[View full release notes]*
*Released by [AndriiSherman](https://github.com/AndriiSherman) on 12/31/2025*
### [`v1.0.0-beta.6`](https://github.com/drizzle-team/drizzle-orm/releases/tag/v1.0.0-beta.6)
[Compare Source](https://github.com/drizzle-team/drizzle-orm/compare/v0.44.7...v0.45.1)
## Bug fixes
- [[BUG]: 1.0.0-beta.2 - drizzle-kit push does consider json (jsonb) key order relevant](https://github.com/drizzle-team/drizzle-orm/issues/5119)
- [[BUG]: drizzle-kit pull generates string instead of sql statement for default value](https://github.com/drizzle-team/drizzle-orm/issues/5093)
- [[BUG]: Failed schema with d1 table](https://github.com/drizzle-team/drizzle-orm/issues/3590)
- [[BUG]: drizzle-kit: push runs already applied migration](https://github.com/drizzle-team/drizzle-orm/issues/3844)
- [[BUG]: Drizzle-Kit detects change when Composite Primary Key Columns are in different order than in schema definition](https://github.com/drizzle-team/drizzle-orm/issues/3103)
- [[BUG]: drizzle-kit push always shows columns with custom types as changed even tho the type didn't change](https://github.com/drizzle-team/drizzle-orm/issues/3047);
*Released by [AndriiSherman](https://github.com/AndriiSherman) on 12/25/2025*
### [`v1.0.0-beta.5`](https://github.com/drizzle-team/drizzle-orm/releases/tag/v1.0.0-beta.5)
[Compare Source](https://github.com/drizzle-team/drizzle-orm/compare/v0.44.7...v0.45.1)
## Bug fixes
- [[BUG]: error: type "serial" does not exist](https://github.com/drizzle-team/drizzle-orm/issues/2183)
- [[BUG]: jsonb default with boolean literals gets generated truen instead of true](https://github.com/drizzle-team/drizzle-orm/issues/5149)
- [[BUG]: MSSQL view incorrect syntax](https://github.com/drizzle-team/drizzle-orm/issues/5113)
- Fixed `blob` columns in MySQL to work properly with RQB mapper
## Changes to SQLite `drizzle-kit up` command
> Important!
>
> If you were already using SQLite in any `beta.x` version and have used the `drizzle-kit up` command, you will not receive the latest `up` changes from this release. If you are unable to reset migrations and start from scratch, you will need to contact us for support with upgrading
### What was changed?
#### Handling of UNIQUE constraints in SQLite
In the new version `drizzle-kit` handles `UNIQUE` constraints. This decision was made because when a unique constraint is created it cannot be removed, whereas an...
*[View full release notes]*
*Released by [AndriiSherman](https://github.com/AndriiSherman) on 12/23/2025*
</details>
<details>
<summary>prisma/prisma (prisma)</summary>
**7.1.0 -> 7.3.0-integration-prisma6-fix-cloudflare-engine.3**
### [`7.2.0`](https://github.com/prisma/prisma/releases/tag/7.2.0)
[Compare Source](https://github.com/prisma/prisma/compare/v7.1.0...v7.3.0-integration-prisma6-fix-cloudflare-engine.3)
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](https://pris.ly/x)!**
## Highlights
## ORM
- [#28830](https://github.com/prisma/prisma/pull/28830): feat: add `sqlcommenter-query-insights` plugin
- Adds a new SQL commenter plugin to support query insights metadata.
- [#28860](https://github.com/prisma/prisma/pull/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](https://github.com/prisma/prisma/pull/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](https://github.com/prisma/prisma/pull/28903): feat(cli): customize `prisma init` based on the JS runtime (Bun vs others)
- Makes `prisma init` tailor gene...
*[View full release notes]*
*Released by [mhartington](https://github.com/mhartington) on 12/17/2025*
</details>
<details>
<summary>DefinitelyTyped/DefinitelyTyped (@types/bun)</summary>
**1.3.2 -> 1.3.6**
[Compare Source](https://github.com/DefinitelyTyped/DefinitelyTyped/compare/v1.3.2...v1.3.6)
TypeScript definitions for bun
�� [View Release Notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
�� [View Changelog](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/main/CHANGELOG.md)
[Release Notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
[Changelog](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/main/CHANGELOG.md)
</details>
<details>
<summary>stacksjs/development (better-dx)</summary>
**0.2.3 -> 0.2.5**
### [`v0.2.5`](https://github.com/stacksjs/better-dx/releases/tag/v0.2.5)
[Compare Source](https://github.com/stacksjs/development/compare/v0.2.3...v0.2.5)
*No significant changes*
##### [View changes on GitHub](https://github.com/stacksjs/better-dx/compare/v0.2.4...v0.2.5)
*Released by [github-actions[bot]](https://github.com/github-actions[bot]) on 11/22/2025*
### [`v0.2.4`](https://github.com/stacksjs/better-dx/releases/tag/v0.2.4)
[Compare Source](https://github.com/stacksjs/development/compare/v0.2.3...v0.2.5)
*No significant changes*
##### [View changes on GitHub](https://github.com/stacksjs/better-dx/compare/v0.2.3...v0.2.4)
*Released by [github-actions[bot]](https://github.com/github-actions[bot]) on 11/21/2025*
</details>
<details>
<summary>kysely-org/kysely (kysely)</summary>
**0.28.8 -> 0.28.9**
### [`v0.28.9`](https://github.com/kysely-org/kysely/releases/tag/v0.28.9)
[Compare Source](https://github.com/kysely-org/kysely/compare/v0.28.8...v0.28.9)
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](https://github.com/igalklebanov) in https://github.com/kysely-org/kysely/pull/1648
* fix: withSchema adds schema to for update|share|key share|no key share of tables causing database errors. by [igalklebanov](https://github.com/igalklebanov) in https://github.com/kysely-org/kysely/pull/1659
## �� Documentation
## �� CICD & Tooling
* publish to jsr. by [igalklebanov](https://github.com/igalklebanov) in https://github.com/kysely-org/kysely/pull/1457
* chore: bump pnpm, use trustPolicy, exclude safe downgrades, fix browser test, fix bun tests. by [igalklebanov](https://github.com/igalklebanov) in https://github.com/kysely-org/kysely/pull/1641
* chore(ci): add deno lint with JSR rules. Add verbatimModuleSyntax in tsconfig.json. Apply lint fixes. by [igalklebanov](https://github.com/igalk...
*[View full release notes]*
*Released by [igalklebanov](https://github.com/igalklebanov) on 12/13/2025*
</details>
<details>
<summary>typeorm/typeorm (typeorm)</summary>
**0.3.27 -> 0.3.28**
### [`0.3.28`](https://github.com/typeorm/typeorm/releases/tag/0.3.28)
[Compare Source](https://github.com/typeorm/typeorm/compare/v0.3.27...v0.3.28)
## What's Changed
* build(deps): bump brace-expansion from 2.0.1 to 2.0.2 in /sample/playground by [dependabot](https://github.com/dependabot)[bot] in https://github.com/typeorm/typeorm/pull/11522
* chore: update dependencies by [alumni](https://github.com/alumni) in https://github.com/typeorm/typeorm/pull/11666
* chore: fix package preview by [alumni](https://github.com/alumni) in https://github.com/typeorm/typeorm/pull/11542
* fix: add multiSubnetFailover to mssql driver option types by [isaru66](https://github.com/isaru66) in https://github.com/typeorm/typeorm/pull/10804
* ci: introduce jsdoc eslint plugin (warnings only) by [pkuczynski](https://github.com/pkuczynski) in https://github.com/typeorm/typeorm/pull/11681
* feat: add support for `jsonpath` column type in PostgreSQL by [pkuczynski](https://github.com/pkuczynski) in https://github.com/typeorm/typeorm/pull/11684
* feat: entity schema support trees by [wszgrcy](https://github.com/wszgrcy) in https://github.com/typeorm/typeorm...
*[View full release notes]*
*Released by [michaelbromley](https://github.com/michaelbromley) on 12/3/2025*
### [`0.3.9`](https://github.com/typeorm/typeorm/releases/tag/0.3.9)
[Compare Source](https://github.com/typeorm/typeorm/compare/v0.3.27...v0.3.28)
### Bug Fixes
* fixed regression introduced in 0.3.8 - broken CLI because of #8917 ([#9332](https://github.com/typeorm/typeorm/issues/9332)), closes [#9330](https://github.com/typeorm/typeorm/issues/9330)
*Released by [pleerock](https://github.com/pleerock) on 8/28/2022*
### [`0.3.8`](https://github.com/typeorm/typeorm/releases/tag/0.3.8)
[Compare Source](https://github.com/typeorm/typeorm/compare/v0.3.27...v0.3.28)
### Bug Fixes
* allow space and no-space syntaxes for SQLite constraints ([#9238](https://github.com/typeorm/typeorm/issues/9238)) ([bb07244](https://github.com/typeorm/typeorm/commit/bb07244b6188e623a6f8c8407e808d75f94918af)), closes [#9237](https://github.com/typeorm/typeorm/issues/9237)
* allow where IsNull for ManyToOne relations ([#9031](https://github.com/typeorm/typeorm/issues/9031)) ([72728f1](https://github.com/typeorm/typeorm/commit/72728f155d2e9d11fd9c2c1fb97c071c3b41ae6b)), closes [#8890](https://github.com/typeorm/typeorm/issues/8890)
* change postgres driver version checking query ([#9319](https://github.com/typeorm/typeorm/issues/9319)) ([c4f4650](https://github.com/typeorm/typeorm/commit/c4f46506d87009a589a7adf9b9367be06c92042c)), closes [#9318](https://github.com/typeorm/typeorm/issues/9318) [#9318](https://github.com/typeorm/typeorm/issues/9318)
* don't use temporary table name to create foreign key, unique, check constraint with SQLite ([#9185](https://github.com/ty...
*[View full release notes]*
*Released by [pleerock](https://github.com/pleerock) on 8/26/2022*
</details>
<details>
<summary>bun</summary>
**^1.3.0 → ^1.3.1**
�� **File**: [`deps.yaml`](https://github.com/stacksjs/bun-query-builder/blob/main/deps.yaml)
�� **Package Info**: [pkgx.com](https://pkgx.com/pkg/bun)
</details>
<details>
<summary>oven-sh/setup-bun</summary>
**v2.0.2 → v2.1.0**
Visit [oven-sh/setup-bun](https://github.com/oven-sh/setup-bun/releases) for release notes.
</details>
<details>
<summary>shivammathur/setup-php</summary>
**2.35.5 → 2.36.0**
Visit [shivammathur/setup-php](https://github.com/shivammathur/setup-php/releases) for release notes.
</details>
<details>
<summary>stacksjs/action-releaser</summary>
**v1.2.7 → v1.2.6**
Visit [stacksjs/action-releaser](https://github.com/stacksjs/action-releaser/releases) for release notes.
</details>
---
### �� Package Statistics
- **better-sqlite3**: 2,357,994 weekly downloads
- **drizzle-orm**: 3,550,452 weekly downloads
- **prisma**: 6,908,359 weekly downloads
- **@types/bun**: 4,106,804 weekly downloads
- **better-dx**: 21,091 weekly downloads
- **kysely**: 1,868,018 weekly downloads
- **typeorm**: 2,899,257 weekly downloads
- **bun**: Available via pkgx package manager
- **oven-sh/setup-bun**: GitHub Action for workflow automation
- **shivammathur/setup-php**: GitHub Action for workflow automation
- **stacksjs/action-releaser**: GitHub Action for workflow automation
---
### 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.
�� **Ignore**: Close this PR and you won't be reminded about these updates again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR was generated by [Buddy](https://github.com/stacksjs/buddy-bot) 🤖6 changed files on the files tab, with 0 review threads.