
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
grunt-conventional-changelog
Advanced tools
Generate a changelog using conventional-changelog
Issues with the output should be reported on the conventional-changelog
issue tracker.
$ npm install --save-dev grunt-conventional-changelog
grunt.loadNpmTasks('grunt-conventional-changelog');
grunt.initConfig({
conventionalChangelog: {
options: {
changelogOpts: {
// conventional-changelog options go here
preset: 'angular'
},
context: {
// context goes here
},
gitRawCommitsOpts: {
// git-raw-commits options go here
},
parserOpts: {
// conventional-commits-parser options go here
},
writerOpts: {
// conventional-changelog-writer options go here
}
},
release: {
src: 'CHANGELOG.md'
}
}
});
grunt.registerTask('default', ['conventionalChangelog']);
See the conventional-changelog docs.
There are some changes:
It is grunt.verbose.writeln
.
Sometimes after auto-generating the changelog you want to be able to review the generated changes or add some notes to the current release, you can polish your changelog manually without changing your workflow (you might use grunt-release
in the workflow but need grunt to wait until you have finished polishing your changelog).
Here are some examples of how to achieve this.
grunt.initConfig({
// grunt-shell
shell: {
changelog: {
options: {
stdinRawMode: true
},
command: 'subl -w CHANGELOG.md',
}
},
// or grunt-spawn
spawn: {
changelog: {
command: 'vim',
pattern: 'CHANGELOG.md',
commandArgs: ['{0}'],
opts: {
stdio: 'inherit'
}
}
},
});
...
grunt.registerTask('publish', ['conventionalChangelog', 'shell:changelog', 'release']);
// or
grunt.registerTask('publish', ['conventionalChangelog', 'spawn:changelog', 'release']);
MIT
FAQs
Generate a changelog using conventional-changelog
The npm package grunt-conventional-changelog receives a total of 1,993 weekly downloads. As such, grunt-conventional-changelog popularity was classified as popular.
We found that grunt-conventional-changelog demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.