Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ updates:
schedule:
interval: "weekly"
open-pull-requests-limit: 10
ignore:
# The thebrowsercompany fork's tags are not comparable semver: "3.0.1"
# vendors GRDB 7.4.1, while "6.6.0" vendors the older GRDB 6.6.0 that
# fails to compile on Swift 6.2. A tag-order "bump" silently downgrades
# the at-rest crypto layer — update this pin manually, never here.
- dependency-name: "github.com/thebrowsercompany/grdb.swift"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
Expand Down
6 changes: 3 additions & 3 deletions Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ let package = Package(
// GRDB packaged with SQLCipher Community Edition as an XCFramework, the
// only clean way to get encrypted SQLite over SwiftPM (GRDB 7.4.1 +
// SQLCipher 4.7.0). Pinned exactly because it is the at-rest crypto layer.
.package(url: "https://github.com/thebrowsercompany/GRDB.swift", exact: "6.6.0"),
// NOTE: this fork's tags are NOT comparable semver — "3.0.1" vendors
// GRDB 7.4.1 while "6.6.0" vendors the older GRDB 6.6.0, which no
// longer compiles on Swift 6.2 (`strcmp` out of scope). Dependabot is
// told to ignore this dependency; bump only after building locally.
.package(url: "https://github.com/thebrowsercompany/GRDB.swift", exact: "3.0.1"),
],
targets: [
// MARK: Modules
Expand Down
Loading