Skip to content

Commit 9825bc8

Browse files
Merge remote-tracking branch 'origin/main' into attachmentshelper
2 parents 156b31f + 9333846 commit 9825bc8

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

.github/workflows/build_and_test.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ jobs:
1313
- name: Build and Test
1414
run: |
1515
xcodebuild test -scheme PowerSync -destination "platform=iOS Simulator,name=iPhone 15"
16+
xcodebuild test -scheme PowerSync -destination "platform=macOS,arch=arm64,name=My Mac"

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
# 1.0.0-Beta.10 (unreleased)
3+
# 1.0.0-Beta.10
44

55
* Added the ability to specify a custom logging implementation
66
```swift
@@ -20,6 +20,13 @@
2020
)
2121
```
2222
* added `.close()` method on `PowerSyncDatabaseProtocol`
23+
* Update `powersync-kotlin` dependency to version `1.0.0-BETA29`, which fixes these issues:
24+
* Fix potential race condition between jobs in `connect()` and `disconnect()`.
25+
* Fix race condition causing data received during uploads not to be applied.
26+
* Fixed issue where automatic driver migrations would fail with the error:
27+
```
28+
Sqlite operation failure database is locked attempted to run migration and failed. closing connection
29+
```
2330

2431
## 1.0.0-Beta.9
2532

Package.resolved

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ let package = Package(
88
name: packageName,
99
platforms: [
1010
.iOS(.v13),
11+
.macOS(.v10_15)
1112
],
1213
products: [
1314
// Products define the executables and libraries a package produces, making them visible to other packages.
@@ -16,7 +17,7 @@ let package = Package(
1617
targets: ["PowerSync"]),
1718
],
1819
dependencies: [
19-
.package(url: "https://github.com/powersync-ja/powersync-kotlin.git", exact: "1.0.0-BETA28.0"),
20+
.package(url: "https://github.com/powersync-ja/powersync-kotlin.git", exact: "1.0.0-BETA29.0"),
2021
.package(url: "https://github.com/powersync-ja/powersync-sqlite-core-swift.git", "0.3.12"..<"0.4.0")
2122
],
2223
targets: [

0 commit comments

Comments
 (0)