Changelog
pg-pool@3.2.0
pg
impact pg-pool
as they both use the same connection parameter and connection string parsing code for configuring SSL.Changelog
pg-query-stream@3.1.0
Changelog
pg-query-stream@3.0.0
stream.close
to stream.destroy
which is the official way to terminate a readable stream. This is a breaking change if you rely on the stream.close
method on pg-query-stream...though should be just a find/replace type operation to upgrade as the semantics remain very similar (not exactly the same, since internals are rewritten, but more in line with how streams are "supposed" to behave).config.batchSize
and config.highWaterMark
to both do the same thing: control how many rows are buffered in memory. The ReadableStream
will manage exactly how many rows are requested from the cursor at a time. This should give better out of the box performance and help with efficient async iteration.