chore: Release hotdata-cli version 0.2.3#83
Merged
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
git-cliff dropped the [0.2.2] block and rewrote older sections; restore main sections and document changes since v0.2.2. Add cliff preprocessors for legacy commit messages.
|
|
||
| ### 📚 Documentation | ||
|
|
||
| - *(skill)* Document managed databases commands |
Contributor
There was a problem hiding this comment.
super nit: missing blank line between the last bullet of the 0.2.3 section and the ## [0.2.2] header — every other version boundary in this file has one. (not blocking)
Suggested change
| - *(skill)* Document managed databases commands | |
| - *(skill)* Document managed databases commands | |
| commit_preprocessors = [ | ||
| # Legacy non-conventional commit on main (pre–conventional-commit discipline). | ||
| { pattern = "^change to sandbox api$", replace = "feat(sandbox): align CLI with updated sandbox API" }, | ||
| { pattern = "^Add managed databases CLI", replace = "feat(databases): add managed databases CLI for parquet table loads" }, |
Contributor
There was a problem hiding this comment.
super nit: this pattern lacks the $ end anchor that the next line uses, so a future commit like Add managed databases CLI for X would be rewritten to feat(databases): add managed databases CLI for parquet table loads for X (duplicated tail). It worked here because the source commit was an exact match, but anchoring it would make the two adjacent preprocessors consistent. (not blocking)
Suggested change
| { pattern = "^Add managed databases CLI", replace = "feat(databases): add managed databases CLI for parquet table loads" }, | |
| { pattern = "^Add managed databases CLI$", replace = "feat(databases): add managed databases CLI for parquet table loads" }, |
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.
No description provided.