Search is not available for this dataset
id
stringlengths
1
8
text
stringlengths
72
9.81M
addition_count
int64
0
10k
commit_subject
stringlengths
0
3.7k
deletion_count
int64
0
8.43k
file_extension
stringlengths
0
32
lang
stringlengths
1
94
license
stringclasses
10 values
repo_name
stringlengths
9
59
10042050
<NME> core.spec.js <BEF> /* global describe it afterEach */ 'use strict' const shell = require('shelljs') const fs = require('fs') const { resolve } = require('path') const { Readable } = require('stream') const mockFS = require('mock-fs') const mockery = require('mockery') const stdMocks = require('std-mocks') cons...
12
test: updates .gitignore test to check against a default package and bump file found in the gitignore (#841)
2
.js
spec
isc
conventional-changelog/standard-version
10042051
<NME> preset.spec.js <BEF> ADDFILE <MSG> test: adds basic coverage for --preset flag and CHANGELOG output (#723) closes #720 <DFF> @@ -0,0 +1,52 @@ +/* global describe it beforeEach, afterEach */ + +const shell = require('shelljs') +const fs = require('fs') + +require('chai').should() + +function exec (opt) { + const...
52
test: adds basic coverage for --preset flag and CHANGELOG output (#723)
0
.js
spec
isc
conventional-changelog/standard-version
10042052
<NME> run-execFile.js <BEF> const { execFile } = require('child_process') const printError = require('./print-error') module.exports = function (args, cmd, cmdArgs) { if (args.dryRun) return Promise.resolve() return new Promise((resolve, reject) => { // Exec given cmd and handle possible errors execFile(cm...
15
refactor: use async/await syntax to simplify source files (#633)
17
.js
js
isc
conventional-changelog/standard-version
10042053
<NME> defaults.js <BEF> const spec = require('conventional-changelog-config-spec') const defaults = { infile: 'CHANGELOG.md', firstRelease: false, sign: false, noVerify: false, commitAll: false, silent: false, tagPrefix: 'v', scripts: {}, skip: {}, dryRun: false, gitTagFallback: true, preset: r...
2
fix!: composer.json and composer.lock have been removed from default package and bump files.
4
.js
js
isc
conventional-changelog/standard-version
10042054
<NME> README.md <BEF> # Standard Version A utility for versioning using [semver](https://semver.org/) and CHANGELOG generation powered by [Conventional Commits](https://conventionalcommits.org). ![ci](https://github.com/conventional-changelog/standard-version/workflows/ci/badge.svg) [![NPM version](https://img.shield...
2
feat(deprecated): add deprecation message (#907)
0
.md
md
isc
conventional-changelog/standard-version
10042055
<NME> index.js <BEF> const bump = require('./lib/lifecycles/bump') const changelog = require('./lib/lifecycles/changelog') const commit = require('./lib/lifecycles/commit') const fs = require('fs') const latestSemverTag = require('./lib/latest-semver-tag') const path = require('path') const printError = require('./lib/...
2
feat: added support for commitAll option in CLI (#121)
1
.js
js
isc
conventional-changelog/standard-version
10042056
<NME> json.js <BEF> const stringifyPackage = require('stringify-package') const detectIndent = require('detect-indent') const detectNewline = require('detect-newline') module.exports.readVersion = function (contents) { return JSON.parse(contents).version } module.exports.writeVersion = function (contents, version) ...
6
fix(updater): npm7 package lock's inner version not being updated (#713)
0
.js
js
isc
conventional-changelog/standard-version
10042057
<NME> README.md <BEF> # Standard Version > **`standard-version` is deprecated**. If you're a GitHub user, I recommend [release-please](https://github.com/googleapis/release-please) as an alternative. I encourage folks to fork this repository and, if a fork gets popular, I will link to it in this README. A utility for...
3
docs: Improve documentation on providing an empty tag-prefix (#579)
3
.md
md
isc
conventional-changelog/standard-version
10042058
<NME> git.spec.js <BEF> ADDFILE <MSG> test: refactored test suite to use mocks (#636) <DFF> @@ -0,0 +1,352 @@ +/* global describe it beforeEach afterEach */ + +'use strict' + +const shell = require('shelljs') +const fs = require('fs') +const { Readable } = require('stream') +const mockery = require('mockery') +const ...
352
test: refactored test suite to use mocks (#636)
0
.js
spec
isc
conventional-changelog/standard-version
10042059
<NME> CHANGELOG.md <BEF> # Changelog All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. ## [9.5.0](https://github.com/conventional-changelog/standard-version/compare/v9.4.0...v9.5.0) (2022-05-15...
0
docs: remove 4.0.0-1 from CHANGELOG
5
.md
md
isc
conventional-changelog/standard-version
10042060
<NME> manifest-6.3.1.json <BEF> ADDFILE <MSG> fix: Ensures provided `packageFiles` arguments are merged with `bumpFiles` when no `bumpFiles` argument is specified (default). (#534) - Merges `packageFiles` with `defaults.bumpFiles` before merging in arguments when a `packageFile` argument is present. - Adds some simpl...
3
fix: Ensures provided `packageFiles` arguments are merged with `bumpFiles` when no `bumpFiles` argument is specified (default). (#534)
0
.json
3
isc
conventional-changelog/standard-version
10042061
<NME> README.md <BEF> # Standard Version > **`standard-version` is deprecated**. If you're a GitHub user, I recommend [release-please](https://github.com/googleapis/release-please) as an alternative. I encourage folks to fork this repository and, if a fork gets popular, I will link to it in this README. A utility for...
2
docs: improve documentation for breaking changes
2
.md
md
isc
conventional-changelog/standard-version
10042062
<NME> configuration.js <BEF> ADDFILE <MSG> feat(configuration): .versionrc.js files are now supported (#378) * feat(configuration): .versionrc.js files are now supported - Updates the configuration retrieval to support Javascript (`.js`) configurations. - Javascript configurations MUST export a configuration obje...
39
feat(configuration): .versionrc.js files are now supported (#378)
0
.js
js
isc
conventional-changelog/standard-version
10042063
<NME> tag.js <BEF> const bump = require('../lifecycles/bump') const chalk = require('chalk') const checkpoint = require('../checkpoint') const figures = require('figures') const formatCommitMessage = require('../format-commit-message') const runExecFile = require('../run-execFile') const runLifecycleScript = require('....
1
feat: publish only if commit+push succeed (#229)
1
.js
js
isc
conventional-changelog/standard-version
10042064
<NME> index.js <BEF> const bump = require('./lib/lifecycles/bump') const changelog = require('./lib/lifecycles/changelog') const commit = require('./lib/lifecycles/commit') const fs = require('fs') const latestSemverTag = require('./lib/latest-semver-tag') const path = require('path') const printError = require('./lib/...
5
fix(index.js): use blue figures.info for last checkpoint (#64)
5
.js
js
isc
conventional-changelog/standard-version
10042065
<NME> changelog.js <BEF> const chalk = require('chalk') const checkpoint = require('../checkpoint') const conventionalChangelog = require('conventional-changelog') const fs = require('fs') const presetLoader = require('../preset-loader') const runLifecycleScript = require('../run-lifecycle-script') const writeFile = re...
3
fix: make pattern for finding CHANGELOG sections work for non anchors (#292)
2
.js
js
isc
conventional-changelog/standard-version
10042066
<NME> command.js <BEF> const spec = require('conventional-changelog-config-spec') const { getConfiguration } = require('./lib/configuration') const defaults = require('./defaults') .usage('Usage: $0 [options]') .option('release-as', { alias: 'r', describe: 'Specify the release type manually. like npm versio...
1
docs: slight nit regarding command description
1
.js
js
isc
conventional-changelog/standard-version
10042067
<NME> ci.yaml <BEF> on: push: branches: - master pull_request: name: ci jobs: test: runs-on: ${{ matrix.os }} strategy: matrix: node: [10, 12, 14] os: [ubuntu-latest, windows-latest] env: OS: ${{ matrix.os }} NODE_VERSION: ${{ matrix.node }} steps: ...
3
build: run tests on label
2
.yaml
github/workflows/ci
isc
conventional-changelog/standard-version
10042068
<NME> index.js <BEF> const bump = require('./lib/lifecycles/bump') const changelog = require('./lib/lifecycles/changelog') const commit = require('./lib/lifecycles/commit') const fs = require('fs') const latestSemverTag = require('./lib/latest-semver-tag') const path = require('path') const printError = require('./lib/...
1
fix: include merge commits in the changelog (#139)
1
.js
js
isc
conventional-changelog/standard-version
10042069
<NME> tag.js <BEF> const bump = require('../lifecycles/bump') const chalk = require('chalk') const checkpoint = require('../checkpoint') const figures = require('figures') const formatCommitMessage = require('../format-commit-message') const runExecFile = require('../run-execFile') const runLifecycleScript = require('....
1
fix: don't pass args to git rev-parse
1
.js
js
isc
conventional-changelog/standard-version
10042070
<NME> command.js <BEF> const spec = require('conventional-changelog-config-spec') const defaults = require('./defaults') const { readFileSync } = require('fs') const configPath = findUp.sync(['.versionrc', '.version.json']) const config = configPath ? JSON.parse(readFileSync(configPath)) : {} const spec = require('con...
1
fix: update config file name in command based on README.md (#357)
1
.js
js
isc
conventional-changelog/standard-version
10042071
<NME> index.js <BEF> const bump = require('./lib/lifecycles/bump') const changelog = require('./lib/lifecycles/changelog') const commit = require('./lib/lifecycles/commit') const fs = require('fs') const latestSemverTag = require('./lib/latest-semver-tag') const path = require('path') const printError = require('./lib/...
44
feat: add support for bumping version # in bower.json (#148)
14
.js
js
isc
conventional-changelog/standard-version
10042072
<NME> README.md <BEF> # Standard Version > **`standard-version` is deprecated**. If you're a GitHub user, I recommend [release-please](https://github.com/googleapis/release-please) as an alternative. I encourage folks to fork this repository and, if a fork gets popular, I will link to it in this README. [![Build Stat...
6
docs: update README to reference conventionalcommits.org
6
.md
md
isc
conventional-changelog/standard-version
10042073
<NME> tag.js <BEF> const bump = require('../lifecycles/bump') const chalk = require('chalk') const checkpoint = require('../checkpoint') const figures = require('figures') const formatCommitMessage = require('../format-commit-message') const runExecFile = require('../run-execFile') const runLifecycleScript = require('....
8
fix: no --tag prerelease for private module (#296)
6
.js
js
isc
conventional-changelog/standard-version
10042074
<NME> README.md <BEF> # Standard Version [![Build Status](https://travis-ci.org/conventional-changelog/standard-version.svg)](https://travis-ci.org/conventional-changelog/standard-version) [![NPM version](https://img.shields.io/npm/v/standard-version.svg)](https://www.npmjs.com/package/standard-version) [![Coverage St...
2
docs(badges): rethink badge slightly (#16)
2
.md
md
isc
conventional-changelog/standard-version
10042075
<NME> release-please.yml <BEF> ADDFILE <MSG> build: update publish configuration <DFF> @@ -0,0 +1,31 @@ +on: + push: + branches: + - master +name: release-please +jobs: + release-please: + runs-on: ubuntu-latest + steps: + - uses: GoogleCloudPlatform/release-please-action@v3 + id: release +...
31
build: update publish configuration
0
.yml
github/workflows/release-please
isc
conventional-changelog/standard-version
10042076
<NME> index.js <BEF> const bump = require('./lib/lifecycles/bump') const changelog = require('./lib/lifecycles/changelog') const commit = require('./lib/lifecycles/commit') const fs = require('fs') const latestSemverTag = require('./lib/latest-semver-tag') const path = require('path') const printError = require('./lib/...
11
fix(commit): fix windows by separating add and commit exec (#55)
5
.js
js
isc
conventional-changelog/standard-version
10042077
<NME> index.js <BEF> const bump = require('./lib/lifecycles/bump') const changelog = require('./lib/lifecycles/changelog') const commit = require('./lib/lifecycles/commit') const fs = require('fs') const latestSemverTag = require('./lib/latest-semver-tag') const path = require('path') const printError = require('./lib/...
1
fix: should print message before we bump version
1
.js
js
isc
conventional-changelog/standard-version
10042078
<NME> customer-updater.js <BEF> ADDFILE <MSG> feat: custom 'bumpFiles' and 'packageFiles' support (#372) Co-Authored-By: Sébastien Règne <1a393ed977e265cd768765574e31454d4f88b372@users.noreply.github.com> <DFF> @@ -0,0 +1,12 @@ +const REPLACER = /version: "(.*)"/ + +module.exports.readVersion = function (contents) {...
12
feat: custom 'bumpFiles' and 'packageFiles' support (#372)
0
.js
js
isc
conventional-changelog/standard-version
10042079
<NME> CHANGELOG.md <BEF> # Changelog All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. ## [9.5.0](https://github.com/conventional-changelog/standard-version/compare/v9.4.0...v9.5.0) (2022-05-15...
0
docs: remove 4.0.0-0 from CHANGELOG
22
.md
md
isc
conventional-changelog/standard-version
10042080
<NME> README.md <BEF> # Standard Version > **`standard-version` is deprecated**. If you're a GitHub user, I recommend [release-please](https://github.com/googleapis/release-please) as an alternative. I encourage folks to fork this repository and, if a fork gets popular, I will link to it in this README. A utility for...
3
docs(Configuration): Fix typo, adds required version for custom version file management and references proper attribute name (`filename`) (#527)
3
.md
md
isc
conventional-changelog/standard-version
10042081
<NME> index.js <BEF> const bump = require('./lib/lifecycles/bump') const changelog = require('./lib/lifecycles/changelog') const commit = require('./lib/lifecycles/commit') const fs = require('fs') const latestSemverTag = require('./lib/latest-semver-tag') const path = require('path') const printError = require('./lib/...
18
Add: bower support (#134)
3
.js
js
isc
conventional-changelog/standard-version
10042082
<NME> index.js <BEF> const path = require('path') const JSON_BUMP_FILES = require('../../defaults').bumpFiles const updatersByType = { json: require('./types/json'), 'plain-text': require('./types/plain-text') } const PLAIN_TEXT_BUMP_FILES = ['VERSION.txt', 'version.txt'] function getUpdaterByType (type) { const...
1
docs(updaters): fix typo in error message (#689)
1
.js
js
isc
conventional-changelog/standard-version
10042083
<NME> run-execFile.js <BEF> ADDFILE <MSG> Merge pull request from GHSA-7xcx-6wjh-7xp2 - Uses `execFile` with arguments instead of `exec` where possible. - See GHSL-2020-111 Co-authored-by: Benjamin E. Coe <69440dae14aaa9fe2429b324bfce03449d09e1db@google.com> <DFF> @@ -0,0 +1,20 @@ +const { execFile } = require('child...
20
Merge pull request from GHSA-7xcx-6wjh-7xp2
0
.js
js
isc
conventional-changelog/standard-version
10042084
<NME> command.js <BEF> const spec = require('conventional-changelog-config-spec') const { getConfiguration } = require('./lib/configuration') const defaults = require('./defaults') const yargs = require('yargs') .usage('Usage: $0 [options]') .option('packageFiles', { default: defaults.packageFiles, array: ...
1
fix(cli): display only one, correct default for --preset flag (#377)
1
.js
js
isc
conventional-changelog/standard-version
10042085
<NME> README.md <BEF> # Standard Version > **`standard-version` is deprecated**. If you're a GitHub user, I recommend [release-please](https://github.com/googleapis/release-please) as an alternative. I encourage folks to fork this repository and, if a fork gets popular, I will link to it in this README. A utility for...
4
docs: bumpFiles key for file path is not valid (#511)
4
.md
md
isc
conventional-changelog/standard-version
10042086
<NME> README.md <BEF> # Standard Version > **`standard-version` is deprecated**. If you're a GitHub user, I recommend [release-please](https://github.com/googleapis/release-please) as an alternative. I encourage folks to fork this repository and, if a fork gets popular, I will link to it in this README. A utility for...
10
docs: update README.md with prefix tag docs (#284)
0
.md
md
isc
conventional-changelog/standard-version
10042087
<NME> LICENSE.txt <BEF> Copyright (c) 2016, Contributors Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DIS...
2
docs: add title to LICENSE.txt (#238)
0
.txt
txt
isc
conventional-changelog/standard-version
10042088
<NME> .editorconfig <BEF> ADDFILE <MSG> chore(editorconfig): add editorconfig (#112) <DFF> @@ -0,0 +1,9 @@ +# EditorConfig is awesome: http://EditorConfig.org + +root = true + +[*] +trim_trailing_whitespace=true +indent_style = space +indent_size = 2 +insert_final_newline = true
9
chore(editorconfig): add editorconfig (#112)
0
editorconfig
isc
conventional-changelog/standard-version
10042089
<NME> bump.js <BEF> 'use strict' const chalk = require('chalk') const checkpoint = require('../checkpoint') const conventionalRecommendedBump = require('conventional-recommended-bump') const figures = require('figures') const fs = require('fs') const DotGitignore = require('dotgitignore') const path = require('path') ...
1
feat: add support for `package-lock.json` (#190)
0
.js
js
isc
conventional-changelog/standard-version
10042090
<NME> tag.js <BEF> const bump = require('../lifecycles/bump') const chalk = require('chalk') const checkpoint = require('../checkpoint') const figures = require('figures') const formatCommitMessage = require('../format-commit-message') const runExecFile = require('../run-execFile') const runLifecycleScript = require('....
1
fix: recommend `--tag` prerelease for npm publish of prereleases (#196)
0
.js
js
isc
conventional-changelog/standard-version
10042091
<NME> bug-report.md <BEF> ADDFILE <MSG> chore: Adds basic issue templates (#613) An attempt to standardize our issue backlog... since it's easy for these issues to become stale it would be helpful to ensure/ask folks to explicitly list some information about their environment/versions to tighten the feedback loop a li...
31
chore: Adds basic issue templates (#613)
0
.md
github/ISSUE_TEMPLATE/bug-report
isc
conventional-changelog/standard-version
10042092
<NME> index.js <BEF> const bump = require('./lib/lifecycles/bump') const changelog = require('./lib/lifecycles/changelog') const commit = require('./lib/lifecycles/commit') const fs = require('fs') const latestSemverTag = require('./lib/latest-semver-tag') const path = require('path') const printError = require('./lib/...
3
Revert "Add: bower support" (#147)
18
.js
js
isc
conventional-changelog/standard-version
10042093
<NME> README.md <BEF> # Standard Version > **`standard-version` is deprecated**. If you're a GitHub user, I recommend [release-please](https://github.com/googleapis/release-please) as an alternative. I encourage folks to fork this repository and, if a fork gets popular, I will link to it in this README. A utility for...
14
docs: a few documentation nits (#145)
9
.md
md
isc
conventional-changelog/standard-version
10042094
<NME> changelog.js <BEF> const chalk = require('chalk') const checkpoint = require('../checkpoint') const conventionalChangelog = require('conventional-changelog') const fs = require('fs') const presetLoader = require('../preset-loader') const presetLoader = require('../preset-loader') const runLifecycleScript = requir...
6
fix: prevent duplicate headers from being added (#305) (#307)
5
.js
js
isc
conventional-changelog/standard-version
10042095
<NME> tag.js <BEF> const bump = require('../lifecycles/bump') const chalk = require('chalk') const checkpoint = require('../checkpoint') const figures = require('figures') const formatCommitMessage = require('../format-commit-message') const runExecFile = require('../run-execFile') const runLifecycleScript = require('....
7
fix: show correct pre-release tag in help output (#259)
1
.js
js
isc
conventional-changelog/standard-version
10042096
<NME> CHANGELOG.md <BEF> ADDFILE <MSG> see changelog for details <DFF> @@ -0,0 +1,10 @@ +<a name="1.0.0"></a> +# 1.0.0 (2016-04-04) + + +### Features + +* **initial-release:** adds flag for generating CHANGELOG.md on the first release. ([b812b44](https://github.com/bcoe/conventional-recommended-workflow/commit/b812b44...
10
see changelog for details
0
.md
md
isc
conventional-changelog/standard-version
10042097
<NME> CHANGELOG.md <BEF> # Changelog All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. ## [9.5.0](https://github.com/conventional-changelog/standard-version/compare/v9.4.0...v9.5.0) (2022-05-15...
1
docs: cleanup changelog
1
.md
md
isc
conventional-changelog/standard-version
10042098
<NME> changelog.js <BEF> const chalk = require('chalk') const checkpoint = require('../checkpoint') const conventionalChangelog = require('conventional-changelog') const fs = require('fs') const presetLoader = require('../preset-loader') const runLifecycleScript = require('../run-lifecycle-script') const writeFile = re...
3
feat: cli application accept path/preset option (#279)
2
.js
js
isc
conventional-changelog/standard-version
10042099
<NME> cli.js <BEF> #!/usr/bin/env node var standardVersion = require('../index') var cmdParser = require('../command') standardVersion(cmdParser.argv, function (err) { if (err) { process.exit(1) } }) <MSG> feat(cli): print error and don't run with node <4, closes #124 <DFF> @@ -2,8 +2,13 @@ var standardVers...
10
feat(cli): print error and don't run with node <4, closes #124
5
.js
js
isc
conventional-changelog/standard-version
10042100
<NME> README.md <BEF> # Standard Version > **`standard-version` is deprecated**. If you're a GitHub user, I recommend [release-please](https://github.com/googleapis/release-please) as an alternative. I encourage folks to fork this repository and, if a fork gets popular, I will link to it in this README. A utility for...
3
docs(readme): describe how to apply no tag prefix at all (#325)
1
.md
md
isc
conventional-changelog/standard-version
10042101
<NME> README.md <BEF> # Standard Version > **`standard-version` is deprecated**. If you're a GitHub user, I recommend [release-please](https://github.com/googleapis/release-please) as an alternative. I encourage folks to fork this repository and, if a fork gets popular, I will link to it in this README. A utility for...
2
docs(cli): note about yargs dot notation in lieu of package.json (#380)
0
.md
md
isc
conventional-changelog/standard-version
10042102
<NME> index.js <BEF> const bump = require('./lib/lifecycles/bump') const changelog = require('./lib/lifecycles/changelog') const commit = require('./lib/lifecycles/commit') const fs = require('fs') const latestSemverTag = require('./lib/latest-semver-tag') const path = require('path') const printError = require('./lib/...
14
fix(err): don't fail on stderr output, but print the output to stderr (#110)
17
.js
js
isc
conventional-changelog/standard-version
10042103
<NME> CHANGELOG.md <BEF> # Changelog All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. ## [9.5.0](https://github.com/conventional-changelog/standard-version/compare/v9.4.0...v9.5.0) (2022-05-15...
2
docs: remove repeated entries added to changelog
3
.md
md
isc
conventional-changelog/standard-version
10042104
<NME> README.md <BEF> # Standard Version [![Join the chat at https://gitter.im/conventional-changelog/standard-version](https://badges.gitter.im/conventional-changelog/standard-version.svg)](https://gitter.im/conventional-changelog/standard-version?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=ba...
3
chore: add link to community slack (#202)
2
.md
md
isc
conventional-changelog/standard-version
10042105
<NME> index.js <BEF> const bump = require('./lib/lifecycles/bump') const changelog = require('./lib/lifecycles/changelog') const commit = require('./lib/lifecycles/commit') const fs = require('fs') const latestSemverTag = require('./lib/latest-semver-tag') const path = require('path') const printError = require('./lib/...
1
feat: allow a version # to be provided for release-as, rather than just major, minor, patch.
1
.js
js
isc
conventional-changelog/standard-version
10042106
<NME> changelog.js <BEF> const chalk = require('chalk') const checkpoint = require('../checkpoint') const conventionalChangelog = require('conventional-changelog') const fs = require('fs') const presetLoader = require('../preset-loader') const runLifecycleScript = require('../run-lifecycle-script') const writeFile = re...
1
fix: always pass version to changelog context (#327)
2
.js
js
isc
conventional-changelog/standard-version
10042107
<NME> README.md <BEF> # Standard Version > **`standard-version` is deprecated**. If you're a GitHub user, I recommend [release-please](https://github.com/googleapis/release-please) as an alternative. I encourage folks to fork this repository and, if a fork gets popular, I will link to it in this README. A utility for...
1
docs:Fix "commits" typo in README.md (#500)
1
.md
md
isc
conventional-changelog/standard-version
10042108
<NME> index.js <BEF> const bump = require('./lib/lifecycles/bump') const changelog = require('./lib/lifecycles/changelog') const commit = require('./lib/lifecycles/commit') const fs = require('fs') const latestSemverTag = require('./lib/latest-semver-tag') const path = require('path') const printError = require('./lib/...
9
feat: add a --no-verify option to prevent git hooks from being verified (#44)
1
.js
js
isc
conventional-changelog/standard-version
10042109
<NME> index.js <BEF> const bump = require('./lib/lifecycles/bump') const changelog = require('./lib/lifecycles/changelog') const commit = require('./lib/lifecycles/commit') const fs = require('fs') const latestSemverTag = require('./lib/latest-semver-tag') const path = require('path') const printError = require('./lib/...
1
fix: append line feed to end of package.json (#42)
1
.js
js
isc
conventional-changelog/standard-version
10042110
<NME> write-file.js <BEF> ADDFILE <MSG> feat: add dry-run mode (#187) <DFF> @@ -0,0 +1,6 @@ +const fs = require('fs') + +module.exports = function (args, filePath, content) { + if (args.dryRun) return + fs.writeFileSync(filePath, content, 'utf8') +}
6
feat: add dry-run mode (#187)
0
.js
js
isc
conventional-changelog/standard-version
10042111
<NME> README.md <BEF> # Standard Version > **`standard-version` is deprecated**. If you're a GitHub user, I recommend [release-please](https://github.com/googleapis/release-please) as an alternative. I encourage folks to fork this repository and, if a fork gets popular, I will link to it in this README. A utility for...
2
docs(README): Minor typo fix. (#657)
2
.md
md
isc
conventional-changelog/standard-version
10042112
<NME> .gitignore <BEF> node_modules .nyc_output # coverage coverage package-lock.json <MSG> chore: add os, npm and editor related ignores to git (#113) <DFF> @@ -1,2 +1,13 @@ +# OS +.DS_Store + +# node.js & npm node_modules .nyc_output +npm-debug.log + +# Editor files +/.project +/.settings +/.idea +/.vscode
11
chore: add os, npm and editor related ignores to git (#113)
0
gitignore
isc
conventional-changelog/standard-version
10042113
<NME> bump.js <BEF> 'use strict' const chalk = require('chalk') const checkpoint = require('../checkpoint') const conventionalRecommendedBump = require('conventional-recommended-bump') const figures = require('figures') const fs = require('fs') const DotGitignore = require('dotgitignore') const path = require('path') ...
2
fix(bump): transmit tag prefix argument to conventionalRecommendedBump (#393)
1
.js
js
isc
conventional-changelog/standard-version
10042114
<NME> README.md <BEF> # Standard Version > **`standard-version` is deprecated**. If you're a GitHub user, I recommend [release-please](https://github.com/googleapis/release-please) as an alternative. I encourage folks to fork this repository and, if a fork gets popular, I will link to it in this README. A utility for...
1
docs(README): Fix typos (#447)
1
.md
md
isc
conventional-changelog/standard-version
10042115
<NME> README.md <BEF> # Standard Version [![Build Status](https://travis-ci.org/conventional-changelog/standard-version.svg?branch=master)](https://travis-ci.org/conventional-changelog/standard-version) [![NPM version](https://img.shields.io/npm/v/standard-version.svg)](https://www.npmjs.com/package/standard-version) ...
2
docs: add Gitter badge (#92)
0
.md
md
isc
conventional-changelog/standard-version
10042116
<NME> CHANGELOG.md <BEF> # Changelog All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. ## [9.5.0](https://github.com/conventional-changelog/standard-version/compare/v9.4.0...v9.5.0) (2022-05-15...
0
docs: fix up cruft in changelog
2
.md
md
isc
conventional-changelog/standard-version
10042117
<NME> git.spec.js <BEF> /* global describe it beforeEach afterEach */ 'use strict' const shell = require('shelljs') const fs = require('fs') const { Readable } = require('stream') const mockery = require('mockery') const stdMocks = require('std-mocks') require('chai').should() function exec (opt = '') { if (typeo...
24
feat: allows seperate prefixTag version sequences (#573)
1
.js
spec
isc
conventional-changelog/standard-version
10042118
<NME> index.js <BEF> const bump = require('./lib/lifecycles/bump') const changelog = require('./lib/lifecycles/changelog') var conventionalRecommendedBump = require('conventional-recommended-bump') var path = require('path') var argv = require('yargs') .usage('$0 [options]') .option('infile', { alias: 'i', ...
17
feat(cli): use conventional default commit message with version
10
.js
js
isc
conventional-changelog/standard-version
10042119
<NME> .versionrc <BEF> ADDFILE <MSG> build: add .versionrc that hides test/build <DFF> @@ -0,0 +1,10 @@ +{ + "types": [ + {"type":"feat","section":"Features"}, + {"type":"fix","section":"Bug Fixes"}, + {"type":"test","section":"Tests", "hidden": true}, + {"type":"build","section":"Build System", "hidden":...
10
build: add .versionrc that hides test/build
0
versionrc
isc
conventional-changelog/standard-version
10042120
<NME> index.js <BEF> const bump = require('./lib/lifecycles/bump') const changelog = require('./lib/lifecycles/changelog') const commit = require('./lib/lifecycles/commit') const fs = require('fs') const latestSemverTag = require('./lib/latest-semver-tag') const path = require('path') const printError = require('./lib/...
1
feat: add support for `npm-shrinkwrap.json` (#185)
0
.js
js
isc
conventional-changelog/standard-version
10042121
<NME> README.md <BEF> # Standard Version > **`standard-version` is deprecated**. If you're a GitHub user, I recommend [release-please](https://github.com/googleapis/release-please) as an alternative. I encourage folks to fork this repository and, if a fork gets popular, I will link to it in this README. A utility for...
13
doc : added an example of a postcommit hook (#232)
0
.md
md
isc
conventional-changelog/standard-version
10042122
<NME> README.md <BEF> # Conventional Recommended Workflow Automatic CHANGELOG.md generation, using GitHub's new squash button and the workflow outlined in [conventional-changelog-cli](https://github.com/stevemao/conventional-changelog-cli). [![codecov](https://codecov.io/gh/conventional-changelog/standard-version/bra...
3
feat(travis-ci) adds travis-ci integration tests and badges
0
.md
md
isc
conventional-changelog/standard-version
10042123
<NME> README.md <BEF> # Standard Version A utility for versioning using [semver](https://semver.org/) and CHANGELOG generation powered by [Conventional Commits](https://conventionalcommits.org). [![Build Status](https://travis-ci.org/conventional-changelog/standard-version.svg?branch=master)](https://travis-ci.org/co...
1
docs(README): Updates the CI status badge to source from GitHub workflows. (#595)
1
.md
md
isc
conventional-changelog/standard-version
10042124
<NME> index.js <BEF> const bump = require('./lib/lifecycles/bump') const changelog = require('./lib/lifecycles/changelog') const commit = require('./lib/lifecycles/commit') const fs = require('fs') const latestSemverTag = require('./lib/latest-semver-tag') const path = require('path') const printError = require('./lib/...
1
feat(changelogStream): use more default opts (#67)
5
.js
js
isc
conventional-changelog/standard-version
10042125
<NME> README.md <BEF> # Standard Version > **`standard-version` is deprecated**. If you're a GitHub user, I recommend [release-please](https://github.com/googleapis/release-please) as an alternative. I encourage folks to fork this repository and, if a fork gets popular, I will link to it in this README. A utility for...
4
docs(README): removes refrences to Angular convention. (#413)
4
.md
md
isc
conventional-changelog/standard-version
10042126
<NME> index.js <BEF> const bump = require('./lib/lifecycles/bump') const changelog = require('./lib/lifecycles/changelog') const commit = require('./lib/lifecycles/commit') const fs = require('fs') const latestSemverTag = require('./lib/latest-semver-tag') const path = require('path') .option('infile', { alias: '...
33
feat(initial-release): adds flag for generating CHANGELOG.md on the first release.
9
.js
js
isc
conventional-changelog/standard-version
10042127
<NME> index.js <BEF> const bump = require('./lib/lifecycles/bump') const changelog = require('./lib/lifecycles/changelog') const commit = require('./lib/lifecycles/commit') const fs = require('fs') const latestSemverTag = require('./lib/latest-semver-tag') const path = require('path') const printError = require('./lib/...
1
feat: make tag prefix configurable (#143)
1
.js
js
isc
conventional-changelog/standard-version
10042128
<NME> index.js <BEF> const bump = require('./lib/lifecycles/bump') const changelog = require('./lib/lifecycles/changelog') const commit = require('./lib/lifecycles/commit') const fs = require('fs') const latestSemverTag = require('./lib/latest-semver-tag') const path = require('path') const printError = require('./lib/...
1
fix: format the annotated tag message (#28)
1
.js
js
isc
conventional-changelog/standard-version
10042129
<NME> format-commit-message.js <BEF> const util = require('util') module.exports = function (msg, newVersion) { return String(msg).indexOf('%s') !== -1 ? util.format(msg, newVersion) : msg } <MSG> feat(format-commit-message): support multiple %s in the message <DFF> @@ -1,5 +1,10 @@ const util = require('util') ...
7
feat(format-commit-message): support multiple %s in the message
2
.js
js
isc
conventional-changelog/standard-version
10042130
<NME> CHANGELOG.md <BEF> # Changelog All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. ## [9.5.0](https://github.com/conventional-changelog/standard-version/compare/v9.4.0...v9.5.0) (2022-05-15...
0
docs: don't mention appveyor
1
.md
md
isc
conventional-changelog/standard-version
10042131
<NME> bump.js <BEF> 'use strict' const chalk = require('chalk') const checkpoint = require('../checkpoint') const conventionalRecommendedBump = require('conventional-recommended-bump') const figures = require('figures') const fs = require('fs') const DotGitignore = require('dotgitignore') const path = require('path') ...
7
feat!: bump minor rather than major, if release is < 1.0.0 (#347)
3
.js
js
isc
conventional-changelog/standard-version
10042132
<NME> README.md <BEF> # Standard Version [![Build Status](https://travis-ci.org/conventional-changelog/standard-version.svg)](https://travis-ci.org/conventional-changelog/standard-version) [![NPM version](https://img.shields.io/npm/v/standard-version.svg)](https://www.npmjs.com/package/standard-version) [![Coverage St...
1
docs(badge): show master branch status of travis ci (#87)
1
.md
md
isc
conventional-changelog/standard-version
10042133
<NME> bump.js <BEF> 'use strict' const chalk = require('chalk') const checkpoint = require('../checkpoint') const conventionalRecommendedBump = require('conventional-recommended-bump') const figures = require('figures') const fs = require('fs') const DotGitignore = require('dotgitignore') const path = require('path') ...
2
feat: add --lerna-package flag used to extract tags in case of lerna repo (#503)
1
.js
js
isc
conventional-changelog/standard-version
10042134
<NME> README.md <BEF> # Standard Version > **`standard-version` is deprecated**. If you're a GitHub user, I recommend [release-please](https://github.com/googleapis/release-please) as an alternative. I encourage folks to fork this repository and, if a fork gets popular, I will link to it in this README. A utility for...
2
docs: fix typo and promote --follow-tags (#20)
2
.md
md
isc
conventional-changelog/standard-version
10042135
<NME> CHANGELOG.md <BEF> # Changelog All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. ## [9.5.0](https://github.com/conventional-changelog/standard-version/compare/v9.4.0...v9.5.0) (2022-05-15...
2
docs: slight tweak to auto-generated CHANGELOG.md
6
.md
md
isc
conventional-changelog/standard-version
10042136
<NME> README.md <BEF> # Standard Version > **`standard-version` is deprecated**. If you're a GitHub user, I recommend [release-please](https://github.com/googleapis/release-please) as an alternative. I encourage folks to fork this repository and, if a fork gets popular, I will link to it in this README. A utility for...
2
docs(readme): fix markdown formatting typo (#289)
2
.md
md
isc
conventional-changelog/standard-version
10042137
<NME> index.js <BEF> const bump = require('./lib/lifecycles/bump') const changelog = require('./lib/lifecycles/changelog') const commit = require('./lib/lifecycles/commit') const fs = require('fs') const latestSemverTag = require('./lib/latest-semver-tag') const path = require('path') const printError = require('./lib/...
15
feat: add --sign flag to sign git commit and tag (#29)
2
.js
js
isc
conventional-changelog/standard-version
10042138
<NME> bump.js <BEF> 'use strict' const chalk = require('chalk') const checkpoint = require('../checkpoint') const conventionalRecommendedBump = require('conventional-recommended-bump') const figures = require('figures') const fs = require('fs') const DotGitignore = require('dotgitignore') const path = require('path') ...
2
feat: add prerelease lifecycle script hook (closes #217) (#234)
1
.js
js
isc
conventional-changelog/standard-version
10042139
<NME> test.js <BEF> ADDFILE <MSG> feat(tests): adds test suite, fixed several Node 0.10 issues along the way <DFF> @@ -0,0 +1,81 @@ +/* global describe it beforeEach afterEach */ + +'use strict' + +var shell = require('shelljs') +var fs = require('fs') +var path = require('path') +var cliPath = path.resolve(__dirname, ...
81
feat(tests): adds test suite, fixed several Node 0.10 issues along the way
0
.js
js
isc
conventional-changelog/standard-version
10042140
<NME> tag.js <BEF> const bump = require('../lifecycles/bump') const chalk = require('chalk') const checkpoint = require('../checkpoint') const figures = require('figures') const formatCommitMessage = require('../format-commit-message') const runExecFile = require('../run-execFile') const runLifecycleScript = require('....
1
fix: adds support for `releaseCommitMessageFormat` (#351)
1
.js
js
isc
conventional-changelog/standard-version
10042141
<NME> commit.js <BEF> const bump = require('../lifecycles/bump') const checkpoint = require('../checkpoint') const formatCommitMessage = require('../format-commit-message') const path = require('path') const runExecFile = require('../run-execFile') const runLifecycleScript = require('../run-lifecycle-script') module.e...
6
feat: update commit msg for when using commitAll (#320)
0
.js
js
isc
conventional-changelog/standard-version
10042142
<NME> ci.yaml <BEF> on: push: branches: - master pull_request: types: [ assigned, opened, synchronize, reopened, labeled ] name: ci jobs: test: runs-on: ${{ matrix.os }} strategy: matrix: node: [10, 12, 14] os: [ubuntu-latest, windows-latest] env: OS: ${{ ma...
1
chore(deps): update codecov/codecov-action action to v2 (#784)
1
.yaml
github/workflows/ci
isc
conventional-changelog/standard-version
10042143
<NME> README.md <BEF> # Standard Version > **`standard-version` is deprecated**. If you're a GitHub user, I recommend [release-please](https://github.com/googleapis/release-please) as an alternative. I encourage folks to fork this repository and, if a fork gets popular, I will link to it in this README. A utility for...
9
docs: document commit-all flag with example (#127)
0
.md
md
isc
conventional-changelog/standard-version
10042144
<NME> index.js <BEF> const bump = require('./lib/lifecycles/bump') const changelog = require('./lib/lifecycles/changelog') const commit = require('./lib/lifecycles/commit') const fs = require('fs') const latestSemverTag = require('./lib/latest-semver-tag') const path = require('path') const printError = require('./lib/...
1
fix: we had too many \n characters (#17)
1
.js
js
isc
conventional-changelog/standard-version
10042145
<NME> core.spec.js <BEF> /* global describe it afterEach */ 'use strict' const shell = require('shelljs') const fs = require('fs') const { resolve } = require('path') const { Readable } = require('stream') const mockFS = require('mock-fs') const mockery = require('mockery') const stdMocks = require('std-mocks') cons...
22
feat: support custom updater as object as well as path (#630)
0
.js
spec
isc
conventional-changelog/standard-version
10042146
<NME> FoldableEspressoDeviceTest.kt <BEF> /* * Copyright (C) 2021 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/L...
13
Introduce BaseDeviceModeAction and synchronize device mode actions
11
.kt
kt
apache-2.0
android/android-test
10042147
<NME> FoldableEspressoDeviceTest.kt <BEF> /* * Copyright (C) 2021 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/L...
13
Introduce BaseDeviceModeAction and synchronize device mode actions
11
.kt
kt
apache-2.0
android/android-test
10042148
<NME> FoldableEspressoDeviceTest.kt <BEF> /* * Copyright (C) 2021 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/L...
13
Introduce BaseDeviceModeAction and synchronize device mode actions
11
.kt
kt
apache-2.0
android/android-test
10042149
<NME> FoldableEspressoDeviceTest.kt <BEF> /* * Copyright (C) 2021 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/L...
13
Introduce BaseDeviceModeAction and synchronize device mode actions
11
.kt
kt
apache-2.0
android/android-test