@semantic-release/release-notes-generator 14.1.0 → 14.1.1

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/index.js CHANGED
@@ -1,7 +1,5 @@
1
1
  import { format } from "url";
2
2
  import { find, merge } from "lodash-es";
3
- import getStream from "get-stream";
4
- import intoStream from "into-stream";
5
3
  import { CommitParser } from "conventional-commits-parser";
6
4
  import writer from "./wrappers/conventional-changelog-writer.js";
7
5
  import { filterRevertedCommitsSync } from "conventional-commits-filter";
@@ -94,5 +92,5 @@ export async function generateNotes(pluginConfig, context) {
94
92
  debug("issue: %o", changelogContext.issue);
95
93
  debug("commit: %o", changelogContext.commit);
96
94
 
97
- return getStream(intoStream.object(parsedCommits).pipe(writer(changelogContext, writerOpts)));
95
+ return writer(parsedCommits, changelogContext, writerOpts);
98
96
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@semantic-release/release-notes-generator",
3
3
  "description": "semantic-release plugin to generate changelog content with conventional-changelog",
4
- "version": "14.1.0",
4
+ "version": "14.1.1",
5
5
  "author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)",
6
6
  "bugs": {
7
7
  "url": "https://github.com/semantic-release/release-notes-generator/issues"
@@ -16,32 +16,29 @@
16
16
  "conventional-commits-filter": "^5.0.0",
17
17
  "conventional-commits-parser": "^6.0.0",
18
18
  "debug": "^4.0.0",
19
- "get-stream": "^7.0.0",
20
19
  "import-from-esm": "^2.0.0",
21
- "into-stream": "^7.0.0",
22
20
  "lodash-es": "^4.17.21",
23
21
  "read-package-up": "^11.0.0"
24
22
  },
25
23
  "devDependencies": {
26
24
  "ava": "6.4.1",
27
- "c8": "10.1.3",
28
- "conventional-changelog-atom": "5.0.0",
29
- "conventional-changelog-conventionalcommits": "9.1.0",
30
- "conventional-changelog-ember": "5.0.0",
31
- "conventional-changelog-eslint": "6.0.0",
32
- "conventional-changelog-express": "5.0.0",
33
- "conventional-changelog-jshint": "5.0.0",
25
+ "c8": "11.0.0",
26
+ "conventional-changelog-atom": "5.1.0",
27
+ "conventional-changelog-conventionalcommits": "9.3.1",
28
+ "conventional-changelog-ember": "5.1.0",
29
+ "conventional-changelog-eslint": "6.1.0",
30
+ "conventional-changelog-express": "5.1.0",
31
+ "conventional-changelog-jshint": "5.2.0",
34
32
  "escape-string-regexp": "5.0.0",
35
- "fs-extra": "11.3.1",
36
- "lockfile-lint": "4.14.1",
37
- "ls-engines": "0.9.3",
33
+ "fs-extra": "11.3.4",
34
+ "lockfile-lint": "5.0.0",
35
+ "ls-engines": "0.9.4",
38
36
  "npm-run-all2": "8.0.4",
39
- "prettier": "3.6.2",
40
- "publint": "0.3.12",
41
- "semantic-release": "24.2.7",
42
- "sinon": "21.0.0",
43
- "stream-buffers": "3.0.3",
44
- "tempy": "3.1.0",
37
+ "prettier": "3.8.3",
38
+ "publint": "0.3.19",
39
+ "semantic-release": "25.0.3",
40
+ "sinon": "21.1.2",
41
+ "tempy": "3.2.0",
45
42
  "testdouble": "3.20.2"
46
43
  },
47
44
  "engines": {
@@ -127,5 +124,5 @@
127
124
  "github>semantic-release/.github:renovate-config"
128
125
  ]
129
126
  },
130
- "packageManager": "npm@11.5.2"
127
+ "packageManager": "npm@11.13.0"
131
128
  }
@@ -1,3 +1,4 @@
1
- import { writeChangelogStream as writer } from 'conventional-changelog-writer';
1
+ import { writeChangelogString as writer } from 'conventional-changelog-writer';
2
2
 
3
3
  export default writer;
4
+