This repository has been archived by the owner on May 10, 2018. It is now read-only.
chore(deps): update dependency semantic-release to v15 #67
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This Pull Request updates dependency semantic-release from
v12.4.1
tov15.1.7
Release Notes
v13.0.0
Bug Fixes
--repositoryUrl
CLI option to--repository-url
(cb36dd4)Features
BREAKING CHANGES
--repositoryUrl
CLI options is replaced by--repository-url
getLastRelease
plugin typeThe
getLastRelease
plugins will not be called anymore.The Git authentication is now mandatory and must be set via
GH_TOKEN
,GITHUB_TOKEN
,GL_TOKEN
,GITLAB_TOKEN
orGIT_CREDENTIALS
as described in CI configuration.Migration Guide
Make sure the commit associated with the last release is tagged with
v<last_release_version>
This will already be the case for all semantic-release users using the GitHub (default), Git or GitLab plugins or for any release done manually with
npm publish
.Make sure the Git authentication is configured
This will already be the case for all semantic-release users using the GitHub (default), Git or GitLab plugins. See CI configuration.
v13.0.1
Bug Fixes
Buffer
andundefined
(8b3605d)v13.0.2
Bug Fixes
GIT_CREDENTIALS
for gtit credentials (467635b)v13.1.0
Bug Fixes
Features
tagFormat
option to customize Git tag name (39536fa)v13.1.1
Bug Fixes
v13.1.2
Bug Fixes
v13.1.3
Bug Fixes
git+https
url tohttps
(cbf5785)v13.1.4
Bug Fixes
v13.1.5
Bug Fixes
v13.2.0
Features
v13.3.0
Features
success
andfail
notification plugins (49f5e70)v13.3.1
Bug Fixes
EPLUGINCONF
error details (9dd127b)v13.4.0
Bug Fixes
repositoryUrl
is set as an option (ce1e74f)Features
v13.4.1
Bug Fixes
v14.0.0
Features
success
andfail
hooks (9788fca)BREAKING CHANGES
success
andfail
hooks are now enabled by defaultIn order to disable the
@semantic-release/github
plugin for thesuccess
andfail
hook, the corresponding options have to be set tofalse
in the semantic-release configuration:Users who do not use the
@semantic-release/github
plugin, should disable it in thesuccess
andfail
by setting the corresponding options tofalse
or to alternative plugin providingsuccess
andfail
hooks.Migration Guide
For non GitHub users
If you do no want the
success
andfail
notification on GitHub or if you are not using GitHub you need to disable thesuccess
andfail
plugin hooks by adding the following to your semantic-release configuration:Add the following to your semantic-release configuration:
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.
v14.0.1
Bug Fixes
v14.0.2
Bug Fixes
v14.0.3
Bug Fixes
v14.0.4
Bug Fixes
v15.0.0
Features
prepare
plugin hook (c2beb64)BREAKING CHANGES
publish
plugin hook is not supported anymore and now must be done in theprepare
hookPlugins with a
publish
hook that makes a commit or create a file that can be committed must use theprepare
hook.v15.0.1
Bug Fixes
console.log
(e5a73d8)v15.0.2
Bug Fixes
getLastRelease
(e4618a2)v15.0.3
Bug Fixes
git+https
URL in package.json tohttps
(b0b4fc8)v15.0.4
Bug Fixes
v15.1.0
Features
repositoryUrl
(5f1d530)v15.1.1
Bug Fixes
v15.1.2
Bug Fixes
v15.1.3
Bug Fixes
execa
timeout (3c46455)v15.1.4
Bug Fixes
v15.1.5
Bug Fixes
v15.1.6
Bug Fixes
tagFormat
from the begining of the string (31ad231)v15.1.7
Bug Fixes
.git
torepositoryUrl
only if it's present in the configured URL (cb1f80c)Commits
v13.0.0
d0b304e
feat: get last release with git tagscb36dd4
fix: rename the--repositoryUrl
CLI option to--repository-url
v13.0.1
8b3605d
fix: hide sensitive info forBuffer
andundefined
v13.0.2
467635b
fix: prioritizeGIT_CREDENTIALS
for gtit credentialsv13.1.0
e3c9bb8
docs: recommend to execute semantic-release via npxdc416b2
docs: explain npx alternatives for Yarn2f75dff
docs: fix image path (#625)faabffb
fix: log all core verification errors39536fa
feat: addtagFormat
option to customize Git tag namev13.1.1
d820823
fix: use long option to delete tag in git pushv13.1.2
af8c830
fix(package): update @semantic-release/github to version 4.0.2v13.1.3
cbf5785
fix: always transformgit+https
url tohttps
v13.1.4
2edd9da
fix(package): update git-url-parse to version 8.1.0053c9ed
test: add test to parse GitLab/Bitbucket URLs with groupsv13.1.5
7e785fa
fix: debug log all optionsv13.2.0
687435b
feat: add debug logs for git commandsv13.3.0
5fd990a
docs: fix typo in extending link2f8d716
docs: make some grammatical, spelling, typo fixes.9360caf
docs: fix minor typo in FAQ9b2f6bf
feat: allow plugins to throw an iterable list of errors49f5e70
feat: addsuccess
andfail
notification pluginsv13.3.1
d72cfc2
docs: fix typo in travis recipefcb64e6
docs: remove unnecessaryscript
override in travis recipe7fbd272
docs: add Travis Build Stages recipec6e95b0
docs: add CircleCI workflows recipe51f6e5f
docs: simplify travis configc9bd5de
docs: simplify GitLAb-ci config9dd127b
fix: fixEPLUGINCONF
error detailsv13.4.0
f92677b
fix: log current version of semantic-release97cb354
feat: improve CLIb6837a2
test: use older version of mockserverce1e74f
fix: set repository authentication whenrepositoryUrl
is set as an optionv13.4.1
8a2ef48
test: revert to mockserver:latest docker container1b3c51d
docs: add missingsuccess
andfail
options04f3061
fix: remove the github plugin from default success and fail hooksv14.0.0
9788fca
feat: use `@semantic-release/githubas default for
successand
fail` hooksv14.0.1
305f4ee
fix: do not transform repositoryUrl if it allow to pushv14.0.2
1966f0e
fix: verify branch firstv14.0.3
ce15b75
chore(package): update xo to version 0.20.0aa724e8
chore(package): simplify xo configuration4d04901
style: lint857d418
fix: allow boolean option to be set in config filev14.0.4
20246c0
fix: exclude empty env var value from replacementv15.0.0
c2beb64
feat: add theprepare
plugin hookv15.0.1
a7c187f
docs: fix grammar and typos in README, CONTRIBUTING, installation guide, and plugin guide78f0937
chore(package): update proxyquire to version 2.0.050f3c6e
docs(README): correct pluralizatione5a73d8
fix: remove unecessaryconsole.log
v15.0.2
e4618a2
fix: exclude prereleases from version retrived bygetLastRelease
v15.0.3
1129d47
docs(configuration): environment variableDEBUG
must be set tosemantic-release:*
, notsemantic-release
6f74dcb
fix: use correct debug namespaceb0b4fc8
fix: convertgit+https
URL in package.json tohttps
v15.0.4
f13ec6a
fix(package): update execa to version 0.10.0v15.1.0
5f1d530
feat: allow to use shorthand forrepositoryUrl
v15.1.1
c84ac15
fix(package): Remove commander.js dependency (#704)v15.1.2
7c48afa
fix: prevent git CLI to prompt user/password on CIv15.1.3
dff0a34
docs: add "Introduction to Semantic Release" article3c46455
fix: removeexeca
timeout30ee231
fix: prevent git prompt before permissions verificationv15.1.4
51e340f
fix: handle case with no last release in historyv15.1.5
e41726c
docs: fix grammar and typos in CI configuration, configuration, and shareable configurations02746aa
fix(package): update git-url-parse to version 8.3.1v15.1.6
a8a07b7
docs: clarify FAQ to publish non-JavaScript packages31ad231
fix: match tag totagFormat
from the begining of the stringv15.1.7
6172eb8
docs: add plugins to the community lista1138a6
docs: update plugins package name7c9ec41
fix(package): update git-url-parse to version 9.0.0cb1f80c
fix: add trailing.git
torepositoryUrl
only if it's present in the configured URLThis PR has been generated by Renovate Bot.