chore: version packages#29
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 follows the automated Changesets workflow to bump the package version to 1.6.0 and update the CHANGELOG.md. Codacy analysis indicates the changes are up to standards.
A gap exists regarding the verification of the functional changes being released. The Intent Agent identified multiple missing test scenarios for the new features (the bulk-ignore confirmation prompt and the '--ignored' listing command). Ensure these features were thoroughly tested in the source PRs, as they are not verified within this release package.
Test suggestions
- Verification that 'codacy issues --ignore' prompts for confirmation and respects '--skip-confirmation'
- Verification that 'codacy issues --ignored' lists ignored issues and supports filters (branch, severities, etc.)
- Validation that 'codacy issues --ignored --output json' correctly emits an 'ignoredIssues' array
- Verification that '--ignored' cannot be combined with '--overview' or '--ignore'
Prompt proposal for missing tests
Consider implementing these tests if applicable:
1. Verification that 'codacy issues --ignore' prompts for confirmation and respects '--skip-confirmation'
2. Verification that 'codacy issues --ignored' lists ignored issues and supports filters (branch, severities, etc.)
3. Validation that 'codacy issues --ignored --output json' correctly emits an 'ignoredIssues' array
4. Verification that '--ignored' cannot be combined with '--overview' or '--ignore'
TIP Improve review quality by adding custom instructions
TIP How was this review? Give us feedback
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.6.0
Minor Changes
#28
440a57fThanks @claudiacodacy! -codacy issues --ignorenow asks for confirmation before bulk-ignoring. Itprints how many issues match the current filters and only proceeds when you
answer
y, guarding against a mistyped or too-broad filter ignoring far moreissues than intended. Pass
--skip-confirmation(-y) to bypass the prompt inCI or scripts; in a non-interactive shell without that flag the command aborts
without ignoring anything.
#28
440a57fThanks @claudiacodacy! - Addcodacy issues --ignored(-i) to list issues that were marked as ignoredon Codacy. Without the flag,
codacy issuesbehaves exactly as before; pass--ignoredto see the ignored ones instead. Theignored listing accepts all the same filters as the normal search (
--branch,--severities,--categories,--tools,--patterns,--languages,--tags,--authors,--limit, and--false-positives), and each ignored issue showswho ignored it, when, the reason, and any comment. It cannot be combined with
--overviewor--ignore.--output jsonemits anignoredIssuesarray.Unignoring individual issues stays with
codacy issue <id> --unignore.