Releases: MetaMask/auto-changelog
Releases · MetaMask/auto-changelog
3.3.0
Added
- Add
--prettier
option for Prettier-formatted changelogs (#155)
3.2.0
Added
- Add
--fix
option to validate command (#148)
3.1.0
Added
- Allow prerelease versions in release headers (#130)
3.0.0
Added
- Support alternate tag prefixes (#120)
Changed
- BREAKING: Update minimum Node.js version to v14 (#117)
- Get package version from manifest (#121)
2.6.1
Fixed
- When fetching remote tags, order by date to account for miniscule time differences between tags created within automated tests (#113)
2.6.0
Changed
- Read repository URL from package.json if
npm_package_repository_url
is not set (#111)
- This makes this package compatible with Yarn >1.
2.5.0
Added
- The
validate --rc
command now ensures there are no uncategorized changes in the current release entry (#102, #106)
2.4.0
Changed
- Permit missing separating space in "Unreleased" link reference definition (#92)
- Use
execa
to execute git commands (#94)
- This may fix subtle bugs related to git command execution, especially in CI.
2.3.0
Added
- More exports to index.ts (#86)
- Specifically, the
Changelog
class, createEmptyChangelog
, and parseChangelog
.
Fixed
- Correctly calculate the most recent git tag (#87) (#87)
- Previously, we passed the path to the project root directory as a parameter to an invocation of
git rev-list
. For all repositories, this caused most tags belonging to merge commits to be excluded. For monorepos, this also caused tags belonging to commits that didn't change any files belonging to the changelog's package / workspace to be excluded.