Skip to content

Latest commit

Β 

History

History
177 lines (128 loc) Β· 7.16 KB

File metadata and controls

177 lines (128 loc) Β· 7.16 KB

CHANGELOG Entry Format

Reference for writing and reviewing CHANGELOG entries in the hoist-react library CHANGELOG.md.

Library vs. Application changelogs: This guide applies to hoist-react and other Hoist library packages. Hoist application changelogs have different formatting requirements β€” see the Application Changelogs section at the end of this document.

Entry Structure

Every major version entry should use this structure. Minor/patch releases use whichever sections apply.

## {VERSION} - {YYYY-MM-DD}

### πŸ’₯ Breaking Changes (upgrade difficulty: {RATING})

See [`docs/upgrade-notes/v{NN}-upgrade-notes.md`](docs/upgrade-notes/v{NN}-upgrade-notes.md) for
detailed, step-by-step upgrade instructions with before/after code examples.

* {Required change 1}
* {Required change 2}
    * {Sub-detail if needed}
* ...

### 🎁 New Features

* {Feature description}

### 🐞 Bug Fixes

* {Fix description}

### βš™οΈ Technical

* {Internal change description}

### βš™οΈ Typescript API Adjustments

* {Type-level change description}

### πŸ€– AI Docs + Tooling

* {AI docs/tooling change description}

### ✨ Styles

* {CSS/SCSS change description}

### πŸ“š Libraries

* {Library} `{old} β†’ {new}`

Section Headers

Use these emoji-prefixed headers consistently:

Section Header When to Include
Breaking Changes ### πŸ’₯ Breaking Changes Required app changes exist
New Features ### 🎁 New Features New capabilities added
Bug Fixes ### 🐞 Bug Fixes Bugs fixed
Technical ### βš™οΈ Technical Internal changes worth noting
TS API Adjustments ### βš™οΈ Typescript API Adjustments Type-level changes (signatures, generics, exports)
AI Docs + Tooling ### πŸ€– AI Docs + Tooling AI assistant docs, MCP server, CLI tools
Styles ### ✨ Styles CSS/SCSS changes, new variables, class renames
Libraries ### πŸ“š Libraries Major dependency version bumps

Note: TS API Adjustments and Technical share the βš™οΈ emoji but are distinct sections. TS API Adjustments covers type signature changes that may affect app compilation but not runtime behavior. Technical covers internal implementation changes worth noting.

Voice and Tense

  • Past tense, action-driven for descriptions: "Enhanced", "Fixed", "Added", "Improved", "Removed", "Refactored"
  • Imperative for developer instructions: "Update", "Adjust", "Remove", "Migrate"
  • Avoid starting bullets with "New" (prefer "Added"), "Support for" (prefer "Added support for"), or present tense verbs like "Fix", "Allow", "Enable"

Examples

Good:

* Enhanced `GridModel` column state management to support partial updates.
* Added support for `warning` and `info` severity in `Field.rules`.
* Fixed regression with `Store.revert()` on stores with summary records.

Bad:

* New support for warning severity in rules    (use "Added", not "New support for")
* Fix to regression in Store.revert            (use "Fixed regression", not "Fix to")
* Allow improved editing of columns            (use "Enhanced" or "Added", not "Allow")

Breaking Changes Section

Every major version with breaking changes MUST include all of the following. Do not skip or reorder these requirements:

  1. Difficulty rating in the header β€” append (upgrade difficulty: {RATING}) to the section header. See Difficulty Ratings below for the rating scale.
  2. Upgrade notes link as a standalone sentence β€” immediately after the header (before any bullets), include a sentence linking to the upgrade notes file. This is not a bullet point β€” it is a standalone paragraph. Use this exact format:
    See [`docs/upgrade-notes/v{NN}-upgrade-notes.md`](docs/upgrade-notes/v{NN}-upgrade-notes.md) for
    detailed, step-by-step upgrade instructions with before/after code examples.
  3. List every required app-level change as a separate bullet
  4. Be specific β€” name exact classes, methods, and config keys
  5. Link to relevant framework upgrade guides (e.g. Blueprint, AG Grid) when applicable

Each bullet should be concise (1-2 lines). The upgrade notes file handles expanded detail with before/after code examples.

Difficulty Ratings

When upgrade notes exist for a major version, include a difficulty rating:

### πŸ’₯ Breaking Changes (upgrade difficulty: πŸŽ‰ TRIVIAL)
### πŸ’₯ Breaking Changes (upgrade difficulty: 🟒 LOW - {brief description})
### πŸ’₯ Breaking Changes (upgrade difficulty: 🟠 MEDIUM - {brief description})
### πŸ’₯ Breaking Changes (upgrade difficulty: πŸ”΄ HIGH - {brief description})

Libraries Section

List major dependency version changes with backtick-wrapped versions:

### πŸ“š Libraries

* @blueprintjs/core `5.10 β†’ 6.3`
* react-grid-layout `1.5 β†’ 2.1`
* typescript `5.8 β†’ 5.9`

Use abbreviated versions where the minor/patch isn't significant (e.g. 6.3 not 6.3.1).

General Guidelines

  • Positive tone: Favor words like "Enhanced", "Improved", "Streamlined" where accurate. Concisely note why a change is an improvement when not obvious from context (e.g. "Improved shutdown handling β€” ensures full cleanup if the component unmounts unexpectedly"). Accuracy always takes precedence β€” bug fixes should be reported clearly as such.
  • Conciseness: This is a changelog, not a guide. One bullet = one change, 1-3 lines max. Upgrade notes provide granular detail when needed; keep changelog entries brief and scannable.
  • Specificity: Name classes, methods, and config keys in backticks.
  • Completeness: Changes that modify behavior, APIs, or configuration in ways developers need to know about should be accounted for. Trivial changes (formatting, internal refactors with no behavioral impact, tooling updates) do not need to be included.
  • No duplication: Don't repeat the same change across sections. Pick the most relevant section.
  • Issue/PR links: Don't add GitHub issue or PR links (e.g. [#1234]) to entries by default. Include one only when explicitly requested, or when it points to extensive context that genuinely doesn't fit the changelog's scope. Issue/PR references normally belong in the commit message and PR description, not the changelog.
  • Punctuation: End each bullet with a period.
  • Line wrapping: Hard-wrap list item text at 100 characters. Use two-space indentation for continuation lines. This keeps the raw Markdown readable in editors and diffs.

Application Changelogs

Hoist application changelogs (e.g. in app repos that depend on @xh/hoist) follow different formatting rules than the library changelog described above. Application changelogs are parsed at runtime by a Hoist release notes feature that displays them within the app UI.

Do NOT hard-wrap list items in application changelogs. Each bullet point must be a single unwrapped line β€” the release notes parser treats line breaks within a list item as separate entries. Let the viewing tool handle display wrapping.

All other conventions (section headers, voice/tense, backtick-wrapped specificity) apply to both library and application changelogs.