Releases: lerna/lerna-changelog
Releases · lerna/lerna-changelog
v0.8.0-beta.2
v0.8.0-beta.1
💥 Breaking Change
🚀 Enhancement
- #103 Use
cli-highlight
to syntax highlight markdown output. (@Turbo87) - #102 Improve automatic config detection. (@Turbo87)
🏠 Internal
- #101 CI: Remove
node_modules
from cache. (@Turbo87) - #100 package.json: Adjust changelog labels. (@Turbo87)
- #99 Use
prettier
to format code. (@Turbo87) - #98 Use
jest-runner-tslint
for linting. (@Turbo87) - #97 Update
make-fetch-happen
to v4.0.1. (@Turbo87) - #96 Update
fs-extra
to v6.0.1. (@Turbo87) - #95 Update
chalk
to v2.4.1. (@Turbo87) - #94 Update to Jest 23. (@Turbo87)
- #93 Update
execa
to v0.10.0. (@Turbo87) - #91 Update TSLint and fix issues. (@Turbo87)
- #90 Update
typescript
to v2.9.2. (@Turbo87)
Committers: 1
- Tobias Bieniek (Turbo87)
v0.7.0
🚀 Enhancement
🐛 Bug Fix
- #82 changelog: Handle missing issues/PRs gracefully. (@Turbo87)
- #73 Use HTTP-based caching. (@Turbo87)
🏠 Internal
- #80 GitHubAPI class refactorings. (@Turbo87)
- #72 Convert "cli" script to TypeScript and wrap in a run() function. (@Turbo87)
Committers: 1
- Tobias Bieniek (Turbo87)
v0.6.0
- Don't have to specify "repo" in the config
- Have a set of default labels
🚀 Enhancement
- #71 configuration: Derive repo from package.json and use default labels. (@Turbo87)
- #60 Add support for homu merge commits. (@Turbo87)
🐛 Bug Fix
- #70 configuration-error: Add missing "message" property. (@Turbo87)
- #64 progressBar: Split tick() into setTitle() and tick(). (@Turbo87)
🏠 Internal
- #67 Change git functions to be async using "execa". (@Turbo87)
- #66 MarkdownRenderer cleanup. (@Turbo87)
- #65 Extract "MarkdownRenderer" class. (@Turbo87)
- #61 Refactorings and code simplification (part 2). (@Turbo87)
- #59 Refactorings and code simplification. (@Turbo87)
- #54 Convert to TypeScript. (@Turbo87)
Committers: 1
- Tobias Bieniek (Turbo87)
v0.5.0
🚀 Enhancement
- Make lerna-changelog work better for a regular repo (including this one)
- #51 Use async/await to request commit infos concurrently. (@Turbo87)
🐛 Bug Fix
🏠 Internal
- #49 Exclude arrow functions, classes and generator functions from being transpiled. (@Turbo87)
- #50 Update "jest" to v20.0.4. (@Turbo87)
- #48 Adjust "lint" script. (@Turbo87)
- #47 Move configuration from "lerna.json" into "package.json". (@Turbo87)
Committers: 1
- Tobias Bieniek (Turbo87)
v0.3.0
v0.3.0 (2017-01-29)
@emmenko added a new config option, custom git tag ranges, and TESTS! 😍
If you don't remember how it works, we read github labels for prs and create a changelog.
$ lerna-changelog
Usage: lerna-changelog [options]
Options:
--tag-from A git tag that determines the lower bound of the range of commits
(defaults to last available) [string]
--tag-to A git tag that determines the upper bound of the range of commits
[string]
Examples:
lerna-changelog create a changelog for the changes
after the latest available tag
lerna-changelog --tag-from 0.1.0 create a changelog for the changes
--tag-to 0.3.0 in all tags within the given range
ignoreCommitters
[optional] list of committers to ignore (exact or partial match). Useful for example to ignore commits from bot agents