The devDependency semantic-release was updated from 15.14.0 to 16.0.0.
This version is not covered by your current version range.
If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.
fix(package): update @semantic-release/github back to a build from the beta branch (d120eae)
BREAKING CHANGES
Require Node.js >= 10.13
this feature change the way semantic-release keep track of the channels on which a version has been released.
It now use a JSON object stored in a Git note instead of Git tags formatted as v{version}@{channel}.
The tags formatted as v{version}@{channel} will now be ignored. If you have made releases with v16.0.0 on branches other than the default one you will have to update your repository.
The changes to make consist in:
Finding all the versions that have been released on a branch other than the default one by searching for all tags formatted v{version}@{channel}
For each of those version:
Create a tag without the {@channel} if none doesn't already exists
Add a Git note to the tag without the {@channel} containing the channels on which the version was released formatted as {"channels":["channel1","channel2"]} and using null for the default channel (for example.{"channels":[null,"channel1","channel2"]})
Push the tags and notes
Update the GitHub releases that refer to a tag formatted as v{version}@{channel} to use the tag without it
Delete the tags formatted as v{version}@{channel}
Git CLI version 2.7.1 or higher is now required
The --merge option of the git tag command has been added in Git version 2.7.1 and is now used by semantic-release
Require Node.js => 8.15
package: Regexp are not supported anymore for property matching in the releaseRules option.
Regex are replaced by globs. For example /core-.*/ should be changed to 'core-*'.
the branch option has been removed in favor of branches
The new branches option expect either an Array or a single branch definition. To migrate your configuration:
If you want to publish package from multiple branches, please the configuration documentation
If you use the default configuration and want to publish only from master: nothing to change
If you use the branch configuration and want to publish only from one branch: replace branch by branches ("branch": "my-release-branch" => "branches": "my-release-branch")
FAQ and help
There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).
The devDependency semantic-release was updated from
15.14.0
to16.0.0
.This version is not covered by your current version range.
If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.
Publisher: semantic-release-bot License: MIT
Release Notes for v16.0.0
16.0.0 (2020-01-09)
Bug Fixes
channel
to publish success log (5744c5e)ERELEASEBRANCHES
error message (#1188) (37bcc9e)ci
option via API and config file (2faff26)getTagHead
only when necessary (de77a79)success
plugin only once for releases added to a channel (9a023b4)addChannel
for 2 merged branches configured with the same channel (4aad9cd)false
(751a5f1)getError
(f96c660)await
(9a1af4d)get-tags
algorithm (00420a8)@semantic-release/github
and@semantic-release/npm
(d55fda3)@semantic-release/github
(9a30f35)@semantic-release/npm
and@semantic-release/github
(d6731b9)branch
parameter frompush
function (968b996)Features
addChannel
plugins to returnfalse
in order to signify no release was done (e1c7269)publish
plugins to returnfalse
in order to signify no release was done (47484f5)Performance Improvements
git tag --merge <branch>
to filter tags present in a branch history (cffe9a8)Reverts
^1.0.0
(fa62d0b)BREAKING CHANGES
It now use a JSON object stored in a Git note instead of Git tags formatted as v{version}@{channel}.
The tags formatted as v{version}@{channel} will now be ignored. If you have made releases with v16.0.0 on branches other than the default one you will have to update your repository.
The changes to make consist in:
{"channels":["channel1","channel2"]}
and usingnull
for the default channel (for example.{"channels":[null,"channel1","channel2"]}
)The
--merge
option of thegit tag
command has been added in Git version 2.7.1 and is now used by semantic-releasereleaseRules
option.Regex are replaced by globs. For example
/core-.*/
should be changed to'core-*'
.branch
option has been removed in favor ofbranches
The new
branches
option expect either an Array or a single branch definition. To migrate your configuration:master
: nothing to changebranch
configuration and want to publish only from one branch: replacebranch
bybranches
("branch": "my-release-branch"
=>"branches": "my-release-branch"
)Commits
The new version differs by 114 commits.
0785a84
fix: update plugin versions
152bf45
Merge remote-tracking branch 'origin/beta'
3ba8f2a
Merge remote-tracking branch 'origin/master' into beta
9772563
fix: look also for previous prerelease versions to determine the next one
61665be
fix: correct log when adding channel to tag
a8747c4
fix: verify is branch is up to date by comparing remote and local HEAD
9a1af4d
fix: remove unnecessary
await
9ecc7a3
fix: increase next version on prerelease branch based on highest commit type
c16fcc9
Merge branch 'master' into beta
0716a45
feat: require Node.js >=10.13
916c268
feat: allow to release any version on a branch if up to date with next branch
534c0db
Merge branch 'master' into beta
ec54c0b
test: fix calls to
fetch
in testscbef9d1
fix: modify fetch function to handle CircleCI specifics
b2c1b2c
feat: use Git notes to store the channels on which a version has been released
There are 114 commits in total.
See the full diff
FAQ and help
There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).Your Greenkeeper bot :palm_tree: