chore(yargs-extra): Add CHANGELOG.md#687
Conversation
Greptile Summary
Confidence Score: 4/5The change is documentation-only and does not affect runtime behavior, but the changelog needs release-history corrections before it is reliable for consumers auditing package changes. The modified surface is small and limited to one changelog, with the main risk being inaccurate historical attribution rather than code execution impact. yargs-extra/CHANGELOG.md
What T-Rex did
Reviews (1): Last reviewed commit: "chore(yargs-extra): Add CHANGELOG.md" | Re-trigger Greptile |
| ## [0.0.10] - 2024-07-02 | ||
|
|
||
| ### Changed | ||
|
|
||
| - Updated development dependencies: `@types/lodash` from `4.17.5` to `4.17.6` and TypeScript from `5.4.5` to `5.5.3`. | ||
| - Renamed the type-check script from `type:check` to `check:type`. |
There was a problem hiding this comment.
Correct release attribution The changelog lists changes under release headings that do not match when they actually landed. The
check:type rename appears under 0.0.10, but that release only bumped the version and dependency versions; likewise, the package manager metadata and engine constraints appear under 0.0.6, but those were added while the package was still at 0.0.5. Consumers using this changelog to audit release boundaries can get the wrong version for script, pnpm, and engine changes. Please move these entries to the releases where they occurred, or remove them from the incorrect sections.
Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!
| @@ -0,0 +1,149 @@ | |||
| # Changelog | |||
|
|
|||
| All notable changes to `@bpinternal/yargs-extra` from `0.0.3` through `0.0.21` are documented in this file. | |||
There was a problem hiding this comment.
Missing earlier releases This changelog says it covers notable changes starting at
0.0.3, but the package history includes earlier published versions. 0.0.1 introduced the package, and 0.0.2 changed @types/yargs between dependency groups. Consumers using this changelog to audit release history will miss those pre-0.0.3 changes unless they are documented or explicitly marked as intentionally omitted.
This PR adds a changelog for yargs-extra.
(vibed)