presto-client
Advanced tools
Comparing version 0.8.0 to 0.8.1
@@ -63,3 +63,3 @@ const { URL } = require('url') ; | ||
host: href.hostname, | ||
port: href.port, | ||
port: href.port || (href.protocol === 'https:' ? '443' : '80'), | ||
path: href.pathname + href.search, | ||
@@ -66,0 +66,0 @@ headers: {}, |
{ | ||
"name": "presto-client", | ||
"version": "0.8.0", | ||
"version": "0.8.1", | ||
"description": "Distributed query engine Presto client library for node.js", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -169,2 +169,4 @@ # presto-client-node | ||
* 0.8.1: | ||
* fix to specify default ports of http/https if nextUri doesn't have ports | ||
* 0.8.0: | ||
@@ -171,0 +173,0 @@ * fix the bug about SSL/TLS handling if redirections are required |
23071
217