From 3dd06815b94674407f431b9bf9fa63fb2075bc45 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Wed, 24 Feb 2021 13:26:44 -0800 Subject: [PATCH] chore: udpate scripts that generates release draft (#5556) --- utils/draft_release_notes.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/draft_release_notes.sh b/utils/draft_release_notes.sh index e9bfa1e518..281b1b641c 100755 --- a/utils/draft_release_notes.sh +++ b/utils/draft_release_notes.sh @@ -10,7 +10,7 @@ LAST_RELEASE=$(git describe --tags $(git rev-list --tags --max-count=1)) echo "## Highlights" echo -echo "TODO: \`git diff ${LAST_RELEASE}:docs/api.md docs/api.md\`" +echo "TODO: asked teammates for the highlights" echo echo "## Browser Versions" echo @@ -18,7 +18,7 @@ node ./print_versions.js echo echo "## New APIs" echo -echo "TODO: \`git diff ${LAST_RELEASE}:docs/api.md docs/api.md\`" +echo "TODO: \`git diff -w ${LAST_RELEASE}..HEAD src/client\`" echo CLOSED_ISSUES=$(./list_closed_issues.sh "${LAST_RELEASE}") ISSUES_COUNT=$(echo "${CLOSED_ISSUES}" | wc -l | xargs)