chore: version packages - #36
Merged
Merged
Conversation
Up to standards ✅🟢 Issues
|
| Metric | Results |
|---|---|
| Complexity | 0 |
| Duplication | 0 |
AI Reviewer: first review requested successfully. AI can make mistakes. Always validate suggestions.
TIP This summary will be updated as you push new changes.
There was a problem hiding this comment.
Pull Request Overview
This PR performs an automated version bump for @codacy/codacy-cloud-cli from 1.7.0 to 1.8.0. The changes are limited to package.json and CHANGELOG.md, documenting several new features and fixes (such as the pull-requests command and pagination improvements) that were likely merged in previous PRs. Codacy results indicate the PR is up to standards with no new issues or quality regressions.
About this PR
- This is an automated release PR. Note that while the CHANGELOG.md describes significant new features and logic fixes (e.g., the
pull-requestscommand), the current diff only includes versioning and changelog updates. Ensure that the logic changes listed were thoroughly tested in their respective source PRs prior to this release.
Test suggestions
- Verify that the 'pull-requests' command correctly lists PRs and applies filters for search, base branch, and state.
- Verify the pagination warning logic in 'findings' when the API response omits the 'pagination.total' field.
- Verify that 'formatStandards()' displays the '⋯' symbol when a pull request is in an 'analysing' state.
- Verify that the 'pull-requests' table correctly hides the Coverage column when no data is present and leads with the standards column.
- Verify that '--output json' includes the 'resultReasons' for both quality and coverage gates.
Prompt proposal for missing tests
Consider implementing these tests if applicable:
1. Verify that the 'pull-requests' command correctly lists PRs and applies filters for search, base branch, and state.
2. Verify the pagination warning logic in 'findings' when the API response omits the 'pagination.total' field.
3. Verify that 'formatStandards()' displays the '⋯' symbol when a pull request is in an 'analysing' state.
4. Verify that the 'pull-requests' table correctly hides the Coverage column when no data is present and leads with the standards column.
5. Verify that '--output json' includes the 'resultReasons' for both quality and coverage gates.
TIP Improve review quality by adding custom instructions
TIP How was this review? Give us feedback
claudiacodacy
approved these changes
Jul 31, 2026
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@codacy/codacy-cloud-cli@1.8.0
Minor Changes
72a4d3bThanks @pedrobpereira! - Newpull-requests(prs) command: lists pull requests for a repository, with the same analysis-gated columns asrepository's "Open Pull Requests" table.-q, --searchand-B, --basefilter by free text (title/author handle) and target branch, mapping to the API'stextQuery/targetBranchparams;-S, --statefilters by open (default) or closed.Patch Changes
#35
72a4d3bThanks @pedrobpereira! - Fixfindings's pagination warning silently not firing when the API response omitspagination.total: the guard now also checks for a remainingcursor, so a trailing page of results is no longer hidden from the--limithint.#35
72a4d3bThanks @pedrobpereira! -formatStandards()(used byrepository's Open Pull Requests table,pull-request's Up to Standards row, andpull-requests' ✓ column) now shows a dim⋯while a pull request is still being analysed, instead of falling through to a hard ✗ on gate data that isn't final yet.#35
72a4d3bThanks @pedrobpereira! - Fix PR complexity showing as no data, and polish thepull-requeststable. Complexity is now read from the API's nestedqualityobject, which is where the pull-request endpoints actually return it —pull-requests,pull-requestandrepositoryall previously rendered it as empty. Thepull-requeststable now leads with the up-to-standards column, orders metrics the same wayrepositoriesdoes (issues, complexity, duplication, coverage), hides the Coverage column when no listed PR has coverage data, shows-instead ofN/Afor metrics with no value, and no longer signs a zero issue count (0instead of-0).--output jsonnow includes the quality and coverageresultReasons, so consumers can see which gates passed or failed.