feat(cli): introduce new --last flag, to stop recommending HEAD~1#3916
Merged
escapedcat merged 4 commits intoconventional-changelog:masterfrom Mar 14, 2024
Merged
feat(cli): introduce new --last flag, to stop recommending HEAD~1#3916escapedcat merged 4 commits intoconventional-changelog:masterfrom
escapedcat merged 4 commits intoconventional-changelog:masterfrom
Conversation
7 tasks
Member
|
Sorry, would you rebase this? Then it can be merged |
The upgrade of ES2017 to ES2022 is because of the use of `Object.hasOwn` API which is less ugly than hardcoding `undefined`.
In a single-commit repo, this would lead to this error: ``` Error: fatal: ambiguous argument 'HEAD~1..HEAD': unknown revision or path not in the working tree. ``` Now that we have the `--last` flag, this should work for the case in which we want just to analyze the last commit, not specify a range of commits via `--from` and `--to`. Closes conventional-changelog#3892
|
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. |
Contributor
Author
Done. |
The latter adds unnecessary whitespace at the end of the commit msg.
Member
|
Thanks! |
travi
added a commit
to form8ion/commitlint-config
that referenced
this pull request
Mar 19, 2024
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
HEAD~1 is brittle because it would fail in single-commit scenarios.
Closes #3892