mirror of
https://github.com/murashit/codex-panel.git
synced 2026-07-22 06:57:10 +00:00
chore(release): 5.1.1
This commit is contained in:
parent
a2c896d0ae
commit
1f5aa50862
6 changed files with 13 additions and 6 deletions
6
.github/release-notes/5.1.1.md
vendored
Normal file
6
.github/release-notes/5.1.1.md
vendored
Normal 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.
|
||||
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -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
4
package-lock.json
generated
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue