@feathersjs/rest-client
Advanced tools
Comparing version 1.4.0 to 1.4.1
# Change Log | ||
## [v1.4.0](https://github.com/feathersjs/rest-client/tree/v1.4.0) (2018-05-17) | ||
[Full Changelog](https://github.com/feathersjs/rest-client/compare/v1.3.4...v1.4.0) | ||
**Closed issues:** | ||
- Need a way to abort requests [\#29](https://github.com/feathersjs/rest-client/issues/29) | ||
- Pass request options to transport \(request\) [\#26](https://github.com/feathersjs/rest-client/issues/26) | ||
**Merged pull requests:** | ||
- Add support for passing library options in params.connection [\#30](https://github.com/feathersjs/rest-client/pull/30) ([daffl](https://github.com/daffl)) | ||
- Update dependencies to enable Greenkeeper 🌴 [\#28](https://github.com/feathersjs/rest-client/pull/28) ([greenkeeper[bot]](https://github.com/apps/greenkeeper)) | ||
## [v1.3.4](https://github.com/feathersjs/rest-client/tree/v1.3.4) (2018-03-17) | ||
@@ -4,0 +17,0 @@ [Full Changelog](https://github.com/feathersjs/rest-client/compare/v1.3.3...v1.3.4) |
@@ -28,3 +28,3 @@ const query = require('qs'); | ||
if (typeof id !== 'undefined' && id !== null) { | ||
url += `/${id}`; | ||
url += `/${encodeURIComponent(id)}`; | ||
} | ||
@@ -31,0 +31,0 @@ |
{ | ||
"name": "@feathersjs/rest-client", | ||
"description": "REST client services for different Ajax libraries", | ||
"version": "1.4.0", | ||
"version": "1.4.1", | ||
"homepage": "https://github.com/feathersjs/rest-client", | ||
@@ -72,3 +72,3 @@ "main": "lib/index.js", | ||
"semistandard": "^12.0.0", | ||
"shx": "^0.2.2", | ||
"shx": "^0.3.0", | ||
"superagent": "^3.5.2", | ||
@@ -75,0 +75,0 @@ "uglify-js": "^3.0.24", |
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
22526