versionist.conf.js: Add versionist config file
Also adds package.json to include the dependencies required in versionist.conf.js Changelog-entry: Add versionist support Signed-off-by: Giovanni Garufi <giovanni@resin.io>
This commit is contained in:
parent
58c089066c
commit
32fcd43b44
3 changed files with 112 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -10,6 +10,7 @@ shared-*/
|
|||
# device type manifest stuff
|
||||
/node_modules
|
||||
*.json
|
||||
!package.json
|
||||
|
||||
# dynamically created by the build script
|
||||
conf-notes.txt
|
||||
conf-notes.txt
|
8
package.json
Normal file
8
package.json
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"private": true,
|
||||
"devDependencies": {
|
||||
"lodash": "^4.17.10",
|
||||
"semver": "^5.5.1",
|
||||
"shelljs": "^0.8.2"
|
||||
}
|
||||
}
|
102
versionist.conf.js
Normal file
102
versionist.conf.js
Normal file
|
@ -0,0 +1,102 @@
|
|||
'use strict';
|
||||
|
||||
const _ = require('lodash')
|
||||
const fs = require('fs')
|
||||
const path = require('path')
|
||||
const semver = require('semver')
|
||||
const shell = require('shelljs')
|
||||
|
||||
const getAuthor = (commitHash) => {
|
||||
const authorCmd = shell.exec(`git show --quiet --format="%an" ${commitHash}`)
|
||||
if (authorCmd.code !== 0) {
|
||||
throw new Error(authorCmd.stderr)
|
||||
}
|
||||
return authorCmd.stdout.replace('\n', '')
|
||||
}
|
||||
|
||||
const compareExtendedSemver = (a, b) => {
|
||||
const semverCompare = semver.compare(a, b)
|
||||
if (semverCompare !== 0) {
|
||||
return semverCompare
|
||||
}
|
||||
return a.localeCompare(b)
|
||||
}
|
||||
|
||||
const getMetaResinFromSubmodule = (documentedVersions, history, callback) => {
|
||||
shell.exec('git submodule status layers/meta-resin', (code, stdout, stderr) => {
|
||||
if (code != 0) {
|
||||
return callback(new Error('Could not find meta-resin submodule'))
|
||||
}
|
||||
const match = /.{40} .* \(v(.+)\)/.exec(stdout)
|
||||
|
||||
if (!match) {
|
||||
return callback(new Error(`Could not determine meta-resin version from version ${stdout}`))
|
||||
}
|
||||
|
||||
const metaVersion = `${match[1]}+rev0`
|
||||
const latestDocumented = _.trim(_.last(documentedVersions.sort(compareExtendedSemver)))
|
||||
|
||||
// semver.gt will ignore the revision numbers but still compare the version
|
||||
// If metaVersion <= latestDocumented then the latestDocumented version is a revision of the current metaVersion
|
||||
const latestVersion = semver.gt(metaVersion, latestDocumented) ? metaVersion : latestDocumented
|
||||
|
||||
return callback(null, latestVersion)
|
||||
})
|
||||
}
|
||||
|
||||
const updateVersionFile = (cwd, version, callback) => {
|
||||
const versionFile = path.join(cwd, 'VERSION')
|
||||
|
||||
fs.writeFile(versionFile, version, callback)
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
addEntryToChangelog: {
|
||||
preset: 'prepend',
|
||||
fromLine: 3
|
||||
},
|
||||
getChangelogDocumentedVersions: {
|
||||
preset: 'changelog-headers',
|
||||
clean: /^v/
|
||||
},
|
||||
getGitReferenceFromVersion: 'v-prefix',
|
||||
includeCommitWhen: (commit) => {
|
||||
return commit.footer['changelog-entry']
|
||||
},
|
||||
getIncrementLevelFromCommit: (commit) => {
|
||||
return 'patch'
|
||||
},
|
||||
incrementVersion: (currentVersion, incrementLevel) => {
|
||||
const revision = Number(currentVersion[currentVersion.length - 1])
|
||||
if (!_.isFinite(revision)) {
|
||||
throw new Error(`Could not extract revision number from ${currentVersion}`)
|
||||
}
|
||||
return currentVersion.slice(0, currentVersion.length - 1) + (revision + 1)
|
||||
},
|
||||
getCurrentBaseVersion: getMetaResinFromSubmodule,
|
||||
updateVersion: updateVersionFile,
|
||||
// If a 'changelog-entry' tag is found, use this as the subject rather than the
|
||||
// first line of the commit.
|
||||
transformTemplateData: (data) => {
|
||||
data.commits.forEach((commit) => {
|
||||
commit.subject = commit.footer['changelog-entry'] || commit.subject
|
||||
commit.author = getAuthor(commit.hash)
|
||||
});
|
||||
if (_.isEmpty(data.commits)) {
|
||||
throw new Error('At least one commit must be annotated with a Changelog-entry tag')
|
||||
}
|
||||
return data;
|
||||
},
|
||||
template: [
|
||||
'# v{{version}}',
|
||||
'## ({{moment date "Y-MM-DD"}})',
|
||||
'',
|
||||
'{{#each commits}}',
|
||||
'{{#if this.author}}',
|
||||
'* {{capitalize this.subject}} [{{this.author}}]',
|
||||
'{{else}}',
|
||||
'* {{capitalize this.subject}}',
|
||||
'{{/if}}',
|
||||
'{{/each}}'
|
||||
].join('\n')
|
||||
}
|
Loading…
Add table
Reference in a new issue