Skip to content

Commit

Permalink
Merge branch 'master' of github.com:pubkey/rxdb
Browse files Browse the repository at this point in the history
  • Loading branch information
pubkey committed Dec 9, 2024
2 parents 2345897 + 9929fef commit d54b028
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"@capacitor/ios": "6.2.0",
"@capacitor/preferences": "6.0.3",
"assert": "2.1.0",
"express": "4.21.1",
"express": "4.21.2",
"express-pouchdb": "4.2.0",
"font-awesome": "4.7.0",
"material-design-icons": "3.0.1",
Expand Down
4 changes: 4 additions & 0 deletions orga/BACKLOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ Create a package that normalizes and optimizes mango queries.
- Use index for $regex query if possible https://www.mongodb.com/docs/manual/reference/operator/query/regex/#index-use
- If $eq on primaryKey and has other operators, use a find-by-id and the filter the results on the query operators.

## Use JSON1 in SQLITE when it is supported in native android

https://www.powersync.com/blog/sqlite-optimizations-for-ultra-high-performance

## Add plugin for postgREST replication

[https://docs.postgrest.org/](https://docs.postgrest.org/)
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@
"test:node:memory:loop": "npm run test:node:memory && npm run test:node:memory:loop",
"test:node:dexie:loop": "npm run test:node:dexie && npm run test:node:dexie:loop",
"test:node:foundationdb:loop": "npm run test:node:foundationdb && npm run test:node:foundationdb:loop",
"test:node:custom": "npm run transpile && cross-env DEFAULT_STORAGE=custom mocha --expose-gc --config ./config/.mocharc.cjs ./test_tmp/unit.test.js",
"test:node:custom": "npm run transpile && cross-env DEFAULT_STORAGE=custom mocha --expose-gc --config ./config/.mocharc.cjs ./test_tmp/unit.test.js --experimental-sqlite",
"// test:node:loop": "runs tests in node in a loop. Use this to debug tests that only fail sometimes",
"test:node:loop": "npm run test:node && npm run test:node:loop",
"test:node:loop:memory-random-delay": "npm run test:node:memory-random-delay && npm run test:node:loop:memory-random-delay",
Expand Down Expand Up @@ -396,7 +396,7 @@
"test:performance:foundationdb": "npm run transpile && cross-env DEFAULT_STORAGE=foundationdb mocha --config ./config/.mocharc.cjs ./test_tmp/performance.test.js --unhandled-rejections=strict --expose-gc",
"test:performance:mongodb": "npm run transpile && cross-env DEFAULT_STORAGE=mongodb mocha --config ./config/.mocharc.cjs ./test_tmp/performance.test.js --unhandled-rejections=strict --expose-gc",
"test:performance:custom:browser": "npm run transpile && cross-env DEFAULT_STORAGE=custom CI=true karma start ./config/karma.performance.conf.cjs --single-run",
"test:performance:custom:node": "npm run transpile && cross-env DEFAULT_STORAGE=custom mocha --config ./config/.mocharc.cjs ./test_tmp/performance.test.js --unhandled-rejections=strict --expose-gc",
"test:performance:custom:node": "npm run transpile && cross-env DEFAULT_STORAGE=custom mocha --config ./config/.mocharc.cjs ./test_tmp/performance.test.js --unhandled-rejections=strict --expose-gc --experimental-sqlite",
"test:performance": "npm run build && npm run test:performance:dexie && npm run test:performance:memory:browser && npm run test:performance:memory:node",
"test:query-correctness-fuzzing:memory:node": "npm run transpile && cross-env DEFAULT_STORAGE=memory mocha --config ./config/.mocharc.cjs ./test_tmp/query-correctness-fuzzing.test.js --unhandled-rejections=strict --expose-gc",
"test:query-correctness-fuzzing:custom:node": "npm run transpile && cross-env DEFAULT_STORAGE=custom mocha --config ./config/.mocharc.cjs ./test_tmp/query-correctness-fuzzing.test.js --unhandled-rejections=strict --expose-gc",
Expand Down Expand Up @@ -526,7 +526,7 @@
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "50.6.0",
"exists-file": "3.0.2",
"express": "4.21.1",
"express": "4.21.2",
"express-graphql": "0.12.0",
"fake-indexeddb": "6.0.0",
"firebase-tools": "13.27.0",
Expand Down Expand Up @@ -584,4 +584,4 @@
"eslint": "9.16.0",
"webpack-dev-server": "5.1.0"
}
}
}

0 comments on commit d54b028

Please sign in to comment.