File tree 5 files changed +12
-3
lines changed
5 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 0.1.5] - 2018-02-17
11
+
12
+ ### Changed
13
+
14
+ * Fixes timeouts on PoW (attachToTangle) calls
15
+ * Upgrades iota.lib.js
16
+
10
17
## [ 0.1.4] - 2018-02-16
11
18
12
19
### Added
Original file line number Diff line number Diff line change @@ -110,6 +110,7 @@ var Field = function (_Base) {
110
110
this . proxy = hoxy . createServer ( {
111
111
upstreamProxy : this . opts . IRIHostname + ':' + this . opts . IRIPort
112
112
} ) . listen ( this . opts . port ) ;
113
+ this . proxy . _server . timeout = 0 ;
113
114
this . proxy . intercept ( {
114
115
phase : 'request' ,
115
116
as : 'string'
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " field.cli" ,
3
- "version" : " 0.1.4 " ,
3
+ "version" : " 0.1.5 " ,
4
4
"description" : " CarrIOTA Field Client" ,
5
5
"main" : " dist/field.js" ,
6
6
"homepage" : " https://semkodev.com" ,
35
35
"commander" : " ^2.13.0" ,
36
36
"hoxy" : " ^3.2.2" ,
37
37
"ini" : " ^1.3.5" ,
38
- "iota.lib.js" : " 0.4.7" ,
38
+ "iota.lib.js" : " ^ 0.4.7" ,
39
39
"ip" : " ^1.1.5" ,
40
40
"node-machine-id" : " ^1.1.10" ,
41
41
"request" : " ^2.83.0"
Original file line number Diff line number Diff line change @@ -98,6 +98,7 @@ class Field extends Base {
98
98
upstreamProxy : `${ this . opts . IRIHostname } :${ this . opts . IRIPort } `
99
99
} )
100
100
. listen ( this . opts . port ) ;
101
+ this . proxy . _server . timeout = 0 ;
101
102
this . proxy . intercept (
102
103
{
103
104
phase : 'request' ,
Original file line number Diff line number Diff line change @@ -2094,7 +2094,7 @@ invert-kv@^1.0.0:
2094
2094
version "1.0.0"
2095
2095
resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"
2096
2096
2097
-
2097
+ iota.lib.js@^ 0.4.7 :
2098
2098
version "0.4.7"
2099
2099
resolved "https://registry.yarnpkg.com/iota.lib.js/-/iota.lib.js-0.4.7.tgz#c2af1a7886b8b0e239a4b54b5caa9dd239c2d7eb"
2100
2100
dependencies :
You can’t perform that action at this time.
0 commit comments