Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
eb9d614
Add EdgeZero full-migration umbrella design spec
aram356 Jul 2, 2026
1744f16
Tighten cruft-ledger precision after self-review
aram356 Jul 2, 2026
7266ef7
Link edgezero Phase 0 PR #305 in migration spec
aram356 Jul 2, 2026
2971467
Amend migration spec per review: Fastly dispatch, boot-time config, s…
aram356 Jul 2, 2026
eceaf81
Amend Phase 1 per review: runtime write path (D6) + store-id reconcil…
aram356 Jul 3, 2026
62d5437
Add Phase 1 store-registry migration implementation plan
aram356 Jul 3, 2026
dc5b605
Revise Phase 1 plan to be execution-ready (D6-a locked)
aram356 Jul 3, 2026
bbe5d67
Revise Phase 1 plan per review 4: registry-backed composite + concret…
aram356 Jul 3, 2026
1e57ad7
Add D7 config-store-only hard cutoff; fix review-5 findings
aram356 Jul 3, 2026
938c761
Point edgezero dependencies at PR #306 branch (State<T> + with_state)
aram356 Jul 3, 2026
7e914df
Amend spec/plan per review 6
aram356 Jul 3, 2026
a4e5b1b
Amend spec/plan per review 7 (wiring + trait split + store-id fixes)
aram356 Jul 3, 2026
b16a254
Amend plan per review 8 (precision, no new blockers)
aram356 Jul 3, 2026
408fffd
Amend spec/plan per review 9 (precision + Fastly composite wiring)
aram356 Jul 3, 2026
c6fdf62
Fix remaining spec key app_config -> trusted_server_config; S3 s3-aut…
aram356 Jul 3, 2026
dc91e5d
Amend plan per review 10 (integration surfaces, flat secrets, blob-ke…
aram356 Jul 3, 2026
99c67ae
Review 10b: pin note + Cloudflare side-channel/Viceroy merge fixes
aram356 Jul 3, 2026
7efe648
Adopt full-convergence direction: app! macro + run_app + State<AppState>
aram356 Jul 3, 2026
571ac68
Add P0-C + P0-D edgezero spec (Fastly run_app fidelity + macro app-st…
aram356 Jul 3, 2026
669a428
Move P0-C/P0-D spec to the edgezero worktree (edgezero deliverable)
aram356 Jul 3, 2026
b0d27cc
Link Phase 0 to edgezero PR #306 (impl PR) instead of #305 (spec PR)
aram356 Jul 4, 2026
dcd7038
Amend spec/plan per review 11 (Phase 1/5 boundary + drift/KV/manifest…
aram356 Jul 4, 2026
52487b5
Amend spec/plan per review 12 (final cleanup)
aram356 Jul 4, 2026
d8d099a
Amend spec/plan per review 13 (KV-registry cross-cutting task)
aram356 Jul 4, 2026
87d4087
Amend plan per review 14 (KvHandle type decision + Task 5 scope)
aram356 Jul 4, 2026
affc79f
Fix remaining kv_store_named -> kv_handle_named in Task 5 files list
aram356 Jul 4, 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
111 changes: 19 additions & 92 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ criterion = { version = "0.5", default-features = false, features = ["cargo_benc
derive_more = { version = "2.0", features = ["display", "error"] }
directories = "5"
ed25519-dalek = { version = "2.2", features = ["rand_core"] }
edgezero-adapter-axum = { git = "https://github.com/stackpop/edgezero", branch = "main", default-features = false }
edgezero-adapter-cloudflare = { git = "https://github.com/stackpop/edgezero", branch = "main", default-features = false }
edgezero-adapter-fastly = { git = "https://github.com/stackpop/edgezero", branch = "main", default-features = false }
edgezero-adapter-spin = { git = "https://github.com/stackpop/edgezero", branch = "main", default-features = false }
edgezero-cli = { git = "https://github.com/stackpop/edgezero", branch = "main" }
edgezero-core = { git = "https://github.com/stackpop/edgezero", branch = "main", default-features = false }
edgezero-adapter-axum = { git = "https://github.com/stackpop/edgezero", branch = "worktree-state-nested-secrets-spec-review", default-features = false }
edgezero-adapter-cloudflare = { git = "https://github.com/stackpop/edgezero", branch = "worktree-state-nested-secrets-spec-review", default-features = false }
edgezero-adapter-fastly = { git = "https://github.com/stackpop/edgezero", branch = "worktree-state-nested-secrets-spec-review", default-features = false }
edgezero-adapter-spin = { git = "https://github.com/stackpop/edgezero", branch = "worktree-state-nested-secrets-spec-review", default-features = false }
edgezero-cli = { git = "https://github.com/stackpop/edgezero", branch = "worktree-state-nested-secrets-spec-review" }
edgezero-core = { git = "https://github.com/stackpop/edgezero", branch = "worktree-state-nested-secrets-spec-review", default-features = false }
env_logger = "0.11"
error-stack = "0.6"
fastly = "0.12"
Expand Down
Loading
Loading