Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions .changeset/confirm-bulk-ignore.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/list-ignored-issues.md

This file was deleted.

21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @codacy/codacy-cloud-cli

## 1.6.0

### Minor Changes

- [#28](https://github.com/codacy/codacy-cloud-cli/pull/28) [`440a57f`](https://github.com/codacy/codacy-cloud-cli/commit/440a57fec915aae6fcebf9cc8dde6fca9d71c266) Thanks [@claudiacodacy](https://github.com/claudiacodacy)! - `codacy issues --ignore` now asks for confirmation before bulk-ignoring. It
prints how many issues match the current filters and only proceeds when you
answer `y`, guarding against a mistyped or too-broad filter ignoring far more
issues than intended. Pass `--skip-confirmation` (`-y`) to bypass the prompt in
CI or scripts; in a non-interactive shell without that flag the command aborts
without ignoring anything.

- [#28](https://github.com/codacy/codacy-cloud-cli/pull/28) [`440a57f`](https://github.com/codacy/codacy-cloud-cli/commit/440a57fec915aae6fcebf9cc8dde6fca9d71c266) Thanks [@claudiacodacy](https://github.com/claudiacodacy)! - Add `codacy issues --ignored` (`-i`) to list issues that were marked as ignored
on Codacy. Without the flag, `codacy issues` behaves exactly as before; pass
`--ignored` to see the ignored ones instead. The
ignored 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 shows
who ignored it, when, the reason, and any comment. It cannot be combined with
`--overview` or `--ignore`. `--output json` emits an `ignoredIssues` array.
Unignoring individual issues stays with `codacy issue <id> --unignore`.

## 1.5.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@codacy/codacy-cloud-cli",
"version": "1.5.0",
"version": "1.6.0",
"description": "A command-line tool to interact with Codacy Cloud from your terminal",
"homepage": "https://www.codacy.com",
"repository": {
Expand Down
Loading