Skip to content

Releases: semantic-release/commit-analyzer

v10.0.1

07 Jun 14:12
0607201
Compare
Choose a tag to compare

10.0.1 (2023-06-07)

Bug Fixes

  • deps: update dependency conventional-changelog-angular to v6 (#460) (0607201)
  • deps: update dependency conventional-commits-filter to v3 (#461) (97d683f)
  • deps: update dependency conventional-commits-parser to v4 (#462) (5d94efa)

v10.0.0

02 Jun 19:23
c215832
Compare
Choose a tag to compare

10.0.0 (2023-06-02)

Code Refactoring

  • esm: converted the package to esm (b4f9865), closes #296

Features

  • deps: raised the peer-dependency requirement on semantic-release to v20.1.0 (e1ab8ea)
  • node-versions: raised the minimum required node version to v18 (affeb23)

BREAKING CHANGES

  • deps: the minimum required version of semantic-release is now v20.1.0 in order to support
    loading ESM plugins
  • node-versions: the minimum required version of node is now v18
  • esm: @semantic-release/commit-analyzer is now a native ES Module. It has named exports
    for each plugin hook (analyzeCommits)

v10.0.0-beta.1

30 May 02:39
5932f0b
Compare
Choose a tag to compare
v10.0.0-beta.1 Pre-release
Pre-release

10.0.0-beta.1 (2023-05-30)

Code Refactoring

  • esm: converted the package to esm (b4f9865), closes #296

Features

  • deps: raised the peer-dependency requirement on semantic-release to v20.1.0 (e1ab8ea)
  • node-versions: raised the minimum required node version to v18 (affeb23)

BREAKING CHANGES

  • deps: the minimum required version of semantic-release is now v20.1.0 in order to support
    loading ESM plugins
  • node-versions: the minimum required version of node is now v18
  • esm: @semantic-release/commit-analyzer is now a native ES Module. It has named exports
    for each plugin hook (analyzeCommits)

v9.0.2

23 Nov 18:09
fc0a88a
Compare
Choose a tag to compare

9.0.2 (2021-11-23)

Bug Fixes

  • bump conventional commits parser to version 3.2.3 (#289) (fc0a88a)

v9.0.1

18 Sep 02:28
2da0011
Compare
Choose a tag to compare

9.0.1 (2021-09-18)

Bug Fixes

  • deps: update dependency import-from to v4 (#235) (2da0011)

v9.0.0

17 Sep 19:26
6eeaeb2
Compare
Choose a tag to compare

9.0.0 (2021-09-17)

Features

  • raise minimum version of Node to v14.17 (#248) (6eeaeb2)

BREAKING CHANGES

  • the minimum required version of node is now v14.17

v9.0.0-beta.3

03 Sep 20:55
af37269
Compare
Choose a tag to compare
v9.0.0-beta.3 Pre-release
Pre-release

9.0.0-beta.3 (2021-09-03)

Bug Fixes

v9.0.0-beta.2

21 Aug 05:00
a773c8b
Compare
Choose a tag to compare
v9.0.0-beta.2 Pre-release
Pre-release

9.0.0-beta.2 (2021-08-21)

Features

BREAKING CHANGES

  • @semantic-release/commit-analyzer is now a native ES Module
  • When setting the releaseRules option to a path, the path must include the .js extension, and the file must be an ES Module itself, exporting an array as default

Before:

{
  "plugins": [
    ["@semantic-release/commit-analyzer", {
      "preset": "angular",
      "releaseRules": "./config/release-rules"
    }],
    "@semantic-release/release-notes-generator"
  ]
}
// File: config/release-rules.js
module.exports = [
  {type: 'docs', scope: 'README', release: 'patch'},
  {type: 'refactor', scope: 'core-*', release: 'minor'},
  {type: 'refactor', release: 'patch'},
];

After:

{
  "plugins": [
    ["@semantic-release/commit-analyzer", {
      "preset": "angular",
      "releaseRules": "./config/release-rules.js"
    }],
    "@semantic-release/release-notes-generator"
  ]
}
// File: config/release-rules.js
export default [
  {type: 'docs', scope: 'README', release: 'patch'},
  {type: 'refactor', scope: 'core-*', release: 'minor'},
  {type: 'refactor', release: 'patch'},
];

Co-authored-by: Gregor Martynus 39992+gr2m@users.noreply.github.com

v9.0.0-beta.1

20 Aug 21:19
e7e56f6
Compare
Choose a tag to compare
v9.0.0-beta.1 Pre-release
Pre-release

9.0.0-beta.1 (2021-08-20)

Features

  • raise minimum version of Node to v14.17 (#246) (e7e56f6)

BREAKING CHANGES

  • the minimum required version of node is now v14.17 (#244)

v8.0.1

31 Jan 16:20
Compare
Choose a tag to compare

8.0.1 (2020-01-31)

Bug Fixes

  • package: update micromatch to version 4.0.2 (ab3e4fd)