github.com/friedemannf/reviewdog@v0.14.0/CHANGELOG.md (about)

     1  # Changelog
     2  All notable changes to this project will be documented in this file.
     3  
     4  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
     5  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     6  
     7  ## [v0.13.0] - 2021-07-22
     8  
     9  ### :rocket: Enhancements
    10  - [#996](https://github.com/friedemannf/reviewdog/pull/996) Added support for Bitbucket Pipes executed within Pipelines.
    11  - [#997](https://github.com/friedemannf/reviewdog/pull/997) Added support for Bitbucket Server to `bitbucket-code-report` reporter
    12  
    13  ---
    14  
    15  ## [v0.12.0] - 2021-06-26
    16  
    17  ### :rocket: Enhancements
    18  - [#888](https://github.com/friedemannf/reviewdog/pull/888) Allow GitHub PR reporting for a forked repository iff it's triggered by `pull_request_target`
    19  - [#976](https://github.com/friedemannf/reviewdog/pull/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`
    20  
    21  ---
    22  
    23  ## [v0.11.0] - 2020-10-25
    24  
    25  ### :sparkles: Release Note
    26  reviewdog v0.11 introduced [Reviewdog Diagnostic Format (RDFormat)](./README.md#reviewdog-diagnostic-format-rdformat)
    27  as generic machine-readable diagnostic format and it unlocks new rich features like code suggestions.
    28  
    29  ### :rocket: Enhancements
    30  - [#629](https://github.com/friedemannf/reviewdog/pull/629) Introduced Reviewdog Diagnostic Format.
    31   - [#674](https://github.com/friedemannf/reviewdog/pull/674) [#703](https://github.com/friedemannf/reviewdog/pull/703) Support rdjsonl/rdjson as input format
    32   - [#680](https://github.com/friedemannf/reviewdog/pull/680) github-pr-review: Support multiline comments
    33   - [#675](https://github.com/friedemannf/reviewdog/pull/675) [#698](https://github.com/friedemannf/reviewdog/pull/698) github-pr-review: Support suggested changes
    34   - [#699](https://github.com/friedemannf/reviewdog/pull/699) Support diff input format (`-f=diff`). Useful for suggested changes.
    35   - [#700](https://github.com/friedemannf/reviewdog/pull/700) Support to show code(rule), code URL and severity in GitHub and GitLab reporters.
    36  - [#678](https://github.com/friedemannf/reviewdog/issues/678) github-pr-review: Support Code Suggestions
    37    - Introduced [reviewdog/action-suggester](https://github.com/reviewdog/action-suggester) action.
    38  - Introduced [reviewdog/action-setup](https://github.com/reviewdog/action-setup) GitHub Action which installs reviewdog easily including nightly release.
    39  - [#769](https://github.com/friedemannf/reviewdog/pull/769) Integration with [Bitbucket Code Insights](https://support.atlassian.com/bitbucket-cloud/docs/code-insights/) and [Bitbucket Pipelines](https://bitbucket.org/product/ru/features/pipelines)
    40  
    41  ---
    42  
    43  ## [v0.10.2] - 2020-08-04
    44  
    45  ### :bug: Fixes
    46  - [#709](https://github.com/friedemannf/reviewdog/pull/709) Check for GITHUB_ACTIONS instead of GITHUB_ACTION
    47  
    48  ---
    49  
    50  ## [v0.10.1] - 2020-06-30
    51  
    52  ### :rocket: Enhancements
    53  - [#563](https://github.com/friedemannf/reviewdog/issues/563) Use `CI_API_V4_URL` environment variable when present.
    54  
    55  ### :bug: Fixes
    56  - [#609](https://github.com/friedemannf/reviewdog/issues/609) reviewdog command will fail with unexpected tool's error for github-check/github-pr-check reporters as well. ([@haya14busa])
    57  - [#603](https://github.com/friedemannf/reviewdog/issues/603) Fixed detection of Pull Requests from forked repo. ([@haya14busa])
    58  
    59  ---
    60  
    61  ## [v0.10.0] - 2020-05-07
    62  
    63  ### :sparkles: Release Note
    64  
    65  With v0.10.0 release, now reviewdog can find issues outside diff by controlling
    66  filtering behavior with `-filter-mode`. Also, you can ensure to check reported
    67  results by exit 1 with `-fail-on-error`.
    68  
    69  Example
    70  ```shell
    71  $ cd subdir/ && reviewdog -filter-mode=file -fail-on-error -reporter=github-pr-review
    72  ```
    73  
    74  ### :rocket: Enhancements
    75  - [#446](https://github.com/friedemannf/reviewdog/issues/446)
    76    Added `-fail-on-error` flag
    77    ([document](https://github.com/friedemannf/reviewdog/tree/e359505275143ec85e9b114fc1ab4a4e91d04fb5#exit-codes))
    78    and improved exit code handling. ([@DmitryLanda](https://github.com/DmitryLanda), [@haya14busa])
    79  - [#187](https://github.com/friedemannf/reviewdog/issues/187)
    80    Added `-filter-mode` flag [`added`, `diff_context`, `file`, `nofilter`]
    81    ([document](https://github.com/friedemannf/reviewdog/tree/e359505275143ec85e9b114fc1ab4a4e91d04fb5#filter-mode))
    82    which controls how reviewdog filter results. ([@Le6ow5k1](https://github.com/Le6ow5k1), [@haya14busa])
    83  - [#69](https://github.com/friedemannf/reviewdog/issues/69) Support gerrit! ([@staticmukesh](https://github.com/staticmukesh))
    84  - [#548](https://github.com/friedemannf/reviewdog/issues/548) Introduced nightly release ([reviewdog/nightly](https://github.com/reviewdog/nightly)). ([@haya14busa])
    85  
    86  ### :bug: Fixes
    87  - [#461](https://github.com/friedemannf/reviewdog/issues/461) All reporters now supports sub-directory run. ([@haya14busa])
    88  
    89  ### :rotating_light: Breaking changes
    90  - `github-check` reporter won't report results outside diff by default now. You
    91    need to use `-filter-mode=nofilter` to keep the same bahavior.
    92  
    93  ---
    94  
    95  See https://github.com/friedemannf/reviewdog/releases for older release note.
    96  
    97  [Unreleased]: https://github.com/friedemannf/reviewdog/compare/v0.12.0...HEAD
    98  [v0.10.0]: https://github.com/friedemannf/reviewdog/compare/v0.9.17...v0.10.0
    99  [v0.10.1]: https://github.com/friedemannf/reviewdog/compare/v0.10.0...v0.10.1
   100  [v0.10.2]: https://github.com/friedemannf/reviewdog/compare/v0.10.1...v0.10.2
   101  [v0.11.0]: https://github.com/friedemannf/reviewdog/compare/v0.10.2...v0.11.0
   102  [v0.12.0]: https://github.com/friedemannf/reviewdog/compare/v0.11.0...v0.12.0
   103  [@haya14busa]: https://github.com/haya14busa