From 65244093136bb850e3aba6addef6a4ab4bbe6a1c Mon Sep 17 00:00:00 2001 From: murashit Date: Sat, 18 Jul 2026 11:56:40 +0900 Subject: [PATCH] chore(release): 5.1.0 --- .github/release-notes/5.1.0.md | 6 ++++++ README.md | 2 +- manifest.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- src/app-server/connection/compatibility.json | 2 +- versions.json | 3 ++- 7 files changed, 14 insertions(+), 7 deletions(-) create mode 100644 .github/release-notes/5.1.0.md diff --git a/.github/release-notes/5.1.0.md b/.github/release-notes/5.1.0.md new file mode 100644 index 00000000..e1d06162 --- /dev/null +++ b/.github/release-notes/5.1.0.md @@ -0,0 +1,6 @@ +## Changes + +- Added search to Codex Panel settings. +- Large web, thread, selection, and vault references are now bounded predictably, report truncation when needed, and keep their context details after reopening a thread. +- Paste and drop attachments now preserve their intended insertion point while files are being saved, with clearer composer editing state. +- Improved reliability when switching threads, leaving running subagents, or changing runtime and app-server settings, preventing stale results and lost updates. diff --git a/README.md b/README.md index ff5abadf..ab657d7d 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ Use `/help` for the current slash command list. | -------------------------------------- | --------- | --------------------------------------------------------------------------------------------------- | | `manifest.minAppVersion` | `1.12.0` | Minimum Obsidian desktop version declared for plugin loading. | | `obsidian` API types | `1.12.3` | TypeScript API package used for compile-time checks; kept in the same minor as `manifest` baseline. | -| `codexAppServer.testedCliVersion` | `0.144.4` | Exact CLI patch used to generate and verify bindings; compatibility is tracked by minor version. | +| `codexAppServer.testedCliVersion` | `0.144.5` | Exact CLI patch used to generate and verify bindings; compatibility is tracked by minor version. | Codex Panel depends on the experimental `codex app-server` API. diff --git a/manifest.json b/manifest.json index b309c7be..7a9b1f6a 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "codex-panel", "name": "Codex Panel", - "version": "5.0.4", + "version": "5.1.0", "minAppVersion": "1.12.0", "description": "Codex in your sidebar.", "author": "murashit", diff --git a/package-lock.json b/package-lock.json index bfdbdd64..ec668894 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "codex-panel", - "version": "5.0.4", + "version": "5.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "codex-panel", - "version": "5.0.4", + "version": "5.1.0", "license": "Apache-2.0", "dependencies": { "@tanstack/query-core": "^5.101.2", diff --git a/package.json b/package.json index a532840b..f8aae7fe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codex-panel", - "version": "5.0.4", + "version": "5.1.0", "description": "Codex in your Obsidian sidebar.", "main": "main.js", "author": "murashit", diff --git a/src/app-server/connection/compatibility.json b/src/app-server/connection/compatibility.json index a8c20e68..ac9e3d4b 100644 --- a/src/app-server/connection/compatibility.json +++ b/src/app-server/connection/compatibility.json @@ -1,6 +1,6 @@ { "codexAppServer": { - "testedCliVersion": "0.144.4", + "testedCliVersion": "0.144.5", "typeGeneration": { "arguments": ["app-server", "generate-ts", "--experimental"] }, diff --git a/versions.json b/versions.json index 73540684..1b1c0176 100644 --- a/versions.json +++ b/versions.json @@ -83,5 +83,6 @@ "5.0.1": "1.12.0", "5.0.2": "1.12.0", "5.0.3": "1.12.0", - "5.0.4": "1.12.0" + "5.0.4": "1.12.0", + "5.1.0": "1.12.0" }