Skip to content

chore(deps): update dependency knex to v3.3.0#508

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/knex-3.x
Open

chore(deps): update dependency knex to v3.3.0#508
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/knex-3.x

Conversation

@renovate

@renovate renovate Bot commented Jul 6, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
knex (source) 3.0.13.3.0 age confidence

Release Notes

knex/knex (knex)

v3.3.0

Compare Source

New features
  • feat: add support for returning in mariadb #​4572
  • feat: mariadb driver support #​6415
  • Fixes _setNullableState not respecting schema #​6025
  • feat: add connectionPool option for bringing an external pool #​6414
  • Added knex.migrate.to and knex.migrate.before #​6420
  • feat: set error.cause for tarn acquire connection error #​5681
Bug fixes
  • Fix FOR UPDATE OF with explicit schema #​5791
  • Fix sqlite conditional insert/merge when inserting multiple rows #​6185
  • Fix: Stream postProcessResponse error is not catchable with .on('error') #​6033
  • fix(pg): preserve updateFrom binding order #​6454
  • fix: #​6451, support token-credential in mssql auth #​6465
  • fix(types): #​6452 - .where type regression for invalid types #​6463
  • fix: #​6460 unhandled error on connection timeout with stream #​6462
  • fix: #​6455, correctly state tedious as dependency needed for mssql #​6464
  • fix(pg,mssql): preserve binding order in delete and update queries #​6438
Misc
  • chore: bump tarn@​3.1.0 #​6492
  • micro-optimization in wrappingFormatter #​6456
  • cleanup flake in the cancellation tests #​6486
  • Update docs: timeout section #​6471
  • ci: make npm install resilient to transient network failures #​6468
  • Update homepage urls #​6450
  • chore: add mariadb to docker-compose #​6466
  • chore: set codecov to default coverage provider #​6448

v3.2.10

Compare Source

Bug fixes
Misc
  • chore: auto-update the docs' knex version on publish #​6447
  • chore: skip re-running tests on automated release commit #​6443
  • chore: sync docker images we use to ghcr #​6445
  • chore: fixes for release-drafter workflow #​6442
  • chore: new publish/release workflow #​6441
  • docs: Update changelog for version 3.2.9 #​6440
  • docs: sync website changelog from 3.0.0 to 3.2.8 #​6426

v3.2.9

Compare Source

Bug fixes
  • fix: support DELETE... LIMIT in dialects that support it (mysql), but continue to disallow ones that don't #​6429
  • fix(postgres): escape double quotes in searchPath to prevent SQL injection #​6411
  • fix(sqlite): append RETURNING statement when insert empty row #​5471
  • fix: add type support for Array<Buffer> #​6428

v3.2.8

Compare Source

Bug fixes
  • Reverts the breaking changes added in #​6227. This means that the ESM import of Knex is reverted to import { knex } from 'knex/knex.mjs #​6422
  • fix(types): allow a QueryBuilder type as a value in an update #​6419

v3.2.7

Compare Source

Bug fixes
  • fix sqlite DDL operations failing inside transactions #​6408
  • fix: handle lowercase INFORMATION_SCHEMA keys in MySQL renameColumn #​6407
  • fix: clone config in client constructor #​5633
  • fix: remove __knexTxId from transaction connection on release #​5288
  • fix: correct binding order in delete with subquery join #​6412
  • chore: omit ./scripts from published package #​6356

v3.2.6

Compare Source

Bug fixes

v3.2.5

Compare Source

Bug fixes

v3.2.4

Compare Source

Bug fixes

v3.2.3

Compare Source

What's Changed

Full Changelog: knex/knex@3.2.1...3.2.3

v3.2.2

Compare Source

v3.2.1

Compare Source

Bug fixes
Misc
  • chore: auto-update the docs' knex version on publish #​6447
  • chore: skip re-running tests on automated release commit #​6443
  • chore: sync docker images we use to ghcr #​6445
  • chore: fixes for release-drafter workflow #​6442
  • chore: new publish/release workflow #​6441
  • docs: Update changelog for version 3.2.9 #​6440
  • docs: sync website changelog from 3.0.0 to 3.2.8 #​6426

v3.2.0

Compare Source

