Skip to content

Commit 7be7f22

Browse files
committed
Changelog entries.
1 parent 1a3a3be commit 7be7f22

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

PowerSync/PowerSync.Common/CHANGELOG.md

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

33
## 0.0.7-alpha.1
4+
- Added fallback to check the application's root directory for the PowerSync extension - fixing compatibility with WPF/WAP, .NET Framework <= 4.8, and other platforms that flatten DLLs into the base folder.
45
- Added `ExecuteBatch()` implementation.
6+
- Added `GetUploadQueueStats()` to `PowerSyncDatabase`.
7+
- Altered query methods, `Execute()`, `GetAll()`, `GetOptional()`, `Get()`, `Watch()`, to support null parameters in their parameters list, for example:
8+
9+
```csharp
10+
db.Execute(
11+
"INSERT INTO assets(id, description, make) VALUES(?, ?, ?)",
12+
[id, name, null] // last parameter is an explicit null value
13+
);
14+
```
515

616
## 0.0.6-alpha.1
717
- Updated to the latest version (0.4.10) of the core extension.

PowerSync/PowerSync.Maui/CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
# PowerSync.Maui Changelog
22

3+
## 0.0.5-alpha.1
4+
- Upstream PowerSync.Common version bump (See Powersync.Common changelog 0.0.7-alpha.1 for more information)
5+
36
## 0.0.4-alpha.1
4-
- Upstream PowerSync.Common version bump (See Powersync.Common changelog for more information)
7+
- Upstream PowerSync.Common version bump (See Powersync.Common changelog 0.0.6-alpha.1 for more information)
58
- Added ability to specify `AppMetadata` sync/stream requests (see Common changelog).
69

710
## 0.0.3-alpha.1
8-
- Upstream PowerSync.Common version bump
11+
- Upstream PowerSync.Common version bump (See PowerSync.Common change 0.0.5-alpha.1 for more information)
912
- Using the latest (0.4.9) version of the core extension, it introduces support for the Rust Sync implementation and also makes it the default - users can still opt out and use the legacy C# sync implementation as option when calling `connect()`.
1013

1114
## 0.0.2-alpha.1

0 commit comments

Comments
 (0)