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
2 changes: 1 addition & 1 deletion Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "absurder-sql"
version = "0.1.26"
version = "0.1.27"
authors = ["Nicholas G. Piesco"]
description = "AbsurderSQL - SQLite + IndexedDB that's absurdly better than absurd-sql"
description = "High-performance SQLite for browsers (IndexedDB or Hybrid OPFS), native apps, and mobile, with export/import and multi-tab coordination"
license = "AGPL-3.0"
repository = "https://github.com/npiesco/absurder-sql"
edition = "2024"
Expand Down
2 changes: 1 addition & 1 deletion absurder-sql-mobile/Cargo.lock

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

2 changes: 1 addition & 1 deletion docs/HYBRID_OPFS_PLAN.md
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ match storage.backend {

**No storage-backend change.** All OPFS code remains gated behind `#[cfg(target_arch = "wasm32")]`, so mobile continues to use `rusqlite` + `fs_persist` on real filesystems.

Follow-up validation by `npiesco` exercised the complete locked UniFFI host suite. It corrected mobile import schema qualification so an empty destination cannot resolve `DROP TABLE` against the attached backup, replaced blocking per-database locks with async-aware Tokio mutexes, refreshed the mobile lockfile to AbsurderSQL 0.1.26, and finished with 67/67 tests plus warning-free clippy.
Follow-up validation by `npiesco` exercised the complete locked UniFFI host suite. It corrected mobile import schema qualification so an empty destination cannot resolve `DROP TABLE` against the attached backup, replaced blocking per-database locks with async-aware Tokio mutexes, kept the mobile lockfile aligned with the root AbsurderSQL package version, and finished with 67/67 tests plus warning-free clippy.

| Platform | Storage Backend | Changed? |
|----------|----------------|----------|
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@npiesco/absurder-sql",
"version": "0.1.26",
"description": "High-performance SQLite for browsers with IndexedDB persistence. Export/import databases, multi-tab coordination, dual-mode (browser + native).",
"version": "0.1.27",
"description": "High-performance SQLite for browsers with IndexedDB or Hybrid OPFS persistence, export/import, multi-tab coordination, and a production offline PWA.",
"type": "module",
"main": "./pkg/absurder_sql.js",
"module": "./pkg/absurder_sql.js",
Expand Down
6 changes: 3 additions & 3 deletions pkg/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"collaborators": [
"Nicholas G. Piesco"
],
"description": "AbsurderSQL - SQLite + IndexedDB that's absurdly better than absurd-sql",
"version": "0.1.26",
"description": "High-performance SQLite for browsers (IndexedDB or Hybrid OPFS), native apps, and mobile, with export/import and multi-tab coordination",
"version": "0.1.27",
"license": "AGPL-3.0",
"repository": {
"type": "git",
Expand All @@ -22,4 +22,4 @@
"sideEffects": [
"./snippets/*"
]
}
}
Loading