
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@bonvoy/cli
Advanced tools
CLI for bonvoy release automation
Command-line interface for bonvoy - the plugin-based release automation tool for npm packages and monorepos.
shipit, prepare, status# Install globally
npm install -g @bonvoy/cli
# Or use with npx
npx @bonvoy/cli shipit
shipit - Release packages# Release all changed packages
bonvoy shipit
# Preview changes (dry run)
bonvoy shipit --dry-run
# Output JSON for CI integration
bonvoy shipit --json
# Force specific version bump
bonvoy shipit patch
bonvoy shipit minor
bonvoy shipit major
bonvoy shipit 2.0.0
# Release specific packages
bonvoy shipit --package @scope/core --package @scope/utils
prepare - Create release PR# Create PR with version bumps and changelog
bonvoy prepare
# Preview PR changes
bonvoy prepare --dry-run
status - Show pending changes# Show packages with unreleased changes
bonvoy status
changelog - Preview changelog# Show changelog for all packages
bonvoy changelog
Create bonvoy.config.js in your project root:
export default {
versioning: 'independent',
commitMessage: 'chore: :bookmark: release',
tagFormat: '{name}@{version}',
workflow: 'direct',
plugins: [
'@bonvoy/plugin-conventional',
'@bonvoy/plugin-changelog',
'@bonvoy/plugin-git',
'@bonvoy/plugin-npm',
'@bonvoy/plugin-github',
],
};
# Standard release workflow
bonvoy shipit
# Preview what would happen
bonvoy shipit --dry-run
# Force minor bump for all packages
bonvoy shipit minor
# Release only specific packages
bonvoy shipit --package @myorg/core --package @myorg/utils
# Create release PR instead of direct release
bonvoy prepare
# Check what packages have changes
bonvoy status
MIT
FAQs
🚢 CLI for bonvoy release automation
We found that @bonvoy/cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.