Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Apr 27, 2025

This PR contains the following updates:

Package Change Age Confidence
kysely (source) 0.28.1 -> 0.28.9 age confidence
kysely (source) 0.28.2 -> 0.28.9 age confidence

Release Notes

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

v0.28.8: 0.28.8

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.7...v0.28.8

v0.28.7: 0.28.7

Compare Source

Hey 👋

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

🚀 Features
🐞 Bugfixes
📖 Documentation
📦 CICD & Tooling
⚠️ Breaking Changes
🐤 New Contributors

Full Changelog: kysely-org/kysely@v0.28.6...v0.28.7

v0.28.6: 0.28.6

Compare Source

Hey 👋

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

Docs site has been optimized and all we got was this animation:

image
🚀 Features
🐞 Bugfixes
PostgreSQL 🐘 / MSSQL 🥅
MySQL 🐬
📖 Documentation
📦 CICD & Tooling
⚠️ Breaking Changes
🐤 New Contributors

Full Changelog: kysely-org/kysely@v0.28.5...v0.28.6

v0.28.5: 0.28.5

Compare Source

Hey 👋

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

🚀 Features
🐞 Bugfixes
📖 Documentation
📦 CICD & Tooling
⚠️ Breaking Changes
🐤 New Contributors

Full Changelog: kysely-org/kysely@v0.28.4...v0.28.5

v0.28.4: 0.28.4

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.3...v0.28.4

v0.28.3: 0.28.3

Compare Source

Hey 👋

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

🚀 Features
CockroachDB 🟣
  • fix: filter out internal cockroachdb schemas in postgres introspector by @​yawhide in #​1459
🐞 Bugfixes
MySQL 🐬 / MS SQL Server 🥅
MS SQL Server 🥅
📖 Documentation
📦 CICD & Tooling
⚠️ Breaking Changes
🐤 New Contributors

Full Changelog: kysely-org/kysely@0.28.2...v0.28.3

v0.28.2

Compare Source

Hey 👋

v0.28 broke an undocumented TypeScript behavior our API had that allowed you to pass table name unions to query builders and enable some DRYing of queries. Seeing that this pattern was quite popular, we decided to support it officially with the addition of the table method in the dynamic module.

You can pull off some crazy complex stuff like:

async function getRowByColumn<
  T extends keyof Database,
  C extends keyof Database[T] & string,
  V extends SelectType<Database[T][C]>,
>(t: T, c: C, v: V) {
  // We need to use the dynamic module since the table name
  // is not known at compile time.
  const { table, ref } = db.dynamic

  return await db
    .selectFrom(table(t).as('t'))
    .selectAll()
    .where(ref(c), '=', v)
    // `id` can be directly referenced since every table has it.
    .orderBy('t.id')
    .executeTakeFirstOrThrow()
}

const person = await getRowByColumn('person', 'first_name', 'Arnold')

...and it'll narrow the downstream query context to the intersection of all the possible shapes of tables in the union type. (DONT DO THIS AT HOME KIDS!)

A simpler example would be:

async function deleteItem(id: string, table: 'person' | 'pet') {
  await db
    .deleteFrom(db.dynamic.table(table).as('t'))
    .where('id', '=', id)
    .executeTakeFirstOrThrow()
}

If you attempt to refer to a column that doesn't exist in both "person" and "pet" (e.g. "pet"'s "species" column), the compiler will correctly yell at you.

🚀 Features

🐞 Bugfixes

SQLite 📘

📖 Documentation

📦 CICD & Tooling

⚠️ Breaking Changes

🐤 New Contributors

Full Changelog: kysely-org/kysely@0.28.1...0.28.2


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.

🔕 Ignore: Close this PR and you won't be reminded about these updates 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 requested a review from a team as a code owner April 27, 2025 10:43
@renovate renovate bot force-pushed the renovate/kysely-0.x branch from 07b6022 to 9a5a1aa Compare May 23, 2025 09:00
@renovate renovate bot force-pushed the renovate/kysely-0.x branch 2 times, most recently from c7ded05 to 1d420c6 Compare June 11, 2025 03:10
@renovate renovate bot force-pushed the renovate/kysely-0.x branch 2 times, most recently from 63d76ee to 3673812 Compare July 1, 2025 07:46
@renovate renovate bot force-pushed the renovate/kysely-0.x branch from 3673812 to dec616b Compare July 21, 2025 02:48
@renovate renovate bot changed the title chore(deps): update dependency kysely to v0.28.2 chore(deps): update dependency kysely to v0.28.3 Jul 21, 2025
@renovate renovate bot force-pushed the renovate/kysely-0.x branch from dec616b to f94f6f8 Compare August 5, 2025 01:35
@renovate renovate bot changed the title chore(deps): update dependency kysely to v0.28.3 chore(deps): update dependency kysely to v0.28.4 Aug 5, 2025
@renovate renovate bot force-pushed the renovate/kysely-0.x branch 4 times, most recently from b48428c to c69d3fb Compare August 13, 2025 18:51
@renovate renovate bot changed the title chore(deps): update dependency kysely to v0.28.4 chore(deps): update dependency kysely to v0.28.5 Aug 13, 2025
@renovate renovate bot force-pushed the renovate/kysely-0.x branch from c69d3fb to 75771b1 Compare August 19, 2025 15:35
@renovate renovate bot force-pushed the renovate/kysely-0.x branch 2 times, most recently from 216cbc4 to 0d68782 Compare September 16, 2025 15:37
@renovate renovate bot changed the title chore(deps): update dependency kysely to v0.28.5 chore(deps): update dependency kysely to v0.28.6 Sep 16, 2025
@renovate renovate bot force-pushed the renovate/kysely-0.x branch from 0d68782 to 9eb13c2 Compare September 17, 2025 17:00
@renovate renovate bot changed the title chore(deps): update dependency kysely to v0.28.6 chore(deps): update dependency kysely to v0.28.7 Sep 17, 2025
@renovate renovate bot force-pushed the renovate/kysely-0.x branch 3 times, most recently from 950c741 to 5e21727 Compare September 29, 2025 07:51
@renovate renovate bot force-pushed the renovate/kysely-0.x branch 5 times, most recently from 3ba12e6 to 5dbb657 Compare October 13, 2025 01:12
@renovate renovate bot changed the title chore(deps): update dependency kysely to v0.28.7 chore(deps): update dependency kysely to v0.28.8 Oct 13, 2025
@renovate renovate bot force-pushed the renovate/kysely-0.x branch 2 times, most recently from 837bde7 to fd8089e Compare October 22, 2025 07:05
@renovate renovate bot force-pushed the renovate/kysely-0.x branch from fd8089e to 8150513 Compare November 10, 2025 21:36
@renovate renovate bot force-pushed the renovate/kysely-0.x branch 3 times, most recently from 7a33597 to 3fdb660 Compare November 18, 2025 22:58
@renovate renovate bot force-pushed the renovate/kysely-0.x branch 2 times, most recently from 7ac01d4 to 598c108 Compare December 9, 2025 01:04
@renovate renovate bot force-pushed the renovate/kysely-0.x branch from 598c108 to 8c7be94 Compare December 16, 2025 22:07
@renovate renovate bot changed the title chore(deps): update dependency kysely to v0.28.8 chore(deps): update dependency kysely to v0.28.9 Dec 16, 2025
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.

2 participants