You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+18-1Lines changed: 18 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [Unreleased]
8
8
9
+
## [5.0.0]
10
+
### Added
11
+
- JavaScript sources and TypeScript declarations are now available in both CommonJS- and ESM-compatible variants ([#226](https://github.com/MetaMask/auto-changelog/pull/226))
12
+
- Add option to changelog validation to ensure that each entry in the changelog links to one or more originating PRs ([#222](https://github.com/MetaMask/auto-changelog/pull/222))
13
+
- Pass `--pr-links` to the CLI, or pass `ensureValidPrLinksPresent` to `validateChangelog` to enable this behavior, ideally in your `lint` package script or CI workflow
14
+
- Add an optional `shouldExtractPrLinks` option to `parseChangelog` ([#222](https://github.com/MetaMask/auto-changelog/pull/222))
15
+
- When true, this will extract pull request links from the text of each entry, identify the pull numbers, and keep them in a separate array
16
+
- See note on `Changelog.getReleaseChanges` below for more
17
+
18
+
### Changed
19
+
-**BREAKING:**`Changelog.getReleaseChanges` now returns an object whose values are objects of shape `{ description: string; prNumbers: string[] }` rather than simply `string` (the description) ([#222](https://github.com/MetaMask/auto-changelog/pull/222))
20
+
- This affects `parseChangelog` as well, since it returns an instance of `Changelog`
21
+
-**BREAKING:** Bump minimum Node version to 18.20 ([#227](https://github.com/MetaMask/auto-changelog/pull/227))
22
+
-**BREAKING:** Custom subpath imports are no longer supported ([#226](https://github.com/MetaMask/auto-changelog/pull/226))
23
+
- You may now only import `@metamask/auto-changelog` and `@metamask/auto-changelog/package.json`
24
+
9
25
## [4.1.0]
10
26
### Added
11
27
- Add `--autoCategorize` flag to `update` command ([#212](https://github.com/MetaMask/auto-changelog/pull/212))
@@ -141,7 +157,8 @@ Includes the following features:
141
157
- Monorepo support ([#41](https://github.com/MetaMask/auto-changelog/pull/41))
0 commit comments