Full changelog between two versions
changelog_betweenRetrieve complete release notes for every npm package version in a range, covering features, fixes, and deprecations to provide full upgrade context beyond breaking changes.
Instructions
Return the complete release notes (not just breaking lines) for every version of an npm package between from (exclusive) and to (inclusive), newest first. Use when you need full context — new features, fixes, deprecations — not only breaking changes, or when breaking_changes_between reports the maintainer wrote breaking notes prose-style.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Upper-bound version (inclusive). | |
| from | Yes | Lower-bound version (exclusive). | |
| package | Yes | npm package name. | |
| maxChars | No | Truncate combined output to this many characters (default 12000) to protect the context window. |