Developer Kit
Release Notes Writer
Translates technical commit history and PR descriptions into user-facing release notes with highlights, fixes, and an upgrade guide for breaking changes. Useful for product teams that want polished release comms without manual authoring. Engineering leads owning release comms, product managers wanting structured launch notes, founders posting release announcements to customers, open-source maintainers cutting weekly releases. The result is either a mechanical commit-log dump that nobody reads or nothing at all. Both outcomes erode trust: users do not know what changed, what broke, or what to do. A writer that takes the same inputs a thoughtful engineer would use — commit history, merged PRs, issue links — and composes user-facing notes in the formats the team actually needs closes the communication gap without consuming an engineer's afternoon.
One-Time Purchase
$19.99
Release v3.2.0 — 2026-05-14
CHANGELOG.md Entry
[3.2.0] — 2026-05-14
✨ Highlights
- Dashboard load times reduced by up to 60% through server-side query batching (#PR-884)
- New webhook retry policy with exponential backoff — no more silent failures on transient errors (#PR-901)
- Native CSV and Excel export now available for all report types (#PR-876)
🚀 New Features
- Report Export (CSV / Excel) — Any saved report can now be exported directly from the report toolbar. Supports filtered views and custom column ordering. (#PR-876)
- Webhook Retry Policy — Failed webhook deliveries are now retried up to 5 times using exponential backoff (1s → 2s → 4s → 8s → 16s). Delivery status and retry history are visible in the new Webhooks log panel. (#PR-901)
- API:
POST /v2/goals/batch— Create or update up to 100 goals in a single request. See API docs. (#PR-912)
🐛 Bug Fixes
- Fixed an issue where scorecard cells with null values incorrectly displayed as 0% instead of "—" (#PR-893)
- Fixed date-range picker ignoring timezone offset for users in UTC+5:30 and UTC+5:45 (#PR-897)
- Fixed PDF exports occasionally omitting the last page when the report exceeded 50 rows (#PR-888)
- Resolved a race condition that could cause duplicate entries when saving a measure update rapidly (#PR-909)
⚠️ Breaking Changes
GET /v1/reportsremoved — This endpoint was deprecated in v2.8.0. All clients must migrate toGET /v2/reports. See the Upgrade Guide below. (#PR-919)- Webhook payload format updated — The
triggered_atfield is now an ISO 8601 string (was Unix timestamp). Consumers must update parsing logic. (#PR-901)
🔒 Security
- Upgraded
jsonwebtokendependency to 9.0.2 to address CVE-2024-38997 (moderate severity, token validation edge case). (#PR-921)
🔧 Internal (not user-facing)
- Migrated CI pipeline from CircleCI to GitHub Actions (#PR-878)
- Refactored measure calculation engine for maintainability — no behavior change (#PR-882)
GitHub Release Body
ClearPoint Nexus v3.2.0 ships faster dashboards, smarter webhooks, and long-requested export options.
What's new:
- ⚡ Dashboard loads up to 60% faster thanks to server-side query batching
- 📤 Export any report to CSV or Excel directly from the report toolbar
- 🔁 Webhook retries with exponential backoff — plus a new delivery log so you can see exactly what happened
- 🚀 New
POST /v2/goals/batchAPI endpoint for bulk goal management
Bug fixes: null scorecard values, timezone-offset date pickers, truncated PDF exports, and a measure-save race condition.
⚠️ Breaking changes in this release:
GET /v1/reportshas been removed (deprecated since v2.8.0) → migrate toGET /v2/reports- Webhook
triggered_atfield is now ISO 8601 (was Unix timestamp)
Full upgrade steps: see UPGRADE.md or the release notes below.
🔒 Security patch included (CVE-2024-38997).
Upgrade Guide — Breaking Changes
1. GET /v1/reports Endpoint Removal
Who is affected: Any integration or script calling GET /v1/reports.
Why: This endpoint was deprecated in v2.8.0 and has now been removed.
Steps:
- Search your codebase for
/v1/reports. - Replace all calls with
GET /v2/reports. - Note that v2 returns a
datawrapper:{ "data": [...], "meta": { ... } }. Update any response-parsing logic accordingly. - Test in your staging environment before deploying to production.
Reference: #PR-919 | v2 API docs
2. Webhook triggered_at Field Format Change
Who is affected: Any webhook consumer that parses the triggered_at field.
Why: ISO 8601 strings are the project-wide standard for timestamps and improve interoperability with third-party tools.
Before:
{ "triggered_at": 1747228800 }
After:
{ "triggered_at": "2026-05-14T08:00:00Z" }
Steps:
- Locate any code that reads
triggered_atfrom a webhook payload. - Replace Unix timestamp parsing (e.g.,
new Date(triggered_at * 1000)) with ISO 8601 parsing (e.g.,new Date(triggered_at)). - If you store
triggered_atin a database column typed asINTEGER, migrate it toTIMESTAMPorVARCHAR. - Validate against the updated payload schema in your staging webhook endpoint before going live.
Reference: #PR-901 | Webhook docs
Social Announcement
Twitter/X Thread
Tweet 1/4 ClearPoint Nexus v3.2.0 is live 🚀
Your dashboards just got a lot faster — and a couple of long-requested features finally made it in. Here's what's new 👇
Tweet 2/4 📤 Export any report to CSV or Excel in one click — filtered views, custom columns, the works.
No more screenshotting tables or copy-pasting into spreadsheets.
Tweet 3/4 🔁 Webhook retries are here.
Failed deliveries now retry automatically (up to 5×, exponential backoff). And there's a new delivery log so you can see every attempt and its status.
Tweet 4/4
Also in v3.2.0:
⚡ Dashboards up to 60% faster
🚀 Bulk goal API (POST /v2/goals/batch)
🐛 4 bug fixes (null scorecards, timezone dates, PDF truncation, race condition)
🔒 Security patch (CVE-2024-38997)
Full release notes → [link]
LinkedIn Post
We just shipped ClearPoint Nexus v3.2.0 — and this one has a little something for everyone.
For end users: Dashboard load times are down by up to 60%, and you can now export any report directly to CSV or Excel without leaving the app.
For integrators:
Webhooks now retry automatically on failure with exponential backoff, and you can inspect every delivery attempt in the new webhook log. We've also added a POST /v2/goals/batch endpoint for teams managing goals at scale via the API.
For everyone: four bug fixes, a security patch, and cleaner, faster everything.
Full release notes and upgrade guide (there are two breaking changes in this release — please review before upgrading): [link]
#ProductUpdate #ClearPointNexus #StrategyExecution #API
Customer Email Snippet
Plain Text
Subject: ClearPoint Nexus v3.2.0 — Faster dashboards, report exports, and smarter webhooks
Hi [First Name],
ClearPoint Nexus v3.2.0 is now available. Here's a quick summary of what's changed for you:
WHAT'S NEW
- Dashboards load up to 60% faster
- Export any report to CSV or Excel directly from the report toolbar
- Webhook failures now retry automatically, with a delivery log to track every attempt
BUG FIXES
- Null scorecard values now display correctly as "—" instead of 0%
- Date-range picker now respects all timezone offsets correctly
- PDF exports no longer cut off the last page on large reports
IMPORTANT: This release includes two breaking changes for API and webhook integrations. Please review the upgrade guide before updating: [link]
Questions? Reply to this email or visit our help center at help.example.com.
The ClearPoint Team
HTML-Ready
<p>Hi [First Name],</p>
<p><strong>ClearPoint Nexus v3.2.0</strong> is now available. Here's what's new:</p>
<h3>✨ What's New</h3>
<ul>
<li>Dashboards load up to <strong>60% faster</strong></li>
<li><strong>Export reports</strong> to CSV or Excel from the report toolbar</li>
<li><strong>Webhook retries</strong> with exponential backoff and a new delivery log</li>
</ul>
<h3>🐛 Bug Fixes</h3>
<ul>
<li>Null scorecard values now display as "—" (not 0%)</li>
<li>Date-range picker timezone offset corrected</li>
<li>PDF exports no longer truncate on large reports</li>
</ul>
<p>⚠️ <strong>This release includes breaking changes</strong> for API and webhook integrations.
<a href="https://docs.example.com/releases/v3.2.0/upgrade">Review the upgrade guide</a> before updating.</p>
<p>— The ClearPoint Team</p>
View full sample →
All sales final. No refunds on digital products.
Includes support for Claude Code, Codex, and OpenClaw in the same license.
What You Get With This Skill
Translates technical commit history and PR descriptions into user-facing release notes with highlights, fixes, and an upgrade guide for breaking changes. Useful for product teams that want polished release comms without manual authoring.
All ClearPoint Nexus Skills Include
- Production-ready workflow packaging for three supported platforms.
- Reusable structure designed for repeatable operator tasks.
- Clear deliverable format, not just raw prompt output.
Related Skills
$19.99
One-time license
$19.99
One-time license
$19.99
One-time license