Skip to content

Latest commit

 

History

History
79 lines (46 loc) · 2.59 KB

CHANGELOG.md

File metadata and controls

79 lines (46 loc) · 2.59 KB

Changelog

Unreleased

New features

Changes

  • #82: treat Rake files as Ruby files.

Bugs fixed

  • #87: handle github remote urls without .git suffix.
  • #91: find position in full diff and fix how commit id is used in GithubPullRequestFormatter.
  • #92: ignore failed pull request comments.
  • #93: comments didn't have position when outdated.
  • #94: duplicate comment detection was failing for large GitHub pull requests.
  • poper#4: handle message uniqueness when they're without line numbers.

0.4.3

Changes

  • Depend on rugged ~> 0.23.0 and octokit ~> 4.1.0.

0.4.2

New features

  • New formatter: NullFormatter. Discards data without writing it anywhere.

0.4.1

Bugs fixed

  • #58: GitlabFormatter uses a high +per_page+ value to avoid pagination (and thus duplicate comments).

0.4.0

New features

  • Try to detect pull request id automatically, if PULL_REQUEST_ID is not specified. Inspired by @willnet/prid.
  • #40: add '--index' option for 'pronto run'. Pronto analyzes changes before committing.
  • #50: add GitLab formatter
  • #52: allow specifying a path for 'pronto run'.

Changes

  • GitHub and GitHub pull request formatters now filter out duplicate offenses on the same line to avoid spamming with redundant comments.

0.3.3

Bugs fixed

  • GithubPullRequestFormatter was working incorrectly with merge commits.

0.3.2

Bugs fixed

  • GithubPullRequestFormatter had an off-by-one positioning error.

0.3.1

Bugs fixed

  • Git::Patches#repo was always returning nil.

0.3.0

New features

  • #27: '--exit-code' option for 'pronto run'. Pronto exits with non-zero code if there were any warnings/errors.
  • #16: new formatter: GithubPullRequestFormatter. Writes review comments on GitHub pull requests.

Changes

  • #29: be compatible and depend on rugged '0.21.0'.
  • Performance improvement: use Rugged::Blame instead of one provided by Grit.
  • Performance improvement: cache comments retrieved from GitHub.