chore: release v0.8.2 — security fixes + growth features + flashy README#117
Merged
chore: release v0.8.2 — security fixes + growth features + flashy README#117
Conversation
## Version bumped across - package.json + package-lock.json - plugin/.claude-plugin/plugin.json - src/version.ts (union type) - src/types.ts ExportData.version union - src/functions/export-import.ts supportedVersions set - test/export-import.test.ts assertion Also fixed the ExportData version union syntax: prior releases used commas (`| "0.7.9", "0.8.0", "0.8.1"`) instead of pipes, which would not work as intended. Fixed to a proper pipe-separated union. ## CHANGELOG.md New file documenting v0.8.2 in Keep-a-Changelog format. Sections: **Security (6 fixes)** — addresses CVEs in default deployments: - [CRITICAL] Stored XSS in viewer - [CRITICAL] curl|sh in CLI startup - [HIGH] Default 0.0.0.0 binding - [HIGH] Unauthenticated mesh sync - [MEDIUM] Path traversal in Obsidian export - [MEDIUM] Incomplete secret redaction **Added**: - agentmemory demo CLI command - benchmark/COMPARISON.md - integrations/openclaw/ gateway plugin - Token savings dashboard in CLI + viewer - Paste-this-prompt blocks - 60 custom SVG tags (30 dark + 30 light variants) - Real agent logos in Supported Agents grid **Changed**: - README redesigned with SVG tags, brand palette - Supported Agents grid reordered - Default ports bound to 127.0.0.1 - Hero stat row uses custom SVG cards **Fixed**: - Viewer cost calculation 100x underreporting - ObservationType union missing "image" - Dynamic imports inside eviction loops - OpenClaw /context payload contract - Cursor cell missing label - Codex logo 404 **Infrastructure**: - 654 tests (up from 646), 8 new security tests - All 60 SVGs validated - README consistency check updated
|
Caution Review failedPull request was closed or merged during review 📝 WalkthroughWalkthroughThis PR bumps the package version from 0.8.1 to 0.8.2 across package.json, plugin manifest, version constants, and export version support lists, with a new CHANGELOG.md documenting the release. Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~8 minutes Possibly related PRs
Poem
🚥 Pre-merge checks | ✅ 2 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
This was referenced Apr 13, 2026
Merged
Merged
This was referenced Apr 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Release v0.8.2
This release ships 6 security fixes, growth features (demo command, competitor comparison, OpenClaw plugin, token savings dashboard), and a full README redesign with 60 custom SVG tags.
Users on v0.8.1 should upgrade immediately — v0.8.1 ships with vulnerabilities in default deployments (default 0.0.0.0 binding, unauthenticated mesh sync, curl|sh install, stored XSS in viewer, path traversal in Obsidian export, incomplete secret redaction).
What's in this PR
package.json,package-lock.json,plugin/.claude-plugin/plugin.json,src/version.ts,src/types.ts,src/functions/export-import.ts,test/export-import.test.tsCHANGELOG.mdin Keep-a-Changelog format with full v0.8.2 release notessrc/types.ts— the ExportData version union was using commas instead of pipes (broken syntax from a prior release)Content already merged
All content for v0.8.2 is already on main via these merged PRs:
This PR is the formal release cut.
After merge
v0.8.2on the merge commitgh release create v0.8.2with notes from CHANGELOG.mdnpm publish(manual, needs maintainer's npm token)Validation
npm run build— cleannpm test— 654/654 passingSummary by CodeRabbit
Security
New Features
demoCLI command and benchmark documentation.Changed
Fixed