New features
  • Add migration lifecycle hooks (#​5541)
  • Add SIMILAR TO operator (#​5303)
  • Add dropUniqueIfExists (#​6069)
  • Add 'validate' pool option (#​5120)
  • PostgreSQL: default datetime/timestamp precision setting added (#​5311)
  • Better-SQLite3: Support defaultSafeIntegers option (#​6320)
  • Better-SQLite3: Improve safeIntegers support (#​6352)
  • SQLite: Refactor transactions to allow setting the foreign_keys pragma for a transaction (#​6315)
Bug fixes
  • Fix where in query with raw column (#​6323)
  • Fix migrate up with completed migration (#​6342)
  • Fix ESM export and typings (#​6227)
  • Fix migration CLI and cli tests (#​6264)
  • Fix recover from broken connection (#​5774)
  • Prevent unexpected combinations of statements and clauses groups from executing (#​6314)
  • Improve CLI error reporting in some edge cases (#​6265)
  • PostgreSQL: clearer error when pg-query-stream is missing (#​6362)
  • PostgreSQL: Fix streaming compatibility with pg-query-stream 4.14+ (#​6396)
  • MySQL: Fix the operator "<=>" is not permitted (#​6158)
  • MSSQL: Optimize stream.write (#​5693)
  • SQLite: Fix whereILike issue (#​5687)
Types
  • Fix usage of object type that is too broad (#​5373)
  • Fix pluck typing issue when CompositeTableType is used (#​4609)
  • Make types no longer allow knex to be called without tablename (#​6188)
  • Add missing type definition for orderBy with a raw column/expression (#​5803)
  • Add additional typing for column.index (#​5371)
  • Update typings for increment/decrement (#​5674)
  • Use syntax import from instead of import = require() (#​5258)
  • Import knex as type in TS seed template (#​6094)
  • Update index.d.ts (#​5767)
  • Add @​types/minimatch v5 to fix TypeScript build (#​6240)
Tests
  • Additional tests for JSON (de)serialization (#​4451)
  • Run CI on Node 22 and remove dtslint (#​6165)
Chore
  • Update to non-screamy versions of dependencies that have npm audit failures (#​6324)
  • Upgrade pg to ^8.20.0, pg-query-stream to ^4.14.0 (#​6396)

v3.1.0

Compare Source

Bug fixes
  • andWhereNotJsonObject calling wrong function (#​5683)
  • PostgreSQL: fix error when setting query_timeout (#​5673)
  • MySQL: Missing comments on delete, update and insert (#​5738)
  • MySQL: Fixed issue with bigincrements not working with composite primary key - #​5341 (#​5343)
Types
  • Add type definitions for orHavingNull and orHavingNotNull (#​5669)
  • Import knex as type in TS migration template (#​5741)
  • Fix conditional constraint error (#​5747)
  • PostgreSQL: Fix typing to reflect pg typing change (#​5647)
New features
  • Add transactor.parentTransaction (#​5567)
  • MySQL: Added implementation for upsert (#​5743)
  • Oracle: Support Object Names Greater than 30 Characters for Oracle DB Versions 12.2 and Greater (#​5197)

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

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 this update again.


  • 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/knex-3.x branch 2 times, most recently from 423298d to b57ead9 Compare July 6, 2026 21:28
@mfeltscher mfeltscher requested a review from Copilot July 6, 2026 22:14

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates the project’s Knex dev dependency to a newer 3.x release and refreshes the lockfile accordingly, aligning transitive dependencies and metadata with Knex v3.3.0.

Changes:

  • Bump knex from 3.0.1 to 3.3.0 in package.json.
  • Regenerate package-lock.json entries for knex and its transitive dependencies (e.g., lodash, pg-connection-string, tarn), including updated peer dependency metadata.

Reviewed changes

Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.

File Description
package.json Updates the pinned knex devDependency to 3.3.0.
package-lock.json Updates the resolved knex package and related transitive dependency versions/integrity data.

@renovate renovate Bot force-pushed the renovate/knex-3.x branch from b57ead9 to f8215a6 Compare July 8, 2026 02:32
@renovate renovate Bot force-pushed the renovate/knex-3.x branch from f8215a6 to 26ef48d Compare July 9, 2026 06:08
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