Skip to content

Commit ba07d19

Browse files
authored
docs: fix typos in announcements (brianc#3236)
Co-authored-by: alxndrsn <alxndrsn>
1 parent f41afda commit ba07d19

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/pages/announcements.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ new Client({
4747

4848
- drop support for versions of node older than 8.0
4949

50-
Node@6.0 has been out of LTS for quite some time now, and I've removed it from our test matrix. `pg@8.0` _may_ still work on older versions of node, but it isn't a goal of the project anymore. Node@8.0 is actually no longer in the LTS support line, but pg will continue to test against and support 8.0 until there is a compelling reason to drop support for it. Any security vulnerability issues which come up I will back-port fixes to the `pg@7.x` line and do a release, but any other fixes or improvments will not be back ported.
50+
Node@6.0 has been out of LTS for quite some time now, and I've removed it from our test matrix. `pg@8.0` _may_ still work on older versions of node, but it isn't a goal of the project anymore. Node@8.0 is actually no longer in the LTS support line, but pg will continue to test against and support 8.0 until there is a compelling reason to drop support for it. Any security vulnerability issues which come up I will back-port fixes to the `pg@7.x` line and do a release, but any other fixes or improvements will not be back ported.
5151

5252
- prevent password from being logged accidentally
5353

54-
`pg@8.0` makes the password field on the pool and client non-enumerable. This means when you do `console.log(client)` you wont have your database password printed out unintenionally. You can still do `console.log(client.password)` if you really want to see it!
54+
`pg@8.0` makes the password field on the pool and client non-enumerable. This means when you do `console.log(client)` you wont have your database password printed out unintentionally. You can still do `console.log(client.password)` if you really want to see it!
5555

5656
- make `pg.native` non-enumerable
5757

@@ -113,7 +113,7 @@ pg@7.1.2
113113

114114
### Example
115115

116-
To demonstrate the issue & see if you are vunerable execute the following in node:
116+
To demonstrate the issue & see if you are vulnerable execute the following in node:
117117

118118
```js
119119
import pg from 'pg'

0 commit comments

Comments
 (0)