fix(release-notes): correct v26.12.0 cross-device sync claim#5
Merged
Conversation
The Home feedTab preference is written to the deck's live columns in localStorage on toggle (survives reload, no publish). It only reaches the kind-30078 deck event — and therefore other devices — after the user SAVES the deck (encodeWorkspace emits savedColumns; publishWorkspace fires on deck save, not on updateColumnConfig). The old highlight claimed automatic cross-device sync. Corrected in place; no version bump (26.12.0 shipped minutes ago, so the dialog re-renders the fixed copy for anyone who has not seen it yet). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
DocNR
added a commit
that referenced
this pull request
Jun 13, 2026
The What's-new dialog only shows release entries NEWER than the user's stored lastSeenReleaseVersion, and requires an entry whose version === APP_VERSION (src/lib/release-notes.ts). #5 corrected the 26.12.0 copy in place without a version bump, so every user who had already dismissed the 26.12.0 dialog (lastSeen === current) — and first-run users, who never see the dialog at all — never received the correction. Move the corrected entry to 26.12.1 and bump package.json to match. Verified: getUnseenReleaseNotes('26.12.0','26.12.1',NOTES) => ['26.12.1']. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
The v26.12.0 "What's new" highlight claimed the Home Notes/Notes-and-replies preference syncs to your other devices automatically. It does not.
Actual behavior (verified in code):
updateColumnConfig→setActiveDeckColumnswritesfeedTabto the deck's live columns inWORKSPACES_BY_ACCOUNTlocalStorage. Survives reload, no publish.encodeWorkspaceemitssavedColumns, andpublishWorkspacefires only on a deck save/create/rename/delete — not onupdateColumnConfig.Fix: corrected the second highlight from "syncs to your other devices" to "Save your deck to carry the choice to your other devices." Corrected in place at 26.12.0, no version bump — the release shipped minutes ago, so the dialog renders the fixed copy for anyone who hasn't dismissed it yet;
package.jsonstays matched at 26.12.0.Verified:
prettier --checkclean,tsc -bclean.🤖 Generated with Claude Code