From 318c20319a381455634b2ef97e068b7c22c88301 Mon Sep 17 00:00:00 2001 From: Manuel <5673677+mtrezza@users.noreply.github.com> Date: Tue, 8 Mar 2022 02:49:18 +0100 Subject: [PATCH] ci: fix changelog file path (#7835) --- CHANGELOG.md | 14 ++++++++++++++ changelogs/CHANGELOG.md | 13 ------------- release.config.js | 2 +- 3 files changed, 15 insertions(+), 14 deletions(-) delete mode 100644 changelogs/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 401dae86..3ab08abb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## [4.10.6](https://github.com/parse-community/parse-server/compare/4.10.5...4.10.6) (2022-02-12) + + +### Bug Fixes + +* update graphql dependencies to work with Parse Dashboard ([#7658](https://github.com/parse-community/parse-server/issues/7658)) ([350ecde](https://github.com/parse-community/parse-server/commit/350ecdee590f1b9d721895b2c79306c01622c3fc)) + +## [4.10.5](https://github.com/parse-community/parse-server/compare/4.10.4...4.10.5) (2022-02-12) + + +### Bug Fixes + +* security upgrade follow-redirects from 1.13.0 to 1.14.8 ([#7803](https://github.com/parse-community/parse-server/issues/7803)) ([611332e](https://github.com/parse-community/parse-server/commit/611332ea33831258efd3dd2f2c621c2e35fc95d3)) + # 4.10.4 [Full Changelog](https://github.com/parse-community/parse-server/compare/4.10.3...4.10.4) diff --git a/changelogs/CHANGELOG.md b/changelogs/CHANGELOG.md deleted file mode 100644 index 73cbb20e..00000000 --- a/changelogs/CHANGELOG.md +++ /dev/null @@ -1,13 +0,0 @@ -## [4.10.6](https://github.com/parse-community/parse-server/compare/4.10.5...4.10.6) (2022-02-12) - - -### Bug Fixes - -* update graphql dependencies to work with Parse Dashboard ([#7658](https://github.com/parse-community/parse-server/issues/7658)) ([350ecde](https://github.com/parse-community/parse-server/commit/350ecdee590f1b9d721895b2c79306c01622c3fc)) - -## [4.10.5](https://github.com/parse-community/parse-server/compare/4.10.4...4.10.5) (2022-02-12) - - -### Bug Fixes - -* security upgrade follow-redirects from 1.13.0 to 1.14.8 ([#7803](https://github.com/parse-community/parse-server/issues/7803)) ([611332e](https://github.com/parse-community/parse-server/commit/611332ea33831258efd3dd2f2c621c2e35fc95d3)) diff --git a/release.config.js b/release.config.js index cbdf5970..5a67daf2 100644 --- a/release.config.js +++ b/release.config.js @@ -28,7 +28,7 @@ async function config() { console.log(`Running on branch: ${branch}`); // Set changelog file - const changelogFile = `./changelogs/CHANGELOG.md`; + const changelogFile = `./CHANGELOG.md`; console.log(`Changelog file output to: ${changelogFile}`); // Load template file contents