semantic-release 17.3.9 → 17.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -48,7 +48,7 @@ This removes the immediate connection between human emotions and version numbers
48
48
 
49
49
  **semantic-release** uses the commit messages to determine the type of changes in the codebase. Following formalized conventions for commit messages, **semantic-release** automatically determines the next [semantic version](https://semver.org) number, generates a changelog and publishes the release.
50
50
 
51
- By default **semantic-release** uses [Angular Commit Message Conventions](https://github.com/angular/angular.js/blob/master/DEVELOPERS.md#-git-commit-guidelines). The commit message format can be changed with the [`preset` or `config` options](docs/usage/configuration.md#options) of the [@semantic-release/commit-analyzer](https://github.com/semantic-release/commit-analyzer#options) and [@semantic-release/release-notes-generator](https://github.com/semantic-release/release-notes-generator#options) plugins.
51
+ By default **semantic-release** uses [Angular Commit Message Conventions](https://github.com/angular/angular/blob/master/CONTRIBUTING.md#-commit-message-format). The commit message format can be changed with the [`preset` or `config` options](docs/usage/configuration.md#options) of the [@semantic-release/commit-analyzer](https://github.com/semantic-release/commit-analyzer#options) and [@semantic-release/release-notes-generator](https://github.com/semantic-release/release-notes-generator#options) plugins.
52
52
 
53
53
  Tools such as [commitizen](https://github.com/commitizen/cz-cli) or [commitlint](https://github.com/conventional-changelog/commitlint) can be used to help contributors and enforce valid commit messages.
54
54
 
package/docs/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # semantic-release documentation
2
2
 
3
3
  - [Usage](usage/README.md) - **semantic-release** installation and configuration
4
- - [Extending](extending/README.md)- Extending **semantic-release** with plugins and shareable configurations
4
+ - [Extending](extending/README.md) - Extending **semantic-release** with plugins and shareable configurations
5
5
  - [Recipes](recipes/README.md) - Community written recipes for common **semantic-release** use-cases
6
6
  - [Developer Guide](developer-guide/README.md) - The essentials of writing a **semantic-release** plugin or shareable configurations
7
7
  - [Support](support/README.md) - FAQ and troubleshooting
package/lib/get-config.js CHANGED
@@ -9,19 +9,10 @@ const plugins = require('./plugins');
9
9
  const {validatePlugin, parseConfig} = require('./plugins/utils');
10
10
 
11
11
  const CONFIG_NAME = 'release';
12
- const CONFIG_FILES = [
13
- 'package.json',
14
- `.${CONFIG_NAME}rc`,
15
- `.${CONFIG_NAME}rc.json`,
16
- `.${CONFIG_NAME}rc.yaml`,
17
- `.${CONFIG_NAME}rc.yml`,
18
- `.${CONFIG_NAME}rc.js`,
19
- `${CONFIG_NAME}.config.js`,
20
- ];
21
12
 
22
13
  module.exports = async (context, cliOptions) => {
23
14
  const {cwd, env} = context;
24
- const {config, filepath} = (await cosmiconfig(CONFIG_NAME, {searchPlaces: CONFIG_FILES}).search(cwd)) || {};
15
+ const {config, filepath} = (await cosmiconfig(CONFIG_NAME).search(cwd)) || {};
25
16
 
26
17
  debug('load config from: %s', filepath);
27
18
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "semantic-release",
3
3
  "description": "Automated semver compliant package publishing",
4
- "version": "17.3.9",
4
+ "version": "17.4.0",
5
5
  "author": "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
6
6
  "ava": {
7
7
  "files": [
@@ -58,11 +58,11 @@
58
58
  "file-url": "3.0.0",
59
59
  "fs-extra": "9.1.0",
60
60
  "got": "11.8.1",
61
- "js-yaml": "3.14.0",
61
+ "js-yaml": "3.14.1",
62
62
  "mockserver-client": "5.11.2",
63
63
  "nock": "13.0.7",
64
64
  "nyc": "15.1.0",
65
- "p-retry": "4.3.0",
65
+ "p-retry": "4.4.0",
66
66
  "proxyquire": "2.1.3",
67
67
  "sinon": "9.2.4",
68
68
  "stream-buffers": "3.0.2",