Skip to content

Commit 93b09c7

Browse files
committed
chore: bump version to 0.17.6
For provenance purposes, this commit was AI assisted.
1 parent 32fc0f9 commit 93b09c7

10 files changed

Lines changed: 31 additions & 7 deletions

File tree

apps/copilot/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "plannotator-copilot",
33
"description": "Interactive Plan & Code Review for GitHub Copilot CLI. Visual annotations, team sharing, structured feedback.",
4-
"version": "0.17.5",
4+
"version": "0.17.6",
55
"author": { "name": "backnotprop" },
66
"repository": "https://github.com/backnotprop/plannotator",
77
"license": "MIT OR Apache-2.0",

apps/hook/.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "plannotator",
33
"description": "Interactive Plan Review: Mark up and refine your plans using a UI, easily share for team collaboration, automatically integrates with plan mode hooks.",
4-
"version": "0.17.5",
4+
"version": "0.17.6",
55
"author": {
66
"name": "backnotprop"
77
},

apps/opencode-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@plannotator/opencode",
3-
"version": "0.17.5",
3+
"version": "0.17.6",
44
"description": "Plannotator plugin for OpenCode - interactive plan review with visual annotation",
55
"author": "backnotprop",
66
"license": "MIT OR Apache-2.0",

apps/pi-extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@plannotator/pi-extension",
3-
"version": "0.17.5",
3+
"version": "0.17.6",
44
"type": "module",
55
"description": "Plannotator extension for Pi coding agent - interactive plan review with visual annotation",
66
"author": "backnotprop",

openpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: plannotator
2-
version: 0.17.5
2+
version: 0.17.6
33
description: Annotate Claude Code and other agent plans and review code visually. Share with your team, and send feedback to your agent with one click
44
author: backnotprop
55
license: MIT/Apache2.0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "plannotator",
3-
"version": "0.17.5",
3+
"version": "0.17.6",
44
"private": true,
55
"description": "Interactive Plan Review for Claude Code - annotate plans visually, share with team, automatically send feedback",
66
"author": "backnotprop",

packages/server/annotate.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,14 @@ export async function startAnnotateServer(
249249
headers: { "Content-Type": "text/html" },
250250
});
251251
},
252+
253+
error(err) {
254+
console.error("[plannotator] Server error:", err);
255+
return new Response(
256+
`Internal Server Error: ${err instanceof Error ? err.message : String(err)}`,
257+
{ status: 500, headers: { "Content-Type": "text/plain" } },
258+
);
259+
},
252260
});
253261

254262
break; // Success, exit retry loop

packages/server/index.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -535,6 +535,14 @@ export async function startPlannotatorServer(
535535
headers: { "Content-Type": "text/html" },
536536
});
537537
},
538+
539+
error(err) {
540+
console.error("[plannotator] Server error:", err);
541+
return new Response(
542+
`Internal Server Error: ${err instanceof Error ? err.message : String(err)}`,
543+
{ status: 500, headers: { "Content-Type": "text/plain" } },
544+
);
545+
},
538546
});
539547

540548
break; // Success, exit retry loop

packages/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@plannotator/server",
3-
"version": "0.17.5",
3+
"version": "0.17.6",
44
"private": true,
55
"description": "Shared server implementation for Plannotator plugins",
66
"main": "index.ts",

packages/server/review.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -660,6 +660,14 @@ export async function startReviewServer(
660660
headers: { "Content-Type": "text/html" },
661661
});
662662
},
663+
664+
error(err) {
665+
console.error("[plannotator] Server error:", err);
666+
return new Response(
667+
`Internal Server Error: ${err instanceof Error ? err.message : String(err)}`,
668+
{ status: 500, headers: { "Content-Type": "text/plain" } },
669+
);
670+
},
663671
});
664672

665673
break; // Success, exit retry loop

0 commit comments

Comments
 (0)