@@ -87965,7 +87965,6 @@ class Manifest {
8796587965 break;
8796687966 }
8796787967 }
87968- const needsBootstrap = releasesFound < expectedReleases;
8796987968 if (releasesFound < expectedReleases) {
8797087969 this.logger.warn(`Expected ${expectedReleases} releases, only found ${releasesFound}`);
8797187970 // Fall back to looking for missing releases using expected tags
@@ -87978,6 +87977,7 @@ class Manifest {
8797887977 releasesFound++;
8797987978 }
8798087979 }
87980+ const needsBootstrap = releasesFound < expectedReleases;
8798187981 if (releasesFound < expectedReleases) {
8798287982 this.logger.warn(`Expected ${expectedReleases} releases, only found ${releasesFound}`);
8798387983 }
@@ -88660,19 +88660,23 @@ async function latestReleaseVersion(github, targetBranch, releaseFilter, config,
8866088660 commitShas.add(commitWithPullRequest.sha);
8866188661 const mergedPullRequest = commitWithPullRequest.pullRequest;
8866288662 if (!mergedPullRequest) {
88663+ logger.trace(`skipping commit: ${commitWithPullRequest.sha} missing merged pull request`);
8866388664 continue;
8866488665 }
8866588666 const branchName = branch_name_1.BranchName.parse(mergedPullRequest.headBranchName, logger);
8866688667 if (!branchName) {
88668+ logger.trace(`skipping commit: ${commitWithPullRequest.sha} unrecognized branch name: ${mergedPullRequest.headBranchName}`);
8866788669 continue;
8866888670 }
8866988671 // If branchPrefix is specified, ensure it is found in the branch name.
8867088672 // If branchPrefix is not specified, component should also be undefined.
8867188673 if (branchName.getComponent() !== branchPrefix) {
88674+ logger.trace(`skipping commit: ${commitWithPullRequest.sha} branch component ${branchName.getComponent()} doesn't match expected prefix: ${branchPrefix}`);
8867288675 continue;
8867388676 }
8867488677 const pullRequestTitle = pull_request_title_1.PullRequestTitle.parse(mergedPullRequest.title, config.pullRequestTitlePattern, logger);
8867588678 if (!pullRequestTitle) {
88679+ logger.trace(`skipping commit: ${commitWithPullRequest.sha} couldn't parse pull request title: ${mergedPullRequest.title}`);
8867688680 continue;
8867788681 }
8867888682 const version = pullRequestTitle.getVersion();
@@ -119671,7 +119675,7 @@ module.exports = {};
119671119675/***/ ((module) => {
119672119676
119673119677"use strict";
119674- module.exports = {"i8":"15.10.2 "};
119678+ module.exports = {"i8":"15.10.4 "};
119675119679
119676119680/***/ }),
119677119681
0 commit comments