Skip to content

Commit 369fb0b

Browse files
doozMenStijn Willemsclaude
authored
chore: Update to swift-structured-queries 0.30.0-fork.1 (#14)
* fix: Use stable versions for all dependencies - GRDB: Switch from doozMen fork (branch: master) to upstream groue/GRDB.swift (from: 7.9.0) - swift-sharing: Switch from branch pin to tag 2.7.4 - swift-structured-queries: Switch from branch pin to tag 0.25.2 This enables valid tagged releases of sqlite-data. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * chore: Use doozMen/GRDB.swift 7.9.0-fork.1 fork tag Switch GRDB dependency from groue/GRDB.swift to doozMen/GRDB.swift fork with exact version 7.9.0-fork.1 for yuki-ping compatibility. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * chore: Update to swift-structured-queries 0.30.0-fork.1 - Adds @DatabaseFunction support for computed properties (fixes SyncEngine.isSynchronizing) - Updates Package.swift dependencies to use exact version 0.30.0-fork.1 - Adds missing InlineSnapshotTesting and StructuredQueriesTestSupport dependencies to SQLiteDataTestSupport - Note: Some tests fail on Swift 6.3-dev due to compiler bug (sqlite-data issue #2) --------- Co-authored-by: Stijn Willems <stijn@promptping.ai> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 1c5920e commit 369fb0b

2 files changed

Lines changed: 15 additions & 25 deletions

File tree

Package.resolved

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

Package.swift

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,15 @@ let package = Package(
2525
],
2626
dependencies: [
2727
.package(url: "https://github.com/apple/swift-collections", from: "1.0.0"),
28-
// NB: Fork synced with upstream v7.9.0
29-
.package(url: "https://github.com/doozMen/GRDB.swift", branch: "master"),
28+
.package(url: "https://github.com/doozMen/GRDB.swift", exact: "7.9.0-fork.1"),
3029
.package(url: "https://github.com/pointfreeco/swift-concurrency-extras", from: "1.0.0"),
3130
.package(url: "https://github.com/pointfreeco/swift-custom-dump", from: "1.3.3"),
3231
.package(url: "https://github.com/pointfreeco/swift-dependencies", from: "1.9.0"),
33-
// NB: Fork with Swift 6.3 fixes
34-
.package(url: "https://github.com/doozMen/swift-sharing", branch: "fix/swift-623-optimizer-crash"),
32+
.package(url: "https://github.com/doozMen/swift-sharing", from: "2.7.4"),
3533
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing", from: "1.18.4"),
36-
// NB: Fork with Swift 6.3 fixes
3734
.package(
3835
url: "https://github.com/doozMen/swift-structured-queries",
39-
branch: "main",
36+
exact: "0.30.0-fork.1",
4037
traits: [
4138
.trait(
4239
name: "StructuredQueriesTagged",
@@ -70,6 +67,8 @@ let package = Package(
7067
"SQLiteData",
7168
.product(name: "ConcurrencyExtras", package: "swift-concurrency-extras"),
7269
.product(name: "CustomDump", package: "swift-custom-dump"),
70+
.product(name: "InlineSnapshotTesting", package: "swift-snapshot-testing"),
71+
.product(name: "StructuredQueriesTestSupport", package: "swift-structured-queries"),
7372
]
7473
),
7574
.testTarget(

0 commit comments

Comments
 (0)