diff --git a/.github/release-notes/5.1.1.md b/.github/release-notes/5.1.1.md new file mode 100644 index 00000000..d0e6c970 --- /dev/null +++ b/.github/release-notes/5.1.1.md @@ -0,0 +1,6 @@ +## Changes + +- Thread history now stays in sync across the chat toolbar, thread picker, and Threads view while loading older threads or refreshing. +- Thread search now uses fuzzy title matching across the complete active history instead of matching thread IDs. +- Running subagent summaries now show each agent's latest activity instead of only its initial status. +- Opening the thread picker again now closes the previous picker, and accepted MCP links are preserved in conversation history. diff --git a/docs/release.md b/docs/release.md index 41c533ba..81c909e8 100644 --- a/docs/release.md +++ b/docs/release.md @@ -20,7 +20,7 @@ jj git push --remote origin --bookmark main git push origin X.Y.Z ``` -`release:prepare` updates version files and drafts `## Changes` from selected Conventional Commits since the previous version. Review the draft against the full diff for complete, user-facing notes; consolidate and reorder entries as needed, and replace an empty placeholder. +`release:prepare` updates version files and drafts `## Changes` from selected Conventional Commits since the previous version. Use those commits to locate candidate changes, then compare the resulting user-visible behavior with the previous release before choosing the version. Review the draft against the full diff for complete, user-facing notes; consolidate and reorder entries as needed, and replace an empty placeholder. Run `release:preflight` after the release commit is on `main`; it validates the commit range and release readiness. diff --git a/manifest.json b/manifest.json index 7a9b1f6a..793b147a 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "codex-panel", "name": "Codex Panel", - "version": "5.1.0", + "version": "5.1.1", "minAppVersion": "1.12.0", "description": "Codex in your sidebar.", "author": "murashit", diff --git a/package-lock.json b/package-lock.json index d1d215e1..64d4bbfd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "codex-panel", - "version": "5.1.0", + "version": "5.1.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "codex-panel", - "version": "5.1.0", + "version": "5.1.1", "license": "Apache-2.0", "dependencies": { "@tanstack/query-core": "^5.101.2", diff --git a/package.json b/package.json index 753dc0c9..15eb76e1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codex-panel", - "version": "5.1.0", + "version": "5.1.1", "description": "Codex in your Obsidian sidebar.", "main": "main.js", "author": "murashit", diff --git a/versions.json b/versions.json index 1b1c0176..3d70b915 100644 --- a/versions.json +++ b/versions.json @@ -84,5 +84,6 @@ "5.0.2": "1.12.0", "5.0.3": "1.12.0", "5.0.4": "1.12.0", - "5.1.0": "1.12.0" + "5.1.0": "1.12.0", + "5.1.1": "1.12.0" }