Skip to content

Commit fad684f

Browse files
Updated dependencies;
Updated CHANGELOG.md;
1 parent ba756be commit fad684f

File tree

5 files changed

+326
-671
lines changed

5 files changed

+326
-671
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
For changes before version 0.1.6, please see the commit history
88

9+
## [0.1.8] - 2020-12-07
10+
11+
### Updated
12+
- dependencies
13+
14+
## [0.1.7] - 2020-10-15
15+
16+
### Updated
17+
- dependencies
18+
919
## [0.1.6] - 2020-10-15
1020

1121
### Updated

lib/core/CPAxios.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const axios = require('axios');
2-
const CPromise = require('c-promise2');
2+
const {CPromise} = require('c-promise2');
33
const {Axios} = axios;
44

55
const isThenable = (thing) => thing && typeof thing.then === 'function';
@@ -44,7 +44,7 @@ class CPAxios extends Axios {
4444
}),
4545
}).then(resolve, reject);
4646
})
47-
}, {signal});
47+
}, {signal, nativeController: true});
4848

4949
return promise;
5050
}

0 commit comments

Comments
 (0)