release-it 14.11.7 → 14.11.8

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.
Files changed (2) hide show
  1. package/lib/tasks.js +1 -1
  2. package/package.json +13 -13
package/lib/tasks.js CHANGED
@@ -65,7 +65,7 @@ const runTasks = async (opts, di) => {
65
65
 
66
66
  const name = await reduceUntil(plugins, plugin => plugin.getName());
67
67
  const latestVersion = (await reduceUntil(plugins, plugin => plugin.getLatestVersion())) || '0.0.0';
68
- const changelog = await reduceUntil(plugins, plugin => plugin.getChangelog());
68
+ const changelog = await reduceUntil(plugins, plugin => plugin.getChangelog(latestVersion));
69
69
 
70
70
  const incrementBase = { latestVersion, increment, isPreRelease, preReleaseId };
71
71
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "release-it",
3
- "version": "14.11.7",
3
+ "version": "14.11.8",
4
4
  "description": "Generic CLI tool to automate versioning and package publishing related tasks.",
5
5
  "keywords": [
6
6
  "build",
@@ -58,7 +58,7 @@
58
58
  "license": "MIT",
59
59
  "dependencies": {
60
60
  "@iarna/toml": "2.2.5",
61
- "@octokit/rest": "18.10.0",
61
+ "@octokit/rest": "18.12.0",
62
62
  "async-retry": "1.3.3",
63
63
  "chalk": "4.1.2",
64
64
  "cosmiconfig": "7.0.1",
@@ -68,12 +68,12 @@
68
68
  "form-data": "4.0.0",
69
69
  "git-url-parse": "11.6.0",
70
70
  "globby": "11.0.4",
71
- "got": "11.8.2",
71
+ "got": "11.8.3",
72
72
  "import-cwd": "3.0.0",
73
- "inquirer": "8.1.5",
74
- "is-ci": "3.0.0",
73
+ "inquirer": "8.2.0",
74
+ "is-ci": "3.0.1",
75
75
  "lodash": "4.17.21",
76
- "mime-types": "2.1.32",
76
+ "mime-types": "2.1.34",
77
77
  "new-github-release-url": "1.0.0",
78
78
  "open": "7.4.2",
79
79
  "ora": "5.4.1",
@@ -91,19 +91,19 @@
91
91
  "@octokit/request-error": "2.1.0",
92
92
  "ava": "3.15.0",
93
93
  "codecov": "3.8.3",
94
- "eslint": "7.32.0",
94
+ "eslint": "8.2.0",
95
95
  "eslint-config-prettier": "8.3.0",
96
- "eslint-plugin-ava": "12.0.0",
97
- "eslint-plugin-import": "2.24.2",
98
- "eslint-plugin-prettier": "3.4.0",
96
+ "eslint-plugin-ava": "13.1.0",
97
+ "eslint-plugin-import": "2.25.3",
98
+ "eslint-plugin-prettier": "4.0.0",
99
99
  "markdown-toc": "1.2.0",
100
- "mock-fs": "5.1.0",
100
+ "mock-fs": "5.1.2",
101
101
  "mock-stdio": "1.0.3",
102
- "nock": "13.1.3",
102
+ "nock": "13.2.1",
103
103
  "nyc": "15.1.0",
104
104
  "prettier": "2.4.1",
105
105
  "proxyquire": "2.1.3",
106
- "sinon": "11.1.2",
106
+ "sinon": "12.0.1",
107
107
  "strip-ansi": "6.0.0"
108
108
  },
109
109
  "engines": {