npm semantic-release 14.0.0
v14.0.0

latest releases: 25.0.2, 25.0.1, 25.0.1-beta.3...
7 years ago

14.0.0 (2018-02-13)

Features

  • use @semantic-release as default for success and fail hooks (9788fca)

BREAKING CHANGES

  • success and fail hooks are now enabled by default

In order to disable the @semantic-release/github plugin for the success and fail hook, the corresponding options have to be set to false in the semantic-release configuration:

{
  "release": {
    "success": false,
    "fail": false
  }
}

Users who do not use the @semantic-release/github plugin, should disable it in the success and fail by setting the corresponding options to false or to alternative plugin providing success and fail hooks.

Migration Guide

For non GitHub users

If you do no want the success and fail notification on GitHub or if you are not using GitHub you need to disable the success and fail plugin hooks by adding the following to your semantic-release configuration:

Add the following to your semantic-release configuration:

{
  "release": {
    "success": false,
    "fail": false
  }
}

For GitHub users

GitHub users do not need to change anything. You will get comments on PR and issues when a release that resolved them is publish as well as an issue when a problem happen that prevent to perform a release.

Don't miss a new semantic-release release

NewReleases is sending notifications on new releases.