pg 8.19.0 → 8.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/client.js CHANGED
@@ -33,7 +33,7 @@ const byoPromiseDeprecationNotice = nodeUtils.deprecate(
33
33
 
34
34
  const queryQueueLengthDeprecationNotice = nodeUtils.deprecate(
35
35
  () => {},
36
- 'Calling client.query() when the client is already executing a query is deprecated and will be removed in pg@9.0. Use asycn/await or an external async flow control mechanism instead.'
36
+ 'Calling client.query() when the client is already executing a query is deprecated and will be removed in pg@9.0. Use async/await or an external async flow control mechanism instead.'
37
37
  )
38
38
 
39
39
  class Client extends EventEmitter {
@@ -17,7 +17,7 @@ const NativeQuery = require('./query')
17
17
 
18
18
  const queryQueueLengthDeprecationNotice = nodeUtils.deprecate(
19
19
  () => {},
20
- 'Calling client.query() when the client is already executing a query is deprecated and will be removed in pg@9.0. Use asycn/await or an external async flow control mechanism instead.'
20
+ 'Calling client.query() when the client is already executing a query is deprecated and will be removed in pg@9.0. Use async/await or an external async flow control mechanism instead.'
21
21
  )
22
22
 
23
23
  const Client = (module.exports = function (config) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pg",
3
- "version": "8.19.0",
3
+ "version": "8.20.0",
4
4
  "description": "PostgreSQL client - pure javascript & libpq with the same API",
5
5
  "keywords": [
6
6
  "database",
@@ -32,9 +32,9 @@
32
32
  "./lib/*.js": "./lib/*.js"
33
33
  },
34
34
  "dependencies": {
35
- "pg-connection-string": "^2.11.0",
36
- "pg-pool": "^3.12.0",
37
- "pg-protocol": "^1.12.0",
35
+ "pg-connection-string": "^2.12.0",
36
+ "pg-pool": "^3.13.0",
37
+ "pg-protocol": "^1.13.0",
38
38
  "pg-types": "2.2.0",
39
39
  "pgpass": "1.0.5"
40
40
  },
@@ -72,5 +72,5 @@
72
72
  "engines": {
73
73
  "node": ">= 16.0.0"
74
74
  },
75
- "gitHead": "f2d7d1146cc87024a5fa503dce13c59ff5196d26"
75
+ "gitHead": "c9070cc8d526fca65780cedc25c1966b57cf7532"
76
76
  }