Skip to content

Commit a2f6ccd

Browse files
committed
Changelog + access modifiers
1 parent 4b384cd commit a2f6ccd

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

PowerSync/PowerSync.Common/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# PowerSync.Common Changelog
22

33
## 0.0.8-alpha.1
4+
- Return an `IDisposable` from `PowerSync.Watch`, allowing for easier cancellation of watched queries.
45
- Replaced the old JSON-based method of extracting type information from queries with using Dapper internally for queries, improving memory usage and execution time for querying.
56
- Added non-generic overloads for `GetAll()`, `GetOptional()`, `Get()`, `Watch()` which return `dynamic`:
67

PowerSync/PowerSync.Common/Client/PowerSyncDatabase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ public async Task Connect(IPowerSyncBackendConnector connector, PowerSyncConnect
369369
/// <summary>
370370
/// Unsubscribe from all currently watched queries.
371371
/// </summary>
372-
public void UnsubscribeAllQueries()
372+
protected void UnsubscribeAllQueries()
373373
{
374374
watchSubscriptionCts.Cancel();
375375
watchSubscriptionCts.Dispose();

0 commit comments

Comments
 (0)