Skip to content

Commit

Permalink
Add glob to package.json for 1.1.2 (#135)
Browse files Browse the repository at this point in the history
* Updates for 1.1.2 release

* Updating version of glob to support older versions of node
  • Loading branch information
DMickens authored Feb 20, 2024
1 parent b61bfb4 commit e2ee7df
Show file tree
Hide file tree
Showing 5 changed files with 1,722 additions and 1,080 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@
"singleQuote": true
},
"dependencies": {
"vertica-nodejs": "^1.1.1"
"vertica-nodejs": "^1.1.2"
}
}
4 changes: 2 additions & 2 deletions packages/v-pool/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "v-pool",
"version": "1.1.1",
"version": "1.1.2",
"description": "Connection pool for Vertica",
"main": "index.js",
"directories": {
Expand Down Expand Up @@ -35,6 +35,6 @@
"mocha": "^7.1.2"
},
"peerDependencies": {
"vertica-nodejs": "1.1.1"
"vertica-nodejs": "1.1.2"
}
}
2 changes: 1 addition & 1 deletion packages/vertica-nodejs/lib/connection-parameters.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class ConnectionParameters {
// client auditing information
this.client_os_hostname = os.hostname()
this.client_type = "Node.js Driver"
this.client_version = "1.1.1"
this.client_version = "1.1.2"
this.client_pid = process.pid.toString()
this.client_os = os.platform()
this.client_os_user_name = os.userInfo().username
Expand Down
5 changes: 3 additions & 2 deletions packages/vertica-nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vertica-nodejs",
"version": "1.1.1",
"version": "1.1.2",
"description": "Vertica client - pure javascript & libpq with the same API",
"keywords": [
"database",
Expand All @@ -27,11 +27,12 @@
"main": "./lib",
"dependencies": {
"buffer-writer": "2.0.0",
"glob": "^7.1.6",
"packet-reader": "1.0.0",
"pg-types": "^2.1.0",
"pgpass": "1.x",
"v-connection-string": "1.1.0",
"v-pool": "1.1.1",
"v-pool": "1.1.2",
"v-protocol": "1.1.0"
},
"devDependencies": {
Expand Down
Loading

0 comments on commit e2ee7df

Please sign in to comment.