From efb2c4cf4c08f80d033f04ccdadc7e193e7c609a Mon Sep 17 00:00:00 2001 From: Wanpeng Li Date: Tue, 25 Jun 2024 15:14:08 +0800 Subject: [PATCH] Fix Changelog Verification CI failed issue for First GA packages (#8498) --- .../src/hlc/utils/modifyChangelogFileAndBumpVersion.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/js-sdk-release-tools/src/hlc/utils/modifyChangelogFileAndBumpVersion.ts b/tools/js-sdk-release-tools/src/hlc/utils/modifyChangelogFileAndBumpVersion.ts index bc95d1c2438..738f22f9e13 100644 --- a/tools/js-sdk-release-tools/src/hlc/utils/modifyChangelogFileAndBumpVersion.ts +++ b/tools/js-sdk-release-tools/src/hlc/utils/modifyChangelogFileAndBumpVersion.ts @@ -18,6 +18,8 @@ export function makeChangesForFirstRelease(packageFolderPath: string, isStableRe ## ${newVersion} (${date}) +### Features Added + The package of ${packageJsonData.name} is using our next generation design principles. To learn more, please refer to our documentation [Quick Start](https://aka.ms/azsdk/js/mgmt/quickstart). `; fs.writeFileSync(path.join(packageFolderPath, 'CHANGELOG.md'), content, 'utf8'); @@ -31,6 +33,8 @@ export function makeChangesForMigrateTrack1ToTrack2(packageFolderPath: string, n ## ${nextPackageVersion} (${date}) +### Features Added + The package of ${packageJsonData.name} is using our next generation design principles since version ${nextPackageVersion}, which contains breaking changes. To understand the detail of the change, please refer to [Changelog](https://aka.ms/js-track2-changelog).