Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions .changeset/canonical-post-links.md

This file was deleted.

2 changes: 2 additions & 0 deletions .changeset/sync-release-main.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## 0.11.1

### Patch Changes

- af09e7a: Emit canonical `/p/<id>` post links everywhere a link is produced, finishing
the post/surface vocabulary migration. The CLI (`sideshow publish` / `update`
output), the viewer's copy-link and open-as-image actions, the `<link
rel="canonical">` / OpenGraph preview tags, the viewer's History API URL shapes
(`/p/:id` and `/session/:id/p/:postId`), and every MCP tool response —
including the deprecated `publish_surface` / `publish_snippet` aliases — now
return `/p/` URLs.

Nothing inbound changes: `/s/:id`, `/session/:id/s/:postId`, and `/s/:id.png`
remain accepted as legacy aliases (the screenshot Worker now matches both
`/p/:id.png` and `/s/:id.png`), and old `/s/` links keep resolving to the same
post page.

## 0.11.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion extensions/sideshow.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ function rememberSession(state, sessionId) {
}

function urlForSurface(surfaceId) {
return `${baseUrl()}/s/${surfaceId}`;
return `${baseUrl()}/p/${surfaceId}`;
}

function feedbackSummary(feedback) {
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sideshow",
"version": "0.11.0",
"version": "0.11.1",
"description": "A live visual surface for terminal coding agents — agents draw HTML snippets, you watch them in the browser and comment back.",
"keywords": [
"agent-tools",
Expand Down
Loading