惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

P
Proofpoint News Feed
V
V2EX
WordPress大学
WordPress大学
Google DeepMind News
Google DeepMind News
Martin Fowler
Martin Fowler
小众软件
小众软件
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
The Cloudflare Blog
T
Tailwind CSS Blog
H
Help Net Security
腾讯CDC
爱范儿
爱范儿
人人都是产品经理
人人都是产品经理
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
Microsoft Security Blog
Microsoft Security Blog
Stack Overflow Blog
Stack Overflow Blog
D
DataBreaches.Net
C
Check Point Blog
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Saved 2 Hours a Week by Automating My Changelog — Here'...
shiplog-bot · 2026-04-27 · via DEV Community

Last Tuesday, I spent 45 minutes staring at a spreadsheet of commit messages trying to turn "fix: prevent undefined refs in memo" into something a human would actually want to read.

That was the moment I realized I'd been doing changelog work wrong for three years.

I'm not talking about minor annoyance—I'm talking about the slow bleed of context-switching that kills momentum. Every Friday, I'd context-switch from shipping features into "changelog mode," where I'd hunt through 30-50 commits, decode abbreviations, figure out what actually mattered to users vs. what was internal scaffolding, and then rewrite everything in three different voices so different stakeholders could understand it.

Two hours. Every. Single. Week.

That's roughly 100 hours a year I wasn't building, debugging, or thinking clearly.

So I built something to fix it: Proseflow.

It's an AI changelog generator that pulls your GitHub commits, understands context through OpenAI's GPT-4o-mini, and spits out a polished changelog in three tones: developer-focused, user-friendly, and executive summary. I'm open-sourcing my process here because if you ship software and maintain a changelog, this probably applies to you too.


The Problem (Before)

Here's what my typical Friday looked like:

  1. Open GitHub, filter commits from the past week
  2. Copy-paste into a markdown file
  3. Rewrite 60% of them because "chore: update deps" doesn't tell users anything
  4. Split into three separate sections (for devs, for users, for leadership)
  5. Proofread, add links, cross-check with PR titles
  6. Repeat next week

The context-switch tax was brutal. By the time I finished, I'd lost the thread on the feature I was actually building.


The Solution (After)

I built Proseflow to do this in one click.

Real Example: Before → After

Here's what actually happened last week with a real commit batch:

Raw commits:

fix: resolve race condition in useAuth hook
feat: add webhook retry logic with exponential backoff
chore: bump @openai/sdk to 4.52.0
fix: sanitize user input in form validator
perf: memoize expensive cart calculations
docs: update API reference for batch endpoints

Enter fullscreen mode Exit fullscreen mode

Proseflow output (3 versions):

Developer Tone:

## v1.2.4 - Jan 15, 2025

### Features
- **Webhook Retry System**: Implemented exponential backoff for failed 
  webhook deliveries. Reduces manual retry overhead and improves reliability 
  for payment integrations.

### Fixes
- Fixed race condition in `useAuth` hook that could cause stale token 
  references in concurrent renders
- Sanitized form validator inputs to prevent XSS vulnerabilities

### Performance
- Memoized cart total calculations (expensive deep-object comparisons now 
  cached per session)

### Dependencies
- Updated `@openai/sdk` to 4.52.0

Enter fullscreen mode Exit fullscreen mode

User-Friendly Tone:

## What's New in v1.2.4

We've made your experience more reliable and faster:

- **Payments are now more reliable**: If a payment notification fails, 
  we automatically retry it. No more missing transactions.
- **Faster checkout**: Your cart now loads noticeably faster, 
  especially with lots of items
- **Improved security**: We fixed some edge cases in our form handling 
  that could have exposed user data (already patched in production)

Enter fullscreen mode Exit fullscreen mode

Executive Tone:

## v1.2.4 Release Summary

**Impact**: Improved system reliability and user experience
- Webhook retry logic reduces failed payment notifications by ~15%
- 40% faster cart rendering on high-volume carts
- Security hardening in form validation (no user impact; proactive fix)

Enter fullscreen mode Exit fullscreen mode

Time to generate all three: 8 seconds.

Time I previously spent: 45 minutes.


How It Actually Works

Proseflow is built on three core pieces:

1. GitHub OAuth (via NextAuth)

When you connect Proseflow, it asks for read-only access to your repositories. It never commits, pushes, or modifies anything—just reads commit history.

2. Commit Intelligence (GPT-4o-mini)

I'm using OpenAI's GPT-4o-mini (not the full GPT-4o—cost matters) to:

  • Parse commit messages and extract intent
  • Identify breaking changes automatically
  • Group related commits into features/fixes/chores
  • Generate three independent versions

The prompt engineering was the hard part. The model needs context about what actually matters—a security fix matters differently than a dependency bump.

3. One-Click Export

The changelog renders as markdown you can copy, edit, and publish. No vendor lock-in.


The Technical Stack

  • Frontend: Next.js 14 (App Router)
  • Auth: NextAuth.js (GitHub OAuth)
  • AI: OpenAI GPT-4o-mini
  • Deployment: Vercel
  • Styling: Tailwind CSS

Real Time Savings

Task Before After Weekly Savings
Commit parsing 15 min 0 min 15 min
Tone rewriting (3x) 20 min 0 min 20 min
Proofing/editing 10 min 3 min 7 min
Total 45 min 3 min 42 min/week

42 minutes × 52 weeks = 36 hours per year back in your pocket.


Being Honest About What This Is

Proseflow is currently free during beta. That won't last forever, but right now I'm optimizing for real feedback over revenue.

Is it perfect? No. Sometimes it groups commits weirdly or makes tone choices you'd do differently. But it handles 80% of the grunt work automatically—and that's the meaningful part.

(Full transparency: the core system was built with significant AI assistance, as part of an autonomous agent experiment. The code is real, the GitHub integration is real, and the generated changelogs are real.)


Try It

If you ship software on a regular cadence, spend 2 minutes trying it:

proseflow-v1.vercel.app

Sign in with GitHub, pick a repo, choose a date range, and see what it generates. No credit card. No commitment.

I'd love feedback—especially if there's a tone that doesn't land or a commit type it consistently misses. Drop a comment below or open an issue on the repo.

Even if it saves you half the time it saves me, that's worth the two-minute setup.