You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is where I went looking for information about what broke in 8.
@eschwartz pointed me to the Announcements, which do contain full
details but were not a place I thought to look.
This PR includes the most critical breaking change in the "Upgrading"
section, with reference to the announcement for the details.
Copy file name to clipboardExpand all lines: content/guides/3-upgrading.md
+19-1
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,26 @@
1
1
---
2
-
title: Upgrading to 7.0
2
+
title: Upgrading
3
3
slug: /guides/upgrading
4
4
---
5
5
6
+
# Upgrading to 8.0
7
+
8
+
node-postgres at 8.0 introduces a breaking change to ssl-verified connetions. If you connect with ssl and use
9
+
10
+
```
11
+
const client = new Client({ ssl: true })
12
+
```
13
+
14
+
and the server's SSL certificate is self-signed, connections will fail as of node-postgres 8.0. To keep the existing behavior, modify the invocation to
0 commit comments