From 79199d43b7de98962182acfad1fd530189b076e0 Mon Sep 17 00:00:00 2001 From: Vitaly Tomilov Date: Wed, 20 Mar 2024 23:28:59 +0000 Subject: [PATCH] update the package --- lib/query.js | 4 +--- package.json | 8 ++++---- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/lib/query.js b/lib/query.js index 77c3e8d3..625a368c 100644 --- a/lib/query.js +++ b/lib/query.js @@ -263,9 +263,7 @@ function $query(ctx, query, values, qrm, config) { } // Extends Result to provide iterable for the rows; -// -// To be removed once the following PR is merged amd released: -// https://github.com/brianc/node-postgres/pull/2861 +// See: https://github.com/brianc/node-postgres/pull/2861 function makeIterable(r) { r[Symbol.iterator] = function () { return this.rows.values(); diff --git a/package.json b/package.json index f2a39a2e..291793cf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pg-promise", - "version": "11.5.4", + "version": "11.5.5", "description": "PostgreSQL interface for Node.js", "main": "lib/index.js", "typings": "typescript/pg-promise.d.ts", @@ -50,14 +50,14 @@ "@types/node": "20.5.2", "bluebird": "3.7.2", "coveralls": "3.1.1", - "cspell": "7.0.1", - "eslint": "8.47.0", + "cspell": "8.6.0", + "eslint": "8.57.0", "istanbul": "0.4.5", "jasmine-node": "3.0.0", "jsdoc": "4.0.2", "JSONStream": "1.3.5", "pg-query-stream": "4.5.3", "tslint": "6.1.3", - "typescript": "5.1.6" + "typescript": "5.4.3" } }