Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

Latest commit

 

History

History
103 lines (72 loc) · 8.35 KB

CHANGELOG.md

File metadata and controls

103 lines (72 loc) · 8.35 KB

5.3.0 (2018-11-21)

5.2.0 (2018-11-21)

  • [Angular Package] Adapt to new Angular Commit Conventions (#296) (4a033a7), closes #296

Bug Fixes

  • angular: smarter username detection (#219) (f7e6a3b), closes #218
  • template: whitespace (c692806)
  • template: wrong version link if no host (cb029da), closes #8
  • Fix plurality of "are" vs. "is" (#331) (0ede849)
  • revert previous change (94d51aa)
  • update to reference conventional-changelog org (1314559)
  • Upgrade to Lerna 3, fix Node.js v11 error (#385) (586b2de)

Chores

  • package: set Node requirement to oldest supported LTS (#329) (f9b545a)

Code Refactoring

Features

BREAKING CHANGES

  • re-use parser options within each preset (#335) (3e1b573)
    Re-use parser options object between components of a preset. For some presets this may change the behavior of conventional-recommended-bump as the parser options object for the conventional-recommended-bump options within a preset were different than the parser options object for the conventional-changelog options within a preset.

If you are not using conventional-recommended-bump, then this is not a breaking change for you.

  • package: set Node requirement to oldest supported LTS (#329) (f9b545a)
    Set the package's minimum required Node version to be the oldest LTS currently supported by the Node Release working group. At this time, that is Node 6 (which is in its Maintenance LTS phase).
  • remove anchor from header templates (#301) (cace350)
    Anchor tags are removed from the changelog header templates. The rendered Markdown will no longer contain anchor tags proceeding the version number header that constitutes the changelog header. This means that consumers of rendered markdown will not be able to use a URL that has been constructed to contain a version number anchor tag reference, since the anchor tag won't exist in the rendered markdown.

It's stronly recomended consumers use the full URL path to the release page for a given version, as that URL is a permalink to that verison, contains all relavent release information, and does not, otherwise, rely on the anchor tag being excessible from the current page view.

As an example, for version 2.0.0 of a GitHub project, the following URL should be used:

  • [Angular Package] Adapt to new Angular Commit Conventions (#296) (4a033a7)

    The Angular conventions specifically say that breaking changes must start with "BREAKING CHANGE", not the plural form. Therefore the previous plural form "CHANGES" has been corrected to singular "CHANGE".

    Former "chore" type has been replaced by a type "build" for commits on the build system and "ci" for commits regarding CI