Skip to content

Commit dab2fd9

Browse files
committedJun 7, 2022
FIX merge of #3807 was ignored
1 parent fe5b246 commit dab2fd9

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed
 

‎CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<!-- CHANGELOG NEWEST -->
55

66
- FIX: RxStorage should never emit an eventBulk with an empty events array.
7+
- Update PouchDB to `7.3.0`
78

89
<!-- ADD new changes here! -->
910

‎package.json

+12-12
Original file line numberDiff line numberDiff line change
@@ -141,13 +141,13 @@
141141
"modifyjs": "0.3.1",
142142
"object-path": "0.11.8",
143143
"oblivious-set": "1.0.0",
144-
"pouchdb-adapter-http": "7.2.2",
144+
"pouchdb-adapter-http": "7.3.0",
145145
"pouchdb-all-dbs": "1.1.1",
146-
"pouchdb-core": "7.2.2",
147-
"pouchdb-find": "7.2.2",
148-
"pouchdb-md5": "7.2.2",
149-
"pouchdb-replication": "7.2.2",
150-
"pouchdb-selector-core": "7.2.2",
146+
"pouchdb-core": "7.3.0",
147+
"pouchdb-find": "7.3.0",
148+
"pouchdb-md5": "7.3.0",
149+
"pouchdb-replication": "7.3.0",
150+
"pouchdb-selector-core": "7.3.0",
151151
"spark-md5": "3.0.2",
152152
"threads": "1.7.0",
153153
"unload": "2.3.1",
@@ -229,14 +229,14 @@
229229
"mocha": "9.0.2",
230230
"mocha.parallel": "0.15.6",
231231
"nconf": "0.11.4",
232-
"pouchdb": "7.2.2",
233-
"pouchdb-adapter-idb": "7.2.2",
234-
"pouchdb-adapter-leveldb": "7.2.2",
235-
"pouchdb-adapter-localstorage": "7.2.2",
236-
"pouchdb-adapter-memory": "7.2.2",
232+
"pouchdb": "7.3.0",
233+
"pouchdb-adapter-idb": "7.3.0",
234+
"pouchdb-adapter-leveldb": "7.3.0",
235+
"pouchdb-adapter-localstorage": "7.3.0",
236+
"pouchdb-adapter-memory": "7.3.0",
237237
"pouchdb-adapter-websql": "7.0.0",
238238
"pouchdb-debug": "7.2.1",
239-
"pouchdb-utils": "7.2.2",
239+
"pouchdb-utils": "7.3.0",
240240
"pre-commit": "1.2.2",
241241
"random-int": "3.0.0",
242242
"readline": "1.3.0",

‎test/unit/pouch-db-integration.test.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -357,10 +357,9 @@ config.parallel('pouch-db-integration.test.js', () => {
357357
const docs = await pouch.find({
358358
selector: {
359359
foo: {
360-
$gt: null
360+
$ne: null
361361
}
362-
},
363-
sort: ['foo']
362+
}
364363
});
365364

366365
assert.strictEqual(docs.docs.length, 1);

0 commit comments

Comments
 (0)
Please sign in to comment.