docs: collapse native-storage mode enum to local|cloud#42
Open
andrei-hasna wants to merge 3 commits into
Open
Conversation
Retire the obsolete local/remote/hybrid three-mode framing in the canonical native-storage reference doc. Cloud mode now explicitly means AWS RDS + optional S3; @hasna/cloud runtime is noted as removed.
Contributor
Author
|
Automated merge review: not merge-ready, so I did not merge this PR. Hard blockers:
Local validation run in the isolated worktree:
Created follow-up todos task |
…94874d9d-4590-45b2-aace-4121d8e3bc13-9b58a287
Contributor
Author
|
Worker update for task 94874d9d-4590-45b2-aace-4121d8e3bc13:
Remaining blocker: non-author review. Attempting to request selected reviewer kriptoburak failed via GitHub REST with HTTP 422: Reviews may only be requested from collaborators; kriptoburak is not currently a collaborator of hasna/todos. Follow-up todo created: e93a91dd-441a-4e8a-be95-e7068fb33a88. Manual action required: add/select a valid non-author collaborator reviewer, then approve or merge PR #42. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
local/remote/hybridthree-mode storage enum indocs/native-storage.mdto the binarylocal|cloudmodel (cloud = AWS RDS + optional S3).@hasna/cloudshared runtime is retired; cloud storage is explicit opt-in viaHASNA_TODOS_STORAGE_MODE=cloud.adapter.remote.*,remote_artifact_store).Closes docs cleanup for task c4195198 (epic 56ed8b94).
Test plan
grep -rniE '\bhybrid\b' docs/native-storage.mdreturns nothinggrep -n 'HASNA_TODOS_STORAGE_MODE=' docs/native-storage.mdshows onlylocalandcloudvaluesgrep -nE '=remote|=hybrid' docs/native-storage.mdreturns nothingNotes
Intentional docs/code drift remains:
src/storage/config.tsstill parsesremote|hybriduntil a future code-migration task. Design task 5ede7a57 may refine wording further.