connect-pg-simple
Advanced tools
Changelog
6.0.0 (2019-07-28)
INSERT ... ON CONFLICT
, more popularly known as UPSERT
. This is only supported on PostgreSQL version 9.5 and above.Changelog
5.0.0 (2018-06-06)
Changelog
4.2.0 (2017-05-20)
pgPromise
enables the library to re-use an existing connection from pg-promise. This is a mutually-exclusive alternative to specifying pool
, conObject
, or conString
(only one of these can be provided).Changelog
4.1.0 (2017-05-19)
conObject
enables connection details to be set through an objectconString
parsing + some added tests of itChangelog
3.1.2
Changelog
3.1.1
Changelog
3.1.0
store.touch()
method to allow for extending the life time of a session without changing the data of it. This enables setting the resave
option to false
, which is recommended to avoid a session extender save overwriting another save that adds new data to the session. More info in the express-session readme.