cloudant-follow
Advanced tools
Comparing version 0.17.0-SNAPSHOT.28 to 0.17.0-SNAPSHOT.29
# UNRELEASED | ||
- [NEW] Allow a custom HTTP agent to be specified. | ||
- [NEW] Trim the database URL if it includes the `/_changes` endpoint. | ||
- [FIXED] Retry `/_db_updates` request using the last recorded sequence value as | ||
@@ -4,0 +5,0 @@ the `since` query parameter. |
@@ -126,3 +126,7 @@ // Copyright © 2017 IBM Corp. All rights reserved. | ||
if (self.db.match(/\/_db_updates$/)) { | ||
// using `/_db_updates` | ||
self.is_db_updates = true; | ||
} else if (self.db.match(/\/_changes$/)) { | ||
// using `/<db>/_changes` | ||
self.db = self.db.replace(/\/_changes$/, ''); // remove unnecessary endpoint | ||
} | ||
@@ -129,0 +133,0 @@ |
{ | ||
"name": "cloudant-follow", | ||
"version": "0.17.0-SNAPSHOT.28", | ||
"version": "0.17.0-SNAPSHOT.29", | ||
"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
58677
1061