Skip to content

Latest commit

 

History

History
215 lines (151 loc) · 10.1 KB

CHANGELOG.md

File metadata and controls

215 lines (151 loc) · 10.1 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

✨ Release Note

🚀 Enhancements

  • ...

🐛 Fixes

  • ...

🚨 Breaking changes

  • ...

v0.17.4 - 2024-04-19

🐛 Fixes

  • #1714 Use GitHub API to get a merge base commit and add git fetch command to get merge base and head commits

v0.17.3 - 2024-04-14

🐛 Fixes

  • #1697 Add a fallback to git diff command to get diff of a GitHub pull request

v0.17.2 - 2024-03-11

🐛 Fixes

  • #933 Fix go vet errorformat

v0.17.1 - 2024-02-08

🐛 Fixes

  • #1651 Revert #1576: Support --filter-mode=file in github-pr-review. Reasons: #1645
  • #1653 fix: SARIF parser: parse with no region result. fix originalOutput field
  • #1657 Fix sending incorrect line numbers to BitBucket Server Code Insight API. (fixes #1652)

v0.17.0 - 2024-01-22

🚀 Enhancements

  • #1623 Add reporter for GitHub PR annotations github-pr-annotations

v0.16.0 - 2023-12-17

🚀 Enhancements

  • #1573 Add filter tests for file/nofilter mode
  • #1576 Support --filter-mode=file in github-pr-review
  • #1596 Use CI_MERGE_REQUEST_DIFF_BASE_SHA envvar if available in gitlab-mr-discussion
  • #1521 strict check of pr-review write permission
  • #1617 Add reporter to Gitea PR review comments gitea-pr-review

v0.15.0 - 2023-09-02

🚀 Enhancements

  • #1554 Add SARIF format input support.

v0.14.2 - 2023-06-17

🚀 Enhancements

  • #1170 Calculate check conclusion from annotations
  • #1433 Add path link support for GitHub Enterprise
  • #1447 Support determining build info on more GitHub Actions events

🐛 Fixes

  • #967 Fix parsing long lines in diffs #967
  • #1426 Remove default error level

v0.14.1 - 2022-04-21

🚀 Enhancements

  • #1160 Remove needless git command dependency by GitRelWorkdir func

🐛 Fixes

  • #1125 Allow BITBUCKET_SERVER_URL to have subpath

v0.14.0 - 2022-02-11

🚀 Enhancements

  • #1118 Support end_lnum (%e) and end_col (%k) errorformat

v0.13.1 - 2021-12-28

🚀 Enhancements

  • #1012 Use GitLab suggestions in merge request comments

🐛 Fixes

  • #1014 Fix incorrect detection of the GITHUB_TOKEN permissions. fixes #1010
  • #1017 Fix suggestions that include fenced code blocks. fixes #999
  • #1084 Fix DEPRECATED to Deprecated

v0.13.0 - 2021-07-22

🚀 Enhancements

  • #996 Added support for Bitbucket Pipes executed within Pipelines.
  • #997 Added support for Bitbucket Server to bitbucket-code-report reporter

v0.12.0 - 2021-06-26

🚀 Enhancements

  • #888 Allow GitHub PR reporting for a forked repository iff it's triggered by pull_request_target
  • #976 Treat GITHUB_API_URL environment variable as same as GITHUB_API, so users can use reviewdog in GitHub Actions in Enterprise Server without setting GITHUB_API

v0.11.0 - 2020-10-25

✨ Release Note

reviewdog v0.11 introduced Reviewdog Diagnostic Format (RDFormat) as generic machine-readable diagnostic format and it unlocks new rich features like code suggestions.

🚀 Enhancements


v0.10.2 - 2020-08-04

🐛 Fixes

  • #709 Check for GITHUB_ACTIONS instead of GITHUB_ACTION

v0.10.1 - 2020-06-30

🚀 Enhancements

  • #563 Use CI_API_V4_URL environment variable when present.

🐛 Fixes

  • #609 reviewdog command will fail with unexpected tool's error for github-check/github-pr-check reporters as well. (@haya14busa)
  • #603 Fixed detection of Pull Requests from forked repo. (@haya14busa)

v0.10.0 - 2020-05-07

✨ Release Note

With v0.10.0 release, now reviewdog can find issues outside diff by controlling filtering behavior with -filter-mode. Also, you can ensure to check reported results by exit 1 with -fail-on-error.

Example

$ cd subdir/ && reviewdog -filter-mode=file -fail-on-error -reporter=github-pr-review

🚀 Enhancements

🐛 Fixes

🚨 Breaking changes

  • github-check reporter won't report results outside diff by default now. You need to use -filter-mode=nofilter to keep the same behavior.

See https://github.com/reviewdog/reviewdog/releases for older release note.