ueberdb2 2.2.1 → 2.2.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Notable Changes
2
2
 
3
+ ## v3.0.0
4
+
5
+ Compatibility changes:
6
+
7
+ * Minimum supported Node.js version is now 14.15.0.
8
+ * As mentioned in the v2.2.0 changes, passing callbacks to the database
9
+ methods is deprecated. Use the returned Promises instead.
10
+ * As mentioned in the v1.4.15 changes, `postgrespool` is deprecated. Use
11
+ `postgres` instead.
12
+
13
+ Updated database dependencies:
14
+
15
+ * `couch`: Updated `nano` to 10.0.0.
16
+ * `dirty_git`: Updated `simple-git` to 3.7.1.
17
+ * `elasticsearch`: Updated `elasticsearch` to 16.7.3.
18
+ * `postgres`: Updated `pg` to 8.7.3.
19
+ * `sqlite`: Updated `sqlite3` to 5.0.6.
20
+
3
21
  ## v2.2.0
4
22
 
5
23
  Compatibility changes:
package/package.json CHANGED
@@ -21,24 +21,24 @@
21
21
  }
22
22
  ],
23
23
  "dependencies": {
24
- "async": "^3.2.2",
24
+ "async": "^3.2.3",
25
25
  "cassandra-driver": "^4.6.3",
26
26
  "dirty": "^1.1.3",
27
- "elasticsearch": "^16.7.2",
27
+ "elasticsearch": "^16.7.3",
28
28
  "mongodb": "^3.7.3",
29
29
  "mssql": "^8.1.0",
30
30
  "mysql": "2.18.1",
31
- "nano": "^9.0.5",
32
- "pg": "^8.7.1",
31
+ "nano": "^10.0.0",
32
+ "pg": "^8.7.3",
33
33
  "redis": "^3.1.2",
34
34
  "rethinkdb": "^2.4.2",
35
- "simple-git": "^3.6.0"
35
+ "simple-git": "^3.7.1"
36
36
  },
37
37
  "optionalDependencies": {
38
- "sqlite3": "github:mapbox/node-sqlite3#593c9d498be2510d286349134537e3bf89401c4a"
38
+ "sqlite3": "^5.0.6"
39
39
  },
40
40
  "devDependencies": {
41
- "cli-table": "^0.3.8",
41
+ "cli-table": "^0.3.11",
42
42
  "eslint": "^7.32.0",
43
43
  "eslint-config-etherpad": "^2.0.3",
44
44
  "eslint-plugin-cypress": "^2.12.1",
@@ -57,7 +57,7 @@
57
57
  "url": "https://github.com/ether/ueberDB.git"
58
58
  },
59
59
  "main": "./index",
60
- "version": "2.2.1",
60
+ "version": "2.2.2",
61
61
  "bugs": {
62
62
  "url": "https://github.com/ether/ueberDB/issues"
63
63
  },
@@ -117,6 +117,6 @@
117
117
  "root": true
118
118
  },
119
119
  "engines": {
120
- "node": "^10.17.0 || >=11.14.0"
120
+ "node": ">=14.15.0"
121
121
  }
122
122
  }