Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
0f9437c
feat(wallet-sqlite): add platform-wallet-sqlite crate
lklimek May 11, 2026
adf4212
ci(wallet-sqlite): wire crate into workspace CI, Dockerfile, and Carg…
lklimek May 11, 2026
cea9dda
fix(wallet-sqlite): library/CLI/tests/docs fix wave from Phase 3 QA
lklimek May 11, 2026
e26945c
feat(platform-wallet): add optional serde derives behind serde feature
lklimek May 11, 2026
8e08306
refactor(wallet-storage): rename platform-wallet-sqlite to platform-w…
lklimek May 11, 2026
74acc81
refactor(wallet-storage): use bincode-serde for BLOB columns, remove …
lklimek May 11, 2026
5bac6e3
refactor(wallet-storage): drop per-blob schema-rev tag, rely on migra…
lklimek May 11, 2026
540decf
refactor(wallet-storage): drop --dry-run from prune CLI
lklimek May 11, 2026
4cfec30
fix(platform-wallet): correct stale crate name in doc comment after w…
lklimek May 11, 2026
bd4216d
refactor(wallet-storage): rename SqlitePersisterError → WalletStorage…
lklimek May 11, 2026
f58e784
fix(wallet-storage): SEC-003 defensive update triggers + build-script…
lklimek May 11, 2026
87f38c0
chore(wallet-storage): post-review cleanup (delete CHANGELOG, JSON es…
lklimek May 11, 2026
d7a88a9
Merge branch 'v3.1-dev' into feat/platform-wallet-sqlite-persistor
lklimek May 11, 2026
dea32cc
merge: v3.1-dev into PR #3625
lklimek May 13, 2026
2caf602
docs(platform-wallet-storage): tighten comments + post-merge fmt
lklimek May 13, 2026
f6e90d1
fix(rs-platform-wallet-storage): chmod 0o600 on initial DB + backup c…
lklimek May 13, 2026
738091f
Merge remote-tracking branch 'origin/v3.1-dev' into feat/platform-wal…
lklimek May 14, 2026
ae6b4af
feat(platform-wallet): persistor backports — retry-safe flush, prepar…
Claudius-Maginificent May 18, 2026
90441b9
feat(platform): getDocuments v1 — SQL-shaped select + count surface (…
QuantumExplorer May 15, 2026
c976d53
fix: paid/unpaid classification for invalid batch transitions (#3616)
shumkov May 15, 2026
16c8156
refactor: structure v1 getDocuments where/order_by/having as typed pr…
QuantumExplorer May 17, 2026
cec1766
ci: preserve Swift SDK Rust build cache (#3632)
vivekgsharma May 17, 2026
e38c411
chore(swift-sdk): remove dash-spv-ffi crate usage, spv is wrapped by …
ZocoLini May 17, 2026
3c4ced7
feat(drive): expand count-index group-by carrier shapes (G1a/G1b/G8a-…
QuantumExplorer May 17, 2026
4cde1aa
chore: bump grovedb to develop (352c2f55) (#3656)
lklimek May 18, 2026
368d119
Merge remote-tracking branch 'origin/v3.1-dev' into work-3625-mergebase
lklimek May 19, 2026
b93bbcf
Merge remote-tracking branch 'origin/v3.1-dev' into feat/platform-wal…
lklimek May 19, 2026
f45ab09
fix(platform-wallet-storage): drain buffer on wallet delete (CMT-001)
lklimek May 19, 2026
f18a1e4
fix(platform-wallet-storage): recheck schema/version on staged copy (…
lklimek May 19, 2026
bed413e
fix(platform-wallet-storage): reject trailing bytes in blob decode (C…
lklimek May 19, 2026
e2746c3
test(platform-wallet-storage): make tc054 root-safe (CMT-004)
lklimek May 19, 2026
0eba0a8
Merge remote-tracking branch 'origin/v3.1-dev' into feat/platform-wal…
lklimek May 19, 2026
3b694f6
fix(platform-wallet-storage): handle AssetLockStatus::Consumed from v…
lklimek May 19, 2026
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
1 change: 1 addition & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
release
wasm-sdk
platform-wallet
wallet-storage
swift-example-app
kotlin-sdk
kotlin-example-app
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/tests-rs-workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ jobs:
--package platform-value \
--package rs-dapi \
--package platform-wallet \
--package platform-wallet-storage \
--package rs-sdk-ffi \
--package platform-wallet-ffi \
--package rs-dapi-client \
Expand Down Expand Up @@ -339,6 +340,7 @@ jobs:
--package platform-value \
--package rs-dapi \
--package platform-wallet \
--package platform-wallet-storage \
--package rs-sdk-ffi \
--package platform-wallet-ffi \
--package rs-dapi-client \
Expand Down
Loading
Loading