We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82f7a5f commit adbbabaCopy full SHA for adbbaba
packages/nx/src/command-line/release/changelog.ts
@@ -397,8 +397,16 @@ export async function releaseChangelog(
397
continue;
398
}
399
for (const project of releaseGroup.projects) {
400
+ // If the project does not have any changes, do not process its dependents
401
+ if (
402
+ !projectsVersionData[project] ||
403
+ projectsVersionData[project].newVersion === null
404
+ ) {
405
+ continue;
406
+ }
407
+
408
const dependentProjects = (
- projectsVersionData[project]?.dependentProjects || []
409
+ projectsVersionData[project].dependentProjects || []
410
)
411
.map((dep) => {
412
return {
0 commit comments