diff --git a/.changeset/metal-fans-argue.md b/.changeset/metal-fans-argue.md deleted file mode 100644 index e933212c..00000000 --- a/.changeset/metal-fans-argue.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@powersync/op-sqlite': minor ---- - -Fixed single write transaction operations in `ps_crud` not being processed. Batching update notifications per write lock. -This will also fix downstream features such as watched queries and reactive query hooks in cases where the query is fired before the data was committed, and batching will improve performance specifically in cases where a lot of data changes occur. diff --git a/packages/powersync-op-sqlite/CHANGELOG.md b/packages/powersync-op-sqlite/CHANGELOG.md index ce2968de..4657dd10 100644 --- a/packages/powersync-op-sqlite/CHANGELOG.md +++ b/packages/powersync-op-sqlite/CHANGELOG.md @@ -1,5 +1,12 @@ # @powersync/op-sqlite +## 0.2.0 + +### Minor Changes + +- 181a9db: Fixed single write transaction operations in `ps_crud` not being processed. Batching update notifications per write lock. + This will also fix downstream features such as watched queries and reactive query hooks in cases where the query is fired before the data was committed, and batching will improve performance specifically in cases where a lot of data changes occur. + ## 0.1.4 ### Patch Changes diff --git a/packages/powersync-op-sqlite/package.json b/packages/powersync-op-sqlite/package.json index b0fe1518..2a16d025 100644 --- a/packages/powersync-op-sqlite/package.json +++ b/packages/powersync-op-sqlite/package.json @@ -1,6 +1,6 @@ { "name": "@powersync/op-sqlite", - "version": "0.1.4", + "version": "0.2.0", "description": "PowerSync - sync Postgres or MongoDB with SQLite in your React Native app for offline-first and real-time data", "source": "./src/index.ts", "main": "./lib/commonjs/index.js",