Skip to content

Commit

Permalink
fix previous updates
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaly-t committed Jan 28, 2023
1 parent c1b390d commit d72c504
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 15 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,18 @@ jobs:
- name: PostgreSQL 13, Node 16
POSTGRES_IMAGE: postgres:13
NODE_VERSION: 16
- name: PostgreSQL 14, Node 14
POSTGRES_IMAGE: postgres:14
NODE_VERSION: 14
- name: PostgreSQL 14, Node 16
POSTGRES_IMAGE: postgres:14
NODE_VERSION: 16
- name: PostgreSQL 15, Node 14
POSTGRES_IMAGE: postgres:15
NODE_VERSION: 14
- name: PostgreSQL 15, Node 16
POSTGRES_IMAGE: postgres:15
NODE_VERSION: 16
# - name: PostgreSQL 14, Node 14
# POSTGRES_IMAGE: postgres:14
# NODE_VERSION: 14
# - name: PostgreSQL 14, Node 16
# POSTGRES_IMAGE: postgres:14
# NODE_VERSION: 16
# - name: PostgreSQL 15, Node 14
# POSTGRES_IMAGE: postgres:15
# NODE_VERSION: 14
# - name: PostgreSQL 15, Node 16
# POSTGRES_IMAGE: postgres:15
# NODE_VERSION: 16
fail-fast: false
name: ${{ matrix.name }}
timeout-minutes: 15
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pg-promise",
"version": "11.1.0",
"version": "11.2.0",
"description": "PostgreSQL interface for Node.js",
"main": "lib/index.js",
"typings": "typescript/pg-promise.d.ts",
Expand Down
3 changes: 1 addition & 2 deletions typescript/pg-subset.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

import {EventEmitter} from 'events';
import {checkServerIdentity} from 'tls';
import {Stream} from 'stream';

declare namespace pg {

Expand Down Expand Up @@ -103,7 +102,7 @@ declare namespace pg {
keepAlive?: boolean
keepalives?: number
keepalives_idle?: number
stream?: Stream | ((cn: IConnectionParameters) => Stream)
stream?: Socket | ((cn: IConnectionParameters) => Socket)
Client?: new(config: string | IConnectionParameters) => C
Promise?: any
types?: ITypeOverrides
Expand Down

0 comments on commit d72c504

Please sign in to comment.