From 9ff74dc74b4c8ab12b0607a27575d946ac05e9fa Mon Sep 17 00:00:00 2001 From: Brian C Date: Wed, 26 Aug 2020 16:55:41 -0500 Subject: [PATCH] Update welcome.mdx Update w/ notes on version compatibility. --- content/welcome.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/content/welcome.mdx b/content/welcome.mdx index 2c4d9a9..3849670 100644 --- a/content/welcome.mdx +++ b/content/welcome.mdx @@ -26,6 +26,10 @@ node-postgres continued development and support is made possible by the many [su If you or your company would like to sponsor node-postgres stop by [github sponsors](https://github.com/sponsors/brianc) and sign up or feel free to [email me](mailto:brian@pecanware.com) if you want to add your logo to the documentation or discuss higher tiers of sponsorship! +# Version compatibility + +node-postgres strives to be compatible with all recent lts versions of node & the most recent "stable" version. At the time of this writing node-postgres is compatible with node 8.x, 10.x, 12.x and 14.x To use node >= 14.x you will need to install `pg@8.2.x` or later due to some internal stream changes on the node 14 branch. Dropping support for an old node lts version will always be considered a breaking change in node-postgres and will be done on _major_ version number changes only, and we will try to keep support for 8.x for as long as reasonably possible. + ## Getting started This is the simplest possible way to connect, query, and disconnect with async/await: