release-please 14.2.1 → 14.2.2
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 +2 -2
- 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
|
+
## [14.2.2](https://github.com/googleapis/release-please/compare/v14.2.1...v14.2.2) (2022-08-30)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* look at merged_at field to determine merge status ([#1609](https://github.com/googleapis/release-please/issues/1609)) ([1c9beac](https://github.com/googleapis/release-please/commit/1c9beacb49d82f2aa594ef0511fa8d9cfd743b11))
|
|
13
|
+
|
|
7
14
|
## [14.2.1](https://github.com/googleapis/release-please/compare/v14.2.0...v14.2.1) (2022-08-25)
|
|
8
15
|
|
|
9
16
|
|
package/build/src/github.js
CHANGED
|
@@ -638,8 +638,8 @@ class GitHub {
|
|
|
638
638
|
})) {
|
|
639
639
|
for (const pull of pulls) {
|
|
640
640
|
// The REST API does not have an option for "merged"
|
|
641
|
-
// pull requests - they are closed with a `
|
|
642
|
-
if (status !== 'MERGED' || pull.
|
|
641
|
+
// pull requests - they are closed with a `merged_at` timestamp
|
|
642
|
+
if (status !== 'MERGED' || pull.merged_at) {
|
|
643
643
|
results += 1;
|
|
644
644
|
yield {
|
|
645
645
|
headBranchName: pull.head.ref,
|