Comparing version 6.2.0 to 6.3.0
@@ -0,1 +1,8 @@ | ||
# [6.3.0](https://github.com/jdalrymple/node-gitlab/compare/6.2.0...6.3.0) (2019-06-08) | ||
### Features | ||
* Add configurable request timeout ([#341](https://github.com/jdalrymple/node-gitlab/issues/341)) ([4d99902](https://github.com/jdalrymple/node-gitlab/commit/4d99902)) | ||
# [6.2.0](https://github.com/jdalrymple/node-gitlab/compare/6.1.0...6.2.0) (2019-06-07) | ||
@@ -2,0 +9,0 @@ |
@@ -5,2 +5,3 @@ /// <reference types="../typings" /> | ||
readonly requester: Requester; | ||
readonly requestTimeout: number; | ||
readonly headers: { | ||
@@ -11,3 +12,3 @@ [header: string]: string; | ||
readonly rejectUnauthorized: boolean; | ||
constructor({ token, jobToken, oauthToken, sudo, host, url, version, camelize, rejectUnauthorized, requester, }: BaseServiceOptions); | ||
constructor({ token, jobToken, oauthToken, sudo, host, url, version, camelize, rejectUnauthorized, requester, requestTimeout }: BaseServiceOptions); | ||
} |
{ | ||
"name": "gitlab", | ||
"version": "6.2.0", | ||
"version": "6.3.0", | ||
"description": "Full NodeJS implementation of the GitLab API. Supports Promises, Async/Await.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -174,2 +174,3 @@ [![npm @latest](https://img.shields.io/npm/v/gitlab.svg)](https://www.npmjs.com/package/gitlab) | ||
requester = KyRequester, //Request Library Wrapper. Optional, Default: Currently wraps Ky. | ||
requestTimeout = 300000 //Request Library Timeout. Optional, Default: 300,000 milliseconds. | ||
}); | ||
@@ -176,0 +177,0 @@ ``` |
@@ -37,2 +37,3 @@ // Bundler | ||
requester?: Requester; | ||
requestTimeout?: number; | ||
} | ||
@@ -39,0 +40,0 @@ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
341657
2209
567