Socket
Socket
Sign inDemoInstall

conventional-recommended-bump

Package Overview
Dependencies
7
Maintainers
4
Versions
49
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 9.0.0 to 10.0.0

dist/bumper.d.ts

49

package.json
{
"name": "conventional-recommended-bump",
"version": "9.0.0",
"description": "Get a recommended version bump based on conventional commits",
"bugs": {
"url": "https://github.com/conventional-changelog/conventional-changelog/issues"
},
"homepage": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-recommended-bump#readme",
"type": "module",
"version": "10.0.0",
"description": "Get a recommended version bump based on conventional commits.",
"author": {

@@ -14,14 +11,12 @@ "name": "Steve Mao",

},
"license": "MIT",
"homepage": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-recommended-bump#readme",
"repository": {
"type": "git",
"url": "https://github.com/conventional-changelog/conventional-changelog.git"
"url": "https://github.com/conventional-changelog/conventional-changelog.git",
"directory": "packages/conventional-recommended-bump"
},
"license": "MIT",
"engines": {
"node": ">=16"
"bugs": {
"url": "https://github.com/conventional-changelog/conventional-changelog/issues"
},
"files": [
"index.js",
"cli.mjs"
],
"keywords": [

@@ -33,14 +28,22 @@ "conventional-recommended-bump",

],
"engines": {
"node": ">=18"
},
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"files": [
"dist"
],
"dependencies": {
"meow": "^12.0.1",
"conventional-changelog-preset-loader": "^4.1.0",
"conventional-commits-filter": "^4.0.0",
"conventional-commits-parser": "^5.0.0",
"git-raw-commits": "^4.0.0",
"git-semver-tags": "^7.0.0"
"meow": "^13.0.0",
"@conventional-changelog/git-client": "^1.0.0",
"conventional-changelog-preset-loader": "^5.0.0",
"conventional-commits-parser": "^6.0.0",
"conventional-commits-filter": "^5.0.0"
},
"bin": "cli.mjs",
"devDependencies": {
"conventional-changelog-conventionalcommits": "^7.0.2"
"bin": {
"conventional-recommended-bump": "./dist/cli/index.js"
}
}
# conventional-recommended-bump
> Get a recommended version bump based on conventional commits.
[![ESM-only package][package]][package-url]
[![NPM version][npm]][npm-url]
[![Node version][node]][node-url]
[![Dependencies status][deps]][deps-url]
[![Install size][size]][size-url]
[![Build status][build]][build-url]
[![Coverage status][coverage]][coverage-url]
Got the idea from https://github.com/conventional-changelog/conventional-changelog/pull/29
[package]: https://img.shields.io/badge/package-ESM--only-ffe536.svg
[package-url]: https://nodejs.org/api/esm.html
## Table of Contents
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
[npm]: https://img.shields.io/npm/v/conventional-recommended-bump.svg
[npm-url]: https://npmjs.com/package/conventional-recommended-bump
[node]: https://img.shields.io/node/v/conventional-recommended-bump.svg
[node-url]: https://nodejs.org
- [Install](#install)
- [Usage](#usage)
- [API](#api)
- [options](#options)
- [ignoreReverted](#ignorereverted)
- [preset](#preset)
- [config](#config)
- [whatBump](#whatbump)
- [tagPrefix](#tagprefix)
- [skipUnstable](#skipunstable)
- [lernaPackage](#lernapackage)
- [path](#path)
- [parserOpts](#parseropts)
- [callback](#callback)
- [License](#license)
[deps]: https://img.shields.io/librariesio/release/npm/conventional-recommended-bump
[deps-url]: https://libraries.io/npm/conventional-recommended-bump/tree
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
[size]: https://packagephobia.com/badge?p=conventional-recommended-bump
[size-url]: https://packagephobia.com/result?p=conventional-recommended-bump
## Install
[build]: https://img.shields.io/github/actions/workflow/status/conventional-changelog/conventional-changelog/tests.yaml?branch=master
[build-url]: https://github.com/conventional-changelog/conventional-changelog/actions
```bash
npm install conventional-recommended-bump
```
[coverage]: https://coveralls.io/repos/github/conventional-changelog/conventional-changelog/badge.svg?branch=master
[coverage-url]: https://coveralls.io/github/conventional-changelog/conventional-changelog?branch=master
## Usage
Get a recommended version bump based on conventional commits.
```javascript
const conventionalRecommendedBump = require(`conventional-recommended-bump`);
> Got the idea from https://github.com/conventional-changelog/conventional-changelog/pull/29
const recommendation = await conventionalRecommendedBump({
preset: `angular`
});
<hr />
<a href="#install">Install</a>
<span>&nbsp;&nbsp;•&nbsp;&nbsp;</span>
<a href="#usage">Usage</a>
<span>&nbsp;&nbsp;•&nbsp;&nbsp;</span>
<a href="#api">API</a>
<span>&nbsp;&nbsp;•&nbsp;&nbsp;</span>
<a href="#cli">CLI</a>
<br />
<hr />
console.log(recommendation.releaseType); // 'major'
```
## Install
```bash
npm install --global conventional-recommended-bump
conventional-recommended-bump --help
# pnpm
pnpm add conventional-recommended-bump
# yarn
yarn add conventional-recommended-bump
# npm
npm i conventional-recommended-bump
```
## API
## Usage
```javascript
conventionalRecommendedBump(options, [parserOpts,] callback);
```
```js
import { Bumper } from 'conventional-recommended-bump'
`parserOpts` is optional.
const bumper = new Bumper(process.cwd()).loadPreset('angular')
const recommendation = await bumper.bump()
In the case you don't want to provide `parserOpts`, then `callback` must be provided as the second argument.
#### options
`options` is an object with the following properties:
* ignoreReverted
* preset
* config
* whatBump
##### ignoreReverted
**Type:** `boolean` **Default:** `true`
If `true`, reverted commits will be ignored.
##### preset
**Type:** `string`
It's recommended to use a preset so you don't have to define everything yourself.
The value is passed to [`conventional-changelog-preset-loader`](https://www.npmjs.com/package/conventional-changelog-preset-loader).
##### config
**Type:** `object`
This should serve as default values for other arguments of `conventional-recommended-bump` so you don't need to rewrite the same or similar config across your projects.
**NOTE:** `config` option will be overwritten by the value loaded by `conventional-changelog-preset-loader` if the `preset` options is set.
##### whatBump
**Type:** `function`
A function that takes parsed commits as an argument.
```javascript
whatBump(commits) {};
console.log(recommendation.releaseType) // 'major'
```
`commits` is an array of all commits from last semver tag to `HEAD` as parsed by [conventional-commits-parser](https://github.com/conventional-changelog/conventional-commits-parser)
## API
This should return an object including but not limited to `level` and `reason`. `level` is a `number` indicating what bump it should be and `reason` is the reason of such release.
### `new Bumper(cwdOrGitClient: string | ConventionalGitClient = process.cwd())`
##### tagPrefix
Create a new Bumper instance. `cwdOrGitClient` is the current working directory or a `ConventionalGitClient` instance.
**Type:** `string`
### `bumper.tag(paramsOrTag: GetSemverTagsParams & Params | string): this`
Specify a prefix for the git tag that will be taken into account during the comparison.
Set params to get the last semver tag or set the tag directly.
For instance if your version tag is prefixed by `version/` instead of `v` you would specifying `--tagPrefix=version/` using the CLI, or `version/` as the value of the `tagPrefix` option.
### `bumper.commits(params: GetCommitsParams & Params, parserOptions?: ParserStreamOptions): this`
##### skipUnstable
Set params to get the commits.
**Type:** `boolean`
### `bumper.commits(commits: Iterable<Commit> | AsyncIterable<Commit>): this`
If true, unstable tags will be skipped, e.g., x.x.x-alpha.1, x.x.x-rc.2
Set the commits directly.
##### lernaPackage
### `bumper.loadPreset(preset: PresetParams): this`
**Type:** `string`
Load and set necessary params from a preset.
Specify the name of a package in a [Lerna](https://lernajs.io/)-managed repository. The package name will be used when fetching all changes to a package since the last time that package was released.
### `bumper.bump(whatBump?: (commits: Commit[]) => Promise<BumperRecommendation | null | undefined>): Promise<BumperRecommendation>`
For instance if your project contained a package named `conventional-changelog`, you could have only commits that have happened since the last release of `conventional-changelog` was tagged by specifying `--lernaPackage=conventional-changelog` using the CLI, or `conventional-changelog` as the value of the `lernaPackage` option.
Get a recommended version bump based on conventional commits. `whatBump` function is required if preset is not loaded.
##### path
## CLI
**Type:** `string`
Specify the path to only calculate with git commits related to the path. If you want to calculate recommended bumps of packages in a [Lerna](https://lernajs.io/)-managed repository, `path` should be use along with `lernaPackage` for each of the package.
#### parserOpts
**Type:** `object`
See the [conventional-commits-parser](https://github.com/conventional-changelog/conventional-commits-parser) documentation for available options.
#### callback
**Type:** `function`
```javascript
callback(error, recommendation) {};
```sh
$ conventional-recommended-bump --help
```
`recommendation` is an `object` with a single property, `releaseType`.
`releaseType` is a `string`: Possible values: `major`, `minor` and `patch`, or `undefined` if `whatBump` does not return sa valid `level` property, or the `level` property is not set by `whatBump`.
## Debugging
To assist users of `conventional-recommended-bump` with debugging the behavior of this module we use the [debug](https://www.npmjs.com/package/debug) utility package to print information about the release process to the console. To enable debug message printing, the environment variable `DEBUG`, which is the variable used by the `debug` package, must be set to a value configured by the package containing the debug messages to be printed.
To print debug messages on a unix system set the environment variable `DEBUG` with the name of this package prior to executing `conventional-recommended-bump`:
```bash
DEBUG=conventional-recommended-bump conventional-recommended-bump
```
On the Windows command line you may do:
```bash
set DEBUG=conventional-recommended-bump
conventional-recommended-bump
```
## Node Support Policy
We only support [Long-Term Support](https://github.com/nodejs/Release) versions of Node.
We specifically limit our support to LTS versions of Node, not because this package won't work on other versions, but because we have a limited amount of time, and supporting LTS offers the greatest return on that investment.
It's possible this package will work correctly on newer versions of Node. It may even be possible to use this package on older versions of Node, though that's more unlikely as we'll make every effort to take advantage of features available in the oldest LTS version we support.
As each Node LTS version reaches its end-of-life we will remove that version from the `node` `engines` property of our package's `package.json` file. Removing a Node version is considered a breaking change and will entail the publishing of a new major version of this package. We will not accept any requests to support an end-of-life version of Node. Any merge requests or issues supporting an end-of-life version of Node will be closed.
We will accept code that allows this package to run on newer, non-LTS, versions of Node. Furthermore, we will attempt to ensure our own changes work on the latest version of Node. To help in that commitment, our continuous integration setup runs against all LTS versions of Node in addition the most recent Node release; called _current_.
JavaScript package managers should allow you to install this package with any version of Node, with, at most, a warning if your version of Node does not fall within the range specified by our `node` `engines` property. If you encounter issues installing this package, please report the issue to your package manager.
## Contributing
Please read our [contributing guide](https://github.com/conventional-changelog/conventional-changelog/blob/master/CONTRIBUTING.md) to see how you may contribute to this project.
## License
MIT © [Steve Mao](https://github.com/stevemao)
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc