Update dependency pg to v8 - autoclosed
Created by: renovate[bot]
This PR contains the following updates:
Package | Type | Update | New value | References | Sourcegraph |
---|---|---|---|---|---|
pg | dependencies | major | ^8.2.0 | source |
Release Notes
brianc/node-postgres
v8.2.0
- Switch internal protocol parser & serializer to pg-protocol. The change is backwards compatible but results in a significant performance improvement across the board, with some queries as much as 50% faster. This is the first work to land in an on-going performance improvment initiative I'm working on. Stay tuned as things are set to get much faster still!
🚀
v8.1.0
- Switch to using monorepo version of
pg-connection-string
. This includes better support for SSL argument parsing from connection strings and ensures continuity of support. - Add
&ssl=no-verify
option to connection string andPGSSLMODE=no-verify
environment variable support for the pure JS driver. This is equivalent of passing{ ssl: { rejectUnauthorize: false } }
to the client/pool constructor. The advantage of having support in connection strings and environment variables is it can be "externally" configured via environment variables and CLI arguments much more easily, and should remove the need to directly edit any application code for the SSL default changes in 8.0. This should make using[email protected]
significantly less difficult on environments like Heroku for example.
v8.0.3
v8.0.2
v8.0.1
v8.0.0
check here
note: for detailed release notes please- Remove versions of node older than
6 lts
from the test matrix.pg>=8.0
may still work on older versions but it is no longer officially supported. - Change default behavior when not specifying
rejectUnauthorized
with the SSL connection parameters. Previously we defaulted torejectUnauthorized: false
when it was not specifically included. We now default torejectUnauthorized: true.
Manually specify{ ssl: { rejectUnauthorized: false } }
for old behavior. - Change default database when not specified to use the
user
config option if available. Previouslyprocess.env.USER
was used. - Change
pg.Pool
andpg.Query
to be an es6 class. - Make
pg.native
non enumerable. -
notice
messages are no longer instances ofError
. - Passwords no longer show up when instances of clients or pools are logged.
Renovate configuration
-
If you want to rebase/retry this PR, check this box
This PR has been generated by WhiteSource Renovate. View repository job log here.