Skip to content

Latest commit

 

History

History
92 lines (59 loc) · 6.3 KB

CHANGELOG.md

File metadata and controls

92 lines (59 loc) · 6.3 KB

0.11.2 (2021-09-27)

Bug Fixes

  • update dockerfile to fix bad copying (#224) (92389be)

0.11.1 (2021-04-14)

Bug Fixes

  • update github-markup to remove python2 dependency (#209) (0c7c50c)

0.11.0 (2021-04-14)

Features

0.10.1 (2021-03-25)

Bug Fixes

  • switch to canonical broken-link-checker (#205) (e62d767)

0.10.0 (2020-12-30)

Bug Fixes

  • add missing github-markup dependencies to dockerfile (b5fb88a)
  • file-hash now accepts legacy configuration format (d509274)
  • fix broken link behavrior with files in subdirectories (6c14db9)
  • fix pathing issues and succeed/fail criteria with no files found (c0c101b)
  • remove Object.fromEntries for node 10 support (0644374)
  • update dockerfile to reconfigure bundle which (may) have caused some bugs on linux (889da3e)
  • upgrade broken-link-checker to add node 10 support (4f00b33)
  • upgrade ruby gems to latest version (e36c10a)

Features

  • finalize no broken links rule and dockerfile (c1b1f72)
  • update dockerfile to reflect new dependencies (c256af7)
  • no-broken-links: add option to pass or not pass in external links (aaa92f8)
  • switch to fork of broken-link-checker (7df3086)
  • WIP adding a broken link checker rule (9e8bb98)

Changelog

1.0.0

Breaking Changes

  • The ruleset configuration format has been upgraded to version 2, including adding a JSON schema and support for YAML. The previous ruleset format is still supported, however it is recommended that you translate your rulesets for this upgrade.
  • Major changes have been made to the lint function:
    • Formatting and printing have been moved outside lint, allowing the developer to suppress or modify the output as needed. This change is reflected in the new CLI implementation.
    • The object returned by lint (LintResult) has been completely restructured.
    • A dryRun parameter has been added to disable fixes.
    • async was added to the function interface.
  • Major changes have been make to the JSON Formatter to accommodate the structure change of LintResult.
  • Non top-level configuration support (ex. targetdir/otherdir/repolinter.json would trigger another lint of otherdir) has been removed for now.
  • Renamed several rule options to more clearly convey functionality (files -> globsAny) and remove problematic language (blacklist -> denylist). Backwards compatibility for old property names in version 1 rulesets is still maintained, however the schema will fail to validate in version 2.
  • Some slight changes have been made to the default formatter to accommodate the feature list below.

Features

  • Automatic fixes have been added. These fixes must be configured in your ruleset before they can be used, but are otherwise enabled by default.

  • Markdown formatting is now supported via a CLI argument.

  • CLI argument parsing has re-implemented with Yargs to allow for a more user-friendly experience. All previous commands and arguments remain, and the following new options are now available:

    • --dryRun/-d - Disable fixes.
    • --allowPaths/-a - Specify an allowlist that repolinter should limit itself to.
    • --rulesetFile/-r - Manually specify the configuration repolinter should use.
    • --rulesetUrl/-u - Specify a URL where repolinter can retrieve the ruleset from.
    • --format/-f - Change the output format.

    For more information on these options please see the Repolinter CLI.

  • Added several other functions to the Node API: runRuleset, determineTargets, validateConfig, and parseConfig.

  • Added TypeScript types for the Node API.

  • Add numerical comparison support for axioms and the contributor-count axiom.

Fixes

  • All file-based operations have been moved to fs.promises, which increased performance by a factor of 10.
  • Fixed some issues with Windows paths.
  • Updated NPM dependencies.
  • Added more tests and autogenerated documentation.