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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.11.0] - 2026-05-22

### Added

- Live TOTP code in the item list — the 6-digit code and seconds-remaining now render inline on each row that has a TOTP secret, updating every second and turning destructive-coloured at ≤5s, so you can copy without opening the detail view
- Duplicate item from the detail view — opens the new-item form pre-populated from the source (title suffixed `" (copy)"`, folder seeded), so you can fork and edit any field before saving. Hidden for viewers of read-only shared vaults
- Recently Viewed section at the top of the vault list — surfaces the last 5 items you opened when no filter or search is active and you're in single-vault mode. Cleared on lock and sign-out so it cannot outlive the keychain that owned it

### Internal

- `QuotaSlot` brand (`apps/server/src/vaults/quota.ts`) — `reserveItemQuota` mints a slot carrying `vaultId`; `items.createWithVersion` and `batchCreateWithVersion` now require one, so an item insert can no longer skip the lock-count-limit assertion at compile time. Matches the brand-as-obligation pattern of `ProofOfSession` and `TxDb`
- `registerCompleteAuthRoute` factory (`apps/server/src/routes/auth/complete-route.ts`) — folds the `asTx → service → sendAuthFailure → session.attachCookie → 200 reply` seam shared by `completeLogin`, `completeRegistration`, and `completeRecovery` into one helper. Each `complete-*.ts` file shrinks to its variance (path, schema, rate-limit count, and a `run(tx, request, clock)` callback that calls the service and shapes the payload)
- [ADR-0009](docs/adr/0009-thin-vault-resource-services-are-intentional.md) — records why uniformly-shaped thin vault-resource services (e.g. `FoldersService`) are kept rather than dissolved

## [0.10.0] - 2026-05-20

### Added
Expand Down
2 changes: 1 addition & 1 deletion apps/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blindpass/server",
"version": "0.10.0",
"version": "0.11.0",
"private": true,
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blindpass/web",
"version": "0.10.0",
"version": "0.11.0",
"private": true,
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blindpass",
"version": "0.10.0",
"version": "0.11.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/api-schema/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blindpass/api-schema",
"version": "0.10.0",
"version": "0.11.0",
"private": true,
"type": "module",
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion packages/crypto/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blindpass/crypto",
"version": "0.10.0",
"version": "0.11.0",
"private": true,
"type": "module",
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion packages/vault/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blindpass/vault",
"version": "0.10.0",
"version": "0.11.0",
"private": true,
"type": "module",
"exports": {
Expand Down