Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
gulp-modular-release
Advanced tools
Modular extension to release projects using git-flow release strategy
Modular extension to release projects using git-flow release strategy.
Works well alone or together with gulp-modular.
npm install gulp-modular-release --save-dev
var gulp = require('gulp');
var gulpModularRelease = require('gulp-modular-release');
// optionally overwrite default configuration
var config = {
//// task [`release`] creates a new release
release: {
// versionNumber: argv.v, // the version number of the new release
// bumpFiles: ['./package.json', './bower.json'], // write version number to these files
// changelogFile: './CHANGELOG.md', // generate changelog in this file
// conventionalChangelog: 'angular', // choose preset style like: : 'angular', 'atom', 'eslint', 'jscs', 'jshint'
// commitMessage: 'bump version number ' + argv.v, // message of bump commit
// tagPrefix: '', // define a prefix like 'v' for the git tag
// masterBranch: 'master', // the projects master branch
// developBranch: 'develop', // the projects develop branch
// releaseBranch: 'release/' + argv.v // the release branch created while releasing
// push: false // push change to remote repository
}
};
gulpModularRelease(gulp, config);
gulp release -v 1.2.3
or
gulp release
(If no version is specified the next version is generated using conventional-recommended-bump.)
release/1.2.3
from develop
bower.json
and package.json
CHANGELOG.md
release/1.2.3
into develop
release/1.2.3
into master
and tags it with v1.2.3
release/1.2.3
FAQs
Modular extension to release projects using git-flow release strategy
The npm package gulp-modular-release receives a total of 0 weekly downloads. As such, gulp-modular-release popularity was classified as not popular.
We found that gulp-modular-release demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.