chore(release): 5.1.1

This commit is contained in:
murashit 2026-07-20 21:17:14 +09:00
parent a2c896d0ae
commit 1f5aa50862
6 changed files with 13 additions and 6 deletions

6
.github/release-notes/5.1.1.md vendored Normal file
View file

@ -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.

View file

@ -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.

View file

@ -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",

4
package-lock.json generated
View file

@ -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",

View file

@ -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",

View file

@ -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"
}