@modern-js/plugin-changeset 2.22.1-beta.3 → 2.22.1-beta.4
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.
|
@@ -195,7 +195,7 @@ async function genReleaseNote(options) {
|
|
|
195
195
|
if (customReleaseNoteFunction === null || customReleaseNoteFunction === void 0 ? void 0 : customReleaseNoteFunction.getReleaseInfo) {
|
|
196
196
|
commitObj = await customReleaseNoteFunction.getReleaseInfo(stdout, commitObj);
|
|
197
197
|
} else {
|
|
198
|
-
commitObj = await getReleaseInfo(stdout, commitObj,
|
|
198
|
+
commitObj = await getReleaseInfo(stdout, commitObj, repository, options.authToken);
|
|
199
199
|
}
|
|
200
200
|
releaseNote[commitObj.type].en.push(commitObj);
|
|
201
201
|
if (commitObj.summary_zh) {
|
|
@@ -154,7 +154,7 @@ export async function genReleaseNote(options) {
|
|
|
154
154
|
if (customReleaseNoteFunction === null || customReleaseNoteFunction === void 0 ? void 0 : customReleaseNoteFunction.getReleaseInfo) {
|
|
155
155
|
commitObj = await customReleaseNoteFunction.getReleaseInfo(stdout, commitObj);
|
|
156
156
|
} else {
|
|
157
|
-
commitObj = await getReleaseInfo(stdout, commitObj,
|
|
157
|
+
commitObj = await getReleaseInfo(stdout, commitObj, repository, options.authToken);
|
|
158
158
|
}
|
|
159
159
|
releaseNote[commitObj.type].en.push(commitObj);
|
|
160
160
|
if (commitObj.summary_zh) {
|