cloudant-follow
Advanced tools
Comparing version 0.17.0-SNAPSHOT.46 to 0.17.0-SNAPSHOT.47
# UNRELEASED | ||
- [NEW] Allow a custom HTTP agent to be specified. | ||
- [NEW] Trim the database URL if it includes the `/_changes` endpoint. | ||
- [FIXED] Correctly pass request parameters to `feed.filter` function. | ||
- [FIXED] Retry `/_db_updates` request using the last recorded sequence value as | ||
@@ -5,0 +6,0 @@ the `since` query parameter. |
@@ -267,2 +267,4 @@ // Copyright © 2017, 2018 IBM Corp. All rights reserved. | ||
self.query_params = query_params; | ||
var feed_url = self.db + (self.is_db_updates ? '' : '/_changes') + '?' + querystring.stringify(query_params); | ||
@@ -278,3 +280,2 @@ | ||
req.changes_query = query_params; | ||
Object.keys(self.request).forEach(function(key) { | ||
@@ -669,3 +670,3 @@ req[key] = self.request[key]; | ||
var req = lib.JDUP({'query': self.pending.request.changes_query}); | ||
var req = lib.JDUP({'query': self.query_params}); | ||
var filter_args; | ||
@@ -672,0 +673,0 @@ |
{ | ||
"name": "cloudant-follow", | ||
"version": "0.17.0-SNAPSHOT.46", | ||
"version": "0.17.0-SNAPSHOT.47", | ||
"author": { | ||
@@ -5,0 +5,0 @@ "name": "IBM Cloudant", |
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
58714