Setting the file. One moment.
Skill 80 · Commit Message Storyteller
Subchapter 80.1
references/conventional-commits-guide.mdMarkdown4 KBView on GitHub
<type>(<scope>): <description>
[optional body]
[optional footer(s)]feat(payments): add Apple Pay support for checkout flow
Users in supported regions can now complete purchases using Apple Pay.
This reduces checkout friction and is expected to improve mobile conversion rates.
Closes #88fix(api): correct off-by-one error in pagination offset
The results page was skipping the last item on every page because the
offset calculation used `>` instead of `>=`. Users were missing records
silently with no error.
Fixes #201refactor(user-service): extract email validation into shared utility
Email validation logic was duplicated across 4 modules. Extracted into
`utils/validators.ts` so future changes only need to happen in one place.perf(dashboard): lazy-load chart components to reduce initial bundle size
The dashboard was importing all chart types upfront, adding ~180KB to the
initial load. Charts are now loaded on demand, cutting initial load time
by ~40% on slow connections.docs(readme): add local development setup instructions
New contributors were struggling to get the dev environment running.
Added step-by-step instructions covering Node version, env vars, and
the database seed command.test(auth): add coverage for concurrent login edge cases
The login flow had no tests for simultaneous requests from the same
session. Added tests that verify only one session token is issued
when multiple requests arrive in the same tick.chore(deps): upgrade eslint from v8 to v9
v8 reached end-of-life. Migrated config to flat config format required
by v9. No rule changes — this is a tooling-only update.ci: add caching for node_modules in GitHub Actions
Cold CI runs were taking 4+ minutes due to repeated installs.
Adding cache restore on lockfile hash reduces this to ~90 seconds.revert: feat(notifications): add push notification opt-in
Reverts commit a3f92bc.
The push notification feature caused a crash on Android 12 devices.
Rolling back until the root cause is identified.The scope is optional but strongly recommended. It should be:
auth, api, dashboard, paymentsuser and users)Add BREAKING CHANGE: in the footer (or use ! after the type):
feat(api)!: remove v1 endpoints
All v1 REST endpoints have been removed following the 6-month deprecation
notice. Consumers must migrate to v2 before upgrading.
BREAKING CHANGE: /api/v1/* routes no longer exist. See migration guide at docs/v2-migration.mdAsk yourself before writing the body:
Avoid:
| ❌ Bad | ✅ Better |
|---|---|
fix bug | fix(cart): prevent duplicate items on rapid add-to-cart clicks |
updates | feat(profile): allow users to update display name |
WIP | Don’t commit WIP — stash it |
misc changes | Split into separate, meaningful commits |
John's changes | Describe what changed, not who changed it |