<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Kevin</title>
    <description>The latest articles on DEV Community by Kevin (@kevin_0c9771c73bf455ab2a0).</description>
    <link>https://dev.to/kevin_0c9771c73bf455ab2a0</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4142117%2F454db0f6-8375-4df8-87d4-d908190bb413.png</url>
      <title>DEV Community: Kevin</title>
      <link>https://dev.to/kevin_0c9771c73bf455ab2a0</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kevin_0c9771c73bf455ab2a0"/>
    <language>en</language>
    <item>
      <title>I built a CLI that checks whether your release notes match what actually shipped</title>
      <dc:creator>Kevin</dc:creator>
      <pubDate>Fri, 25 Sep 2026 02:09:13 +0000</pubDate>
      <link>https://dev.to/kevin_0c9771c73bf455ab2a0/i-built-a-cli-that-checks-whether-your-release-notes-match-what-actually-shippedpublished-false-55bg</link>
      <guid>https://dev.to/kevin_0c9771c73bf455ab2a0/i-built-a-cli-that-checks-whether-your-release-notes-match-what-actually-shippedpublished-false-55bg</guid>
      <description>&lt;p&gt;Most release notes are generated from the tag. Squash-merge subjects, PR titles, maybe a conventional-commit parser. The output always matches the tag because the tag is the input.&lt;/p&gt;

&lt;p&gt;That's fine for a changelog. It doesn't answer a harder question: &lt;strong&gt;did the release claim match what actually shipped?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A release claim comes from somewhere else — a Jira board, a GitHub project, a spreadsheet someone maintains. It says "v2.4 contains PROJ-101, PROJ-102, and PROJ-103." The question is whether that's true. Did all three land? Did anything else land that nobody mentioned?&lt;/p&gt;

&lt;p&gt;I built &lt;a href="https://github.com/kacxx/shipledger" rel="noopener noreferrer"&gt;Shipledger&lt;/a&gt; to answer that.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it does
&lt;/h2&gt;

&lt;p&gt;Shipledger walks the commit range between two tags and reconciles what it finds against a changeset file you provide. The changeset lists the items you claimed shipped. The CLI checks whether git agrees.&lt;/p&gt;

&lt;p&gt;It runs locally. No GitHub API calls, no network access, no tokens. Just your repo on disk.&lt;/p&gt;

&lt;p&gt;Two things can go wrong:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;A commit has no matching item.&lt;/strong&gt; Something shipped that the release doesn't claim. Shipledger calls this &lt;code&gt;unknown-reference&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;An item has no matching commit.&lt;/strong&gt; The release claims work that isn't in the tag. Shipledger calls this &lt;code&gt;items-without-commits&lt;/code&gt;.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Both are findings. Whether they're problems depends on context — but now you know about them.&lt;/p&gt;

&lt;h2&gt;
  
  
  A concrete example
&lt;/h2&gt;

&lt;p&gt;I set up a &lt;a href="https://github.com/kacxx/shipledger-demo" rel="noopener noreferrer"&gt;demo repo&lt;/a&gt; with two releases to show both outcomes.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;v0.2.0&lt;/strong&gt; claims two items: #1 (Add widget) and #2 (Handle empty input). Both commits appear in the &lt;code&gt;v0.1.0..v0.2.0&lt;/code&gt; range. The check passes:&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
bash
npx shipledger check \
  --config shipledger.config.json \
  --changeset changesets/v0.2.0.json \
  --out verified-v0.2.0.json
## exit 0 — pass
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>opensource</category>
      <category>devops</category>
      <category>cli</category>
      <category>git</category>
    </item>
  </channel>
</rss>
