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: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.12] - 2026-05-07

### Added (F18 — time-travel slider, SINGLE mode)

- **`/api/snapshot?at=ISO`** — read-only endpoint reconstructing workspace state at any past ISO 8601 timestamp. Resolves `at` → commit SHA via `git rev-list -1 --before=<at> --first-parent HEAD -- .forgeplan/`, then reconstructs via `git worktree add --detach` to `os.tmpdir()` + `forgeplan reindex` (rebuilds LanceDB inside the temp worktree from markdown source-of-truth) + `forgeplan list/graph --json`. Two-tier cache: in-memory LRU (32 entries, 60s TTL) + on-disk (`.forgeplan-web/.snapshots/<sha>.json`). Cold path 660 ms (39 artifacts), warm 10–11 ms.
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": "@forgeplan/web",
"version": "0.1.11",
"version": "0.1.12",
"description": "Interactive realtime web map for a Forgeplan workspace. Ships a pre-built SvelteKit app and a tiny init/start CLI — no npm install at user side.",
"type": "module",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion template/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "forgeplan-web-app",
"private": true,
"version": "0.1.11",
"version": "0.1.12",
"type": "module",
"scripts": {
"dev": "vite dev --port 5174 --host 127.0.0.1",
Expand Down
Loading