Tags: La-Javaness/commit-analyzer-scoped
Tags
chore(release): 1.0.1 [skip ci] ## [1.0.1](v1.0.0-scoped...v1.0.1-scoped) (2022-04-27)
fix(deps): update dependency import-from to v4 (semantic-release#235)
feat: raise minimum version of Node to v14.17 (semantic-release#248) Co-authored-by: João Pedro Henrique <joao.pedro.hsd@gmail.com> BREAKING CHANGE: the minimum required version of node is now v14.17
fix: revert the esm migration for now (semantic-release#253)
feat: esm (semantic-release#247) BREAKING CHANGE: `@semantic-release/commit-analyzer` is now a native ES Module BREAKING CHANGE: 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: ```json { "plugins": [ ["@semantic-release/commit-analyzer", { "preset": "angular", "releaseRules": "./config/release-rules" }], "@semantic-release/release-notes-generator" ] } ``` ```js // File: config/release-rules.js module.exports = [ {type: 'docs', scope: 'README', release: 'patch'}, {type: 'refactor', scope: 'core-*', release: 'minor'}, {type: 'refactor', release: 'patch'}, ]; ``` After: ```json { "plugins": [ ["@semantic-release/commit-analyzer", { "preset": "angular", "releaseRules": "./config/release-rules.js" }], "@semantic-release/release-notes-generator" ] } ``` ```js // 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>
feat: raise minimum version of Node to v14.17 (semantic-release#246) BREAKING CHANGE: the minimum required version of node is now v14.17 (semantic-release#244)
PreviousNext