release-please 13.19.6 → 13.19.7
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/CHANGELOG.md +7 -0
- package/build/src/github.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,13 @@
|
|
|
4
4
|
|
|
5
5
|
[1]: https://www.npmjs.com/package/release-please?activeTab=versions
|
|
6
6
|
|
|
7
|
+
## [13.19.7](https://github.com/googleapis/release-please/compare/v13.19.6...v13.19.7) (2022-08-03)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* handles pull request iterator when graphQL returns no files ([#1544](https://github.com/googleapis/release-please/issues/1544)) ([7d0f873](https://github.com/googleapis/release-please/commit/7d0f87361f9ddd3f55eb2f40ef7150c9b7f39f34))
|
|
13
|
+
|
|
7
14
|
## [13.19.6](https://github.com/googleapis/release-please/compare/v13.19.5...v13.19.6) (2022-07-27)
|
|
8
15
|
|
|
9
16
|
|
package/build/src/github.js
CHANGED
|
@@ -697,16 +697,16 @@ class GitHub {
|
|
|
697
697
|
return {
|
|
698
698
|
pageInfo: response.repository.pullRequests.pageInfo,
|
|
699
699
|
data: pullRequests.map(pullRequest => {
|
|
700
|
-
var _a;
|
|
700
|
+
var _a, _b, _c;
|
|
701
701
|
return {
|
|
702
702
|
sha: (_a = pullRequest.mergeCommit) === null || _a === void 0 ? void 0 : _a.oid,
|
|
703
703
|
number: pullRequest.number,
|
|
704
704
|
baseBranchName: pullRequest.baseRefName,
|
|
705
705
|
headBranchName: pullRequest.headRefName,
|
|
706
|
-
labels: (pullRequest.labels.nodes || []).map(l => l.name),
|
|
706
|
+
labels: (((_b = pullRequest.labels) === null || _b === void 0 ? void 0 : _b.nodes) || []).map(l => l.name),
|
|
707
707
|
title: pullRequest.title,
|
|
708
708
|
body: pullRequest.body + '',
|
|
709
|
-
files: pullRequest.files.nodes.map(node => node.path),
|
|
709
|
+
files: (((_c = pullRequest.files) === null || _c === void 0 ? void 0 : _c.nodes) || []).map(node => node.path),
|
|
710
710
|
};
|
|
711
711
|
}),
|
|
712
712
|
};
|
package/package.json
CHANGED