diff --git a/container/CHANGELOG.md b/container/CHANGELOG.md index 59b101aae7..6b20e1468b 100644 --- a/container/CHANGELOG.md +++ b/container/CHANGELOG.md @@ -3,6 +3,15 @@ + +## [v1.3.0] (2024-08-27) + +#### :rocket: Added + +* [#3831](https://github.com/SAP/luigi/pull/3831) Improves context updating method ([@walmazacn](https://github.com/walmazacn)) + + + ## [v1.2.0] (2024-07-25) * [#3797](https://github.com/SAP/luigi/pull/3797) Adds navigateToIntent to wc client api ([@walmazacn](https://github.com/walmazacn)) @@ -26,4 +35,5 @@ [v1.1.0]: https://github.com/SAP/luigi/compare/container/v1.0.0...container/v1.1.0 -[v1.2.0]: https://github.com/SAP/luigi/compare/container/v1.1.0...container/v1.2.0 \ No newline at end of file +[v1.2.0]: https://github.com/SAP/luigi/compare/container/v1.1.0...container/v1.2.0 +[v1.3.0]: https://github.com/SAP/luigi/compare/container/v1.2.0...container/v1.3.0 \ No newline at end of file diff --git a/container/public/package.json b/container/public/package.json index fa684fa84e..23efe2b4d8 100644 --- a/container/public/package.json +++ b/container/public/package.json @@ -19,5 +19,5 @@ "micro-frontends", "microfrontends" ], - "version": "1.2.0" + "version": "1.3.0" } \ No newline at end of file diff --git a/container/release-cli.js b/container/release-cli.js index ccc2c782c2..7fc7103e90 100755 --- a/container/release-cli.js +++ b/container/release-cli.js @@ -73,7 +73,7 @@ function updateVersionInPgkJson(version) { */ function formatPullRequests(pullRequests) { return pullRequests - .map(pr => `- [#${pr.number}](${pr.html_url}) ${pr.title} ([@${pr.user.login}](${pr.user.html_url}))`) + .map(pr => `* [#${pr.number}](${pr.html_url}) ${pr.title} ([@${pr.user.login}](${pr.user.html_url}))`) .join('\n'); } @@ -157,7 +157,11 @@ async function prepareRelease() { //Add compare link to the end of the file const lastline = `\n[v${version}]: https://github.com/SAP/luigi/compare/${lastContainerRelease.tag_name}...container/v${version}`; - fs.appendFile(changelogPath, lastline, 'utf8', err => { + + //read file before append last line to file, otherwise it will not be written + fs.readFileSync(changelogPath, 'utf8'); + fs.appendFileSync(changelogPath, lastline, 'utf8', err => { + console.log('Append lastline to Changelog', lastline); if (err) { logError('Cannot write compare link to the last line:', err); return;