blob: 4eb1fc1564da63d0d4eb6bb8387d529fb8e7a1a5 [file] [log] [blame]
Willy Tarreau62b71ee2016-05-10 12:04:13 +02001#!/bin/bash
2# creates a new haproxy release at the current commit
3# Copyright (c) 2006-2016 Willy Tarreau <w@1wt.eu>
4#
5# In short :
6# - requires git
7# - works only from master branch
8# - finds old and new version by itself
9# - builds changelog
10# - updates dates and versions in files
11# - commits + tags + signs
12# - no upload!
13
14USAGE="Usage: ${0##*/} [-i] [-y] [-t] [-b branch] [-d date] [-o oldver] [-n newver]"
15INTERACTIVE=
16TAGONLY=
17SAYYES=
18BRANCH=
19DATE=
20YEAR=
21OLD=
22NEW=
23
24die() {
25 [ "$#" -eq 0 ] || echo "$*" >&2
26 exit 1
27}
28
29err() {
30 echo "$*" >&2
31}
32
33quit() {
34 [ "$#" -eq 0 ] || echo "$*"
35 exit 0
36}
37
38do_commit() {
39 (
40 echo "[RELEASE] Released version $NEW"
41 echo
42 echo "Released version $NEW with the following main changes :"
43 sed -ne '/^[ ]*-/,/^$/{p;b a};d;:a;/^$/q' CHANGELOG
44 ) | git commit -a -F -
45}
46
47do_tag() {
48 git tag -u "$GIT_GPG_KEY" -s -m "HAProxy $NEW" v$NEW && echo "Tagged as v$NEW"
49}
50
Willy Tarreau4a5be932017-06-16 12:43:53 +020051if [ -z "$GIT_COMMITTER_NAME" ]; then
52 GIT_COMMITTER_NAME=$(git config --get user.name)
53 [ -n "$GIT_COMMITTER_NAME" ] || die "GIT_COMMITTER_NAME not set"
54fi
55
56if [ -z "$GIT_COMMITTER_EMAIL" ]; then
57 GIT_COMMITTER_EMAIL=$(git config --get user.email)
58 [ -n "$GIT_COMMITTER_EMAIL" ] || die "GIT_COMMITTER_EMAIL not set"
59fi
60
Willy Tarreau62b71ee2016-05-10 12:04:13 +020061while [ -n "$1" -a -z "${1##-*}" ]; do
62 case "$1" in
63 -y) SAYYES=1 ; shift ;;
64 -i) INTERACTIVE=1 ; shift ;;
65 -t) TAGONLY=1 ; shift ;;
66 -d) DATE="$2" ; shift 2 ;;
67 -b) BRANCH="$2" ; shift 2 ;;
68 -o) OLD="$2" ; shift 2 ;;
69 -n) NEW="$2" ; shift 2 ;;
70 -h|--help) quit "$USAGE" ;;
71 *) die "$USAGE" ;;
72 esac
73done
74
75if [ $# -gt 0 ]; then
76 die "$USAGE"
77fi
78
79if [ -z "$GIT_GPG_KEY" ]; then
80 die "GIT_GPG_KEY is not set, it must contain your GPG key ID."
81fi
82
83if ! git rev-parse --verify -q HEAD >/dev/null; then
84 die "Failed to check git HEAD."
85fi
86
87# we want to go to the git top dir
88cd $(git rev-parse --show-toplevel)
89
90if [ "$(git rev-parse --verify -q HEAD)" != "$(git rev-parse --verify -q master)" ]; then
91 die "git HEAD doesn't match master branch."
92fi
93
94if [ "$(git diff HEAD|wc -c)" != 0 ]; then
95 err "You appear to have uncommitted local changes, please commit them first :"
96 git status -s -uno >&2
97 die
98fi
99
100if [ -z "$OLD" ]; then
101 OLD="$(git describe --tags HEAD --abbrev=0)"
102 OLD="${OLD#v}"
103fi
104
105if ! git rev-parse --verify -q "v$OLD" >/dev/null; then
106 die "git tag v$OLD doesn't exist."
107fi
108
109if [ -z "$NEW" ]; then
110 radix="$OLD"
111 while [ -n "$radix" -a -z "${radix%%*[0-9]}" ]; do
112 radix="${radix%[0-9]}"
113 done
114
115 number=${OLD#$radix}
116 if [ -z "$number" -o "$radix" = "$OLD" ]; then
117 die "Fatal: cannot determine new version, please specify it."
118 fi
119 NEW=${radix}$((number+1))
120fi
121
122if git show-ref --tags "v$NEW" >/dev/null; then
123 die "git tag v$NEW already exists, please remove it first."
124fi
125
126# determine the product branch from the new release
127if [ -z "$BRANCH" ]; then
128 subvers=${NEW#[0-9]*.[0-9]*[-.]*[0-9].}
129 [ "${subvers}" = "${NEW}" ] && subvers=""
130 major=${NEW%.$subvers}
131 branch_ext=${major#*[0-9].*[0-9]}
132 BRANCH=${major%${branch_ext}}
133fi
134
135
136# determine the release date
137if [ -z "$DATE" ]; then
138 # Uncomment the line below to use the date of the last commit,
139 # otherwise fall back to current date
140 DATE="$(git log --pretty=fuller -1 v$NEW 2>/dev/null | sed -ne '/^CommitDate:/{s/\(^[^ ]*:\)\|\( [-+].*\)//gp;q}')"
141 DATE="$(date +%Y/%m/%d -d "$DATE")"
142else
143 if [ "$DATE" != "$(date +%Y/%m/%d -d "$DATE")" ]; then
144 die "Date format must exclusively be YYYY/MM/DD ; date was '$DATE'."
145 fi
146fi
147YEAR="${DATE%%/*}"
148
149if [ -n "$TAGONLY" ]; then
150 do_tag || die "Failed to tag changes"
151 echo "Done. You may have to push changes."
152 exit 0
153fi
154
155echo "About to release version $NEW from $OLD at $DATE (branch $BRANCH)."
156if [ -z "$SAYYES" ]; then
157 echo "Press ENTER to continue or Ctrl-C to abort now!"
158 read
159fi
160
161echo "Updating CHANGELOG ..."
162( echo "ChangeLog :"
163 echo "==========="
164 echo
165 echo "$DATE : $NEW"
166 #git shortlog v$OLD.. | sed -ne 's/^ / - /p'
167 git log --oneline --reverse --format=" - %s" v$OLD..
168 echo
Willy Tarreau2c44cd82017-06-16 12:35:54 +0200169 tail -n +4 CHANGELOG
Willy Tarreau62b71ee2016-05-10 12:04:13 +0200170) >.chglog.tmp && mv .chglog.tmp CHANGELOG
171
172echo "Updating VERSION ..."
173rm -f VERSION VERDATE
174echo "$NEW" > VERSION
175
176echo "Updating VERDATE ..."
177echo '$Format:%ci$' > VERDATE
178echo "$DATE" >> VERDATE
179
Willy Tarreau7f332732018-12-16 22:27:15 +0100180# updating branch and date in all modified doc files except the outdated architecture.txt
181for file in doc/intro.txt doc/configuration.txt doc/management.txt $(git diff --name-only v${OLD}.. -- doc); do
Willy Tarreau62b71ee2016-05-10 12:04:13 +0200182 if [ ! -e "$file" ]; then continue; fi
183 if [ "$file" = doc/architecture.txt ]; then continue; fi
184 echo "Updating $file ..."
185 sed -e "1,10s:\(\sversion\s\).*:\1$BRANCH:" \
186 -e "1,10s:\(\s\)\(20[0-9]\{2\}/[0-9]\{1,2\}/[0-9]\{1,2\}\):\1$DATE:" \
187 -i "$file"
188done
189
190echo "Updating haproxy.c ..."
191sed -e "s:Copyright 2000-[0-9]*\s*Willy Tarreau.*>:Copyright 2000-$YEAR Willy Tarreau <willy@haproxy.org>:" \
192 -i src/haproxy.c
193
Willy Tarreau990397e2017-01-05 19:58:24 +0100194echo "Updating version.h ..."
195sed -e "s:^\(#define\s*PRODUCT_BRANCH\s*\)\"[^\"]*\":\1\"$BRANCH\":" \
196 -i include/common/version.h
197
Willy Tarreau62b71ee2016-05-10 12:04:13 +0200198if [ -n "$INTERACTIVE" ]; then
Willy Tarreaua8ee4b12019-06-15 18:56:48 +0200199 vi CHANGELOG VERSION VERDATE \
Willy Tarreau7f332732018-12-16 22:27:15 +0100200 src/haproxy.c doc/configuration.txt \
Willy Tarreau62b71ee2016-05-10 12:04:13 +0200201 $(git diff --name-only v${OLD}.. -- doc)
202fi
203
204if [ "$(git diff -- CHANGELOG | wc -c)" = 0 ]; then
205 die "CHANGELOG must be updated."
206fi
207
208if [ -z "$SAYYES" ]; then
209 echo "Press ENTER to review the changes..."
210 read
211fi
212
213git diff
214
215echo
216echo "About to commit and tag version $NEW with the following message:"
217echo
218echo "[RELEASE] Released version $NEW with the following main changes :"
219sed -ne '/^[ ]*-/,/^$/{p;b a};d;:a;/^$/q' CHANGELOG
220
221echo
222echo "LAST chance to cancel! Press ENTER to proceed now or Ctrl-C to abort."
223read
224
225do_commit || die "Failed to commit changes"
226do_tag || die "Failed to tag changes"
227
228echo "Do not forget to push updates, publish and announce this version :"
229echo
230echo "git push origin master v$NEW"
231echo "${0%/*}/publish-release"
232echo "${0%/*}/announce-release"