node-postgres icon indicating copy to clipboard operation
node-postgres copied to clipboard

PostgreSQL client for node.js.

Results 357 node-postgres issues
Sort by recently updated
recently updated
newest added

Bumps [chai](https://github.com/chaijs/chai) from 4.3.6 to 6.2.0. Release notes Sourced from chai's releases. v6.2.0 What's Changed feat(events): add addChainableMethod event by @​perrin4869 in chaijs/chai#1707 Full Changelog: https://github.com/chaijs/chai/compare/v6.1.0...v6.2.0 v6.1.0 What's Changed build(deps-dev):...

dependencies
javascript

Bumps [@cloudflare/vitest-pool-workers](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/vitest-pool-workers) from 0.8.23 to 0.9.8. Release notes Sourced from @​cloudflare/vitest-pool-workers's releases. @​cloudflare/vitest-pool-workers@​0.9.8 Patch Changes Updated dependencies [ff82d80, 7a6381c, 6ff41a6, 0c208e1, 2432022, 325d22e, 8d07576, 0a554f9, 6244a9e, d09cab3]: [email protected] [email protected] @​cloudflare/vitest-pool-workers@​0.9.7...

dependencies
javascript

Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) from 10.1.2 to 10.1.8. Release notes Sourced from eslint-config-prettier's releases. v10.1.8 republish latest version Full Changelog: https://github.com/prettier/eslint-config-prettier/compare/v10.1.5...v10.1.8 v10.1.5 Patch Changes #332 60fef02 Thanks @​JounQin! - chore: add funding...

dependencies
javascript

I want to use this library in the [slack deno sdk](https://docs.slack.dev/tools/deno-slack-sdk/). But, slack hosts your code for you, and runs it in a sandboxed deno runtime. One of the restrictions...

pg-query-strream is not currently supported when using pg-native, which means you can't stream large results sets when using it, it should be supported. libpg does have interfaces to "stream" results...

feature request

Hi there! I just ran into #3508 which was fixed in #3509. Based on the commit, this was merged on [July 10th](https://github.com/brianc/node-postgres/commit/01fadd93d78ba37a57d2d09e01f0bce7f8d5869c), a couple weeks after the [last release]([3.10.1](https://www.npmjs.com/package/pg-pool/v/3.10.1)) (`3.10.1`)...

Can I cancel a query inside query.on('row'...? I want to do something like: ``` js query.on('row',function(row, result){ if(row.field1=='ok'){ result.addRow(row); }else{ result.cancel(row, 'bla bla bla'); } }); ``` The need is...

feature request

I noticed that on long strings, `escapeLiteral` goes really slow. I created my own `escapeLiteral` and I decided to push it. I saw this issue when searching: https://github.com/brianc/node-postgres/issues/3194 On short...

This pull request updates `nextra` to version 3 (following the [migration guide](https://the-guild.dev/blog/nextra-3#migration-guide-to-nextra-3)), and updates its dependencies. Nextra _had_ an odd issue with font rendering using the `ss06` font feature settings...

We found that when a new connection is opened and `connectionTimeoutMillis` is hit due to a race condition the following things can happen: 1. A connection is opened on the...