We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1818220 commit 8046caeCopy full SHA for 8046cae
.changeset/angry-ducks-sneeze.md
@@ -0,0 +1,7 @@
1
+---
2
+'@powersync/react-native': minor
3
+'@powersync/common': minor
4
+'@powersync/web': minor
5
6
+
7
+Add alpha support for sync streams, allowing different sets of data to be synced dynamically.
packages/node/tests/utils.ts
@@ -68,6 +68,8 @@ export async function createDatabase(
68
database: {
69
dbFilename: 'test.db',
70
dbLocation: tmpdir,
71
+ // Using a single read worker (instead of multiple, the default) seems to improve the reliability of tests in GH
72
+ // actions. So far, we've not been able to reproduce these failures locally.
73
readWorkerCount: 1
74
},
75
logger: defaultLogger,
0 commit comments