@@ -619,7 +619,7 @@ export class PullRequestGenerator {
619
619
620
620
body += `<details>\n`
621
621
body += `<summary>${ displayName } </summary>\n\n`
622
-
622
+
623
623
// Use consistent version formatting with constraints
624
624
const versionChange = this . formatVersionChange ( update . currentVersion , update . newVersion )
625
625
. replace ( / ` / g, '' ) // Remove backticks for clean display in details
@@ -655,12 +655,12 @@ export class PullRequestGenerator {
655
655
for ( const update of uniqueComposerUpdates ) {
656
656
body += `<details>\n`
657
657
body += `<summary>${ update . name } </summary>\n\n`
658
-
658
+
659
659
// Use consistent version formatting with constraints
660
660
const versionChange = this . formatVersionChange ( update . currentVersion , update . newVersion )
661
661
. replace ( / ` / g, '' ) // Remove backticks for clean display in details
662
662
body += `**${ versionChange } **\n\n`
663
-
663
+
664
664
body += `Visit [${ update . name } ](https://packagist.org/packages/${ encodeURIComponent ( update . name ) } ) on Packagist for more information.\n\n`
665
665
body += `</details>\n\n`
666
666
}
@@ -669,12 +669,12 @@ export class PullRequestGenerator {
669
669
for ( const update of uniqueGithubActionsUpdates ) {
670
670
body += `<details>\n`
671
671
body += `<summary>${ update . name } </summary>\n\n`
672
-
672
+
673
673
// Use consistent version formatting with constraints
674
674
const versionChange = this . formatVersionChange ( update . currentVersion , update . newVersion )
675
675
. replace ( / ` / g, '' ) // Remove backticks for clean display in details
676
676
body += `**${ versionChange } **\n\n`
677
-
677
+
678
678
body += `Visit [${ update . name } ](https://github.com/${ update . name } /releases) for release notes.\n\n`
679
679
body += `</details>\n\n`
680
680
}
0 commit comments