File tree Expand file tree Collapse file tree 1 file changed +16
-11
lines changed Expand file tree Collapse file tree 1 file changed +16
-11
lines changed Original file line number Diff line number Diff line change @@ -8,27 +8,32 @@ cd "$(dirname $0)"
8
8
git fetch --tags
[email protected] :microsoft/playwright.git
> /dev/null
2> /dev/null
9
9
LAST_RELEASE=$( git describe --tags $( git rev-list --tags --max-count=1) )
10
10
11
- echo " ## Browser Versions"
12
- echo
13
- node ./print_versions.js
14
- echo
15
11
echo " ## Highlights"
16
12
echo
17
13
echo " TODO: \` git diff ${LAST_RELEASE} :docs/api.md docs/api.md\` "
18
14
echo
19
- echo " ## Breaking API Changes "
15
+ echo " ## Browser Versions "
20
16
echo
21
- echo " TODO: \` git diff ${LAST_RELEASE} :docs/api.md docs/api.md \` "
17
+ node ./print_versions.js
22
18
echo
23
19
echo " ## New APIs"
24
20
echo
25
21
echo " TODO: \` git diff ${LAST_RELEASE} :docs/api.md docs/api.md\` "
26
22
echo
27
- echo " ## Bug Fixes"
28
- echo
29
- ./list_closed_issues.sh " ${LAST_RELEASE} "
23
+ CLOSED_ISSUES=$( ./list_closed_issues.sh " ${LAST_RELEASE} " )
24
+ ISSUES_COUNT=$( echo " ${CLOSED_ISSUES} " | wc -l | xargs)
25
+ echo " <details>"
26
+ echo " <summary><b>Issues Closed (${ISSUES_COUNT} )</b></summary>"
30
27
echo
31
- echo " ## Raw Notes "
28
+ echo " ${CLOSED_ISSUES} "
32
29
echo
33
- git log --pretty= " %h - %s " " ${LAST_RELEASE} " ..HEAD
30
+ echo " </details> "
34
31
32
+ COMMITS=$( git log --pretty=" %h - %s" " ${LAST_RELEASE} " ..HEAD)
33
+ COMMITS_COUNT=$( echo " ${COMMITS} " | wc -l | xargs)
34
+ echo " <details>"
35
+ echo " <summary><b>Commits (${COMMITS_COUNT} )</b></summary>"
36
+ echo
37
+ echo " ${COMMITS} "
38
+ echo
39
+ echo " </details>"
You can’t perform that action at this time.
0 commit comments