@cloudant/couchbackup 2.8.2-SNAPSHOT.89 → 2.8.3-SNAPSHOT.101

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGES.md CHANGED
@@ -1,3 +1,10 @@
1
+ # Unreleased
2
+ - [NOTE] Move `retry-axios` and `ibm-cloud-sdk-core` to peerDependencies.
3
+ - [UPGRADED] `@ibm-cloud/cloudant` dependency to version `0.0.25`.
4
+
5
+ # 2.8.2 (2022-02-10)
6
+ - [UPGRADED] `@ibm-cloud/cloudant` dependency to version `0.0.24`.
7
+
1
8
  # 2.8.1 (2021-12-02)
2
9
  - [FIXED] Regression from version 2.7 resulting in incorrect handling of percent-encoded credentials in the URL user-info.
3
10
 
@@ -1,4 +1,4 @@
1
- // Copyright © 2017, 2021 IBM Corp. All rights reserved.
1
+ // Copyright © 2017, 2022 IBM Corp. All rights reserved.
2
2
  //
3
3
  // Licensed under the Apache License, Version 2.0 (the "License");
4
4
  // you may not use this file except in compliance with the License.
@@ -67,7 +67,7 @@ module.exports = function(db, log, bufferSize, ee, callback) {
67
67
 
68
68
  function getChanges(since = 0) {
69
69
  debug('making changes request since ' + since);
70
- return db.service.postChangesAsStream({ db: db.db, since: since, limit: limit, seq_interval: limit })
70
+ return db.service.postChangesAsStream({ db: db.db, since: since, limit: limit, seqInterval: limit })
71
71
  .then(response => {
72
72
  response.result.pipe(liner())
73
73
  .on('error', function(err) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cloudant/couchbackup",
3
- "version": "2.8.2-SNAPSHOT.89",
3
+ "version": "2.8.3-SNAPSHOT.101",
4
4
  "description": "CouchBackup - command-line backup utility for Cloudant/CouchDB",
5
5
  "homepage": "https://github.com/cloudant/couchbackup",
6
6
  "repository": "https://github.com/cloudant/couchbackup.git",
@@ -13,21 +13,23 @@
13
13
  ],
14
14
  "bugs": {
15
15
  "url": "https://github.com/cloudant/couchbackup/issues",
16
- "email": "support@cloudant.com"
16
+ "email": "cldtsdks@us.ibm.com"
17
17
  },
18
18
  "license": "Apache-2.0",
19
19
  "engines": {
20
20
  "node": ">=12"
21
21
  },
22
22
  "dependencies": {
23
- "ibm-cloud-sdk-core": "^2.14",
24
- "@ibm-cloud/cloudant": "0.0.24",
25
- "retry-axios": "2.x",
23
+ "@ibm-cloud/cloudant": "0.0.25",
26
24
  "async": "^3.1.0",
27
25
  "commander": "^9.0.0",
28
26
  "debug": "~4.3.2",
29
27
  "tmp": "0.2.1"
30
28
  },
29
+ "peerDependencies": {
30
+ "ibm-cloud-sdk-core": "^2.17.10",
31
+ "retry-axios": "^2.6.0"
32
+ },
31
33
  "main": "app.js",
32
34
  "bin": {
33
35
  "couchbackup": "bin/couchbackup.bin.js",