kysely-postgres-js
kysely-postgres-js copied to clipboard
Kysely dialect for PostgreSQL using the Postgres.js client.
As recently mentioned in https://github.com/kysely-org/kysely/issues/330#issuecomment-2154474432 I'm using RLS and configure it while initiating the client connection. For various reasons I had to switch to postgresjs where currently there is no...
https://github.com/kysely-org/kysely-postgres-js/blob/30fd3443ebfb47b9dcbf9abb8a81addfea121f9e/src/types.ts#L3 this is using `Sql` from the npm postgres package: https://github.com/kysely-org/kysely-postgres-js/blob/main/package.json#L39 it should instead use `Sql` from the postgresJS package: https://github.com/porsager/postgres/blob/master/types/index.d.ts#L660C19-L660C56 Currently I am getting a type error because it...
Bumps [eslint](https://github.com/eslint/eslint) from 8.57.1 to 9.25.1. Release notes Sourced from eslint's releases. v9.25.1 Bug Fixes cdc8e8c fix: revert directive detection in no-unused-expressions (#19639) (sethamus) Chores 1f2b057 chore: upgrade @eslint/js@9.25.1 (#19642)...
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 4.31.2 to 4.31.3. Release notes Sourced from github/codeql-action's releases. v4.31.3 CodeQL Action Changelog See the releases page for the relevant changes to the CodeQL CLI and language...
I'm trying to pass an array into a query. I'm seeing Kysely emit type errors because `eb.val()` expects a string array. Is there another way I should be implementing this...