forked from OpenLineage/OpenLineage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
new-version.sh
executable file
·203 lines (177 loc) · 8.07 KB
/
new-version.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
#!/bin/bash
#
# Copyright 2018-2022 contributors to the OpenLineage project
# SPDX-License-Identifier: Apache-2.0
#
# NOTE: This script was inspired by https://github.com/MarquezProject/marquez/blob/main/new-version.sh
#
# Requirements:
# * You're on the 'main' branch
# * You've installed 'bump2version'
#
# Usage: $ ./new-version.sh --release-version RELEASE_VERSION --next-version NEXT_VERSION
set -e
title() {
echo -e "\033[1m${1}\033[0m"
}
usage() {
echo "Usage: ./$(basename -- "${0}") --release-version RELEASE_VERSION --next-version NEXT_VERSION"
echo "A script used to release OpenLineage"
echo
title "EXAMPLES:"
echo " # Bump version ('-SNAPSHOT' will automatically be appended to '0.0.2')"
echo " $ ./new-version.sh -r 0.0.1 -n 0.0.2"
echo
echo " # Bump version (with '-SNAPSHOT' already appended to '0.0.2')"
echo " $ ./new-version.sh -r 0.0.1 -n 0.0.2-SNAPSHOT"
echo
echo " # Bump release candidate"
echo " $ ./new-version.sh -r 0.0.1-rc.1 -n 0.0.2-rc.2"
echo
echo " # Bump release candidate without push"
echo " $ ./new-version.sh -r 0.0.1-rc.1 -n 0.0.2-rc.2 -p"
echo
title "ARGUMENTS:"
echo " -r, --release-version string the release version (ex: X.Y.Z, X.Y.Z-rc.*)"
echo " -n, --next-version string the next version (ex: X.Y.Z, X.Y.Z-SNAPSHOT)"
echo
title "FLAGS:"
echo " -p, --no-push local changes are not automatically pushed to the remote repository"
exit 1
}
# Update the python package version only if the current_version is different from the new_version
# We do this check because bumpversion screws up the search/replace if the current_version and
# new_version are the same
function update_py_version_if_needed() {
export $(bump2version manual --new-version $1 --allow-dirty --list --dry-run | grep version | xargs)
if [ "$new_version" != "$current_version" ]; then
bump2version manual --new-version $1 --allow-dirty
fi
}
readonly SEMVER_REGEX="^[0-9]+(\.[0-9]+){2}((-rc\.[0-9]+)?(-SNAPSHOT)?)$" # X.Y.Z
# X.Y.Z-rc.*
# X.Y.Z-rc.*-SNAPSHOT
# X.Y.Z-SNAPSHOT
# Change working directory to project root
project_root=$(git rev-parse --show-toplevel)
cd "${project_root}/"
# Verify bump2version is installed
if [[ ! $(type -P bump2version) ]]; then
echo "bump2version not installed! Please see https://github.com/c4urself/bump2version#installation"
exit 1;
fi
if [[ $# -eq 0 ]] ; then
usage
fi
PUSH="true"
while [ $# -gt 0 ]; do
case $1 in
-r|--release-version)
shift
RELEASE_VERSION="${1}"
;;
-n|--next-version)
shift
NEXT_VERSION="${1}"
;;
-p|--no-push)
PUSH="false"
;;
-h|--help)
usage
;;
*) exit 1
;;
esac
shift
done
branch=$(git symbolic-ref --short HEAD)
if [[ "${branch}" != "main" ]]; then
echo "error: you may only release on 'main'!"
exit 1;
fi
# Ensure no unstaged changes are present in working directory
if [[ -n "$(git status --porcelain --untracked-files=no)" ]] ; then
echo "error: you have unstaged changes in your working directory!"
exit 1;
fi
# Ensure valid versions
VERSIONS=($RELEASE_VERSION $NEXT_VERSION)
for VERSION in "${VERSIONS[@]}"; do
if [[ ! "${VERSION}" =~ ${SEMVER_REGEX} ]]; then
echo "Error: Version '${VERSION}' must match '${SEMVER_REGEX}'"
exit 1
fi
done
# Ensure python module version matches X.Y.Z or X.Y.ZrcN (see: https://www.python.org/dev/peps/pep-0440/),
PYTHON_RELEASE_VERSION=${RELEASE_VERSION}
if [[ "${RELEASE_VERSION}" == *-rc.? ]]; then
RELEASE_CANDIDATE=${RELEASE_VERSION##*-}
PYTHON_RELEASE_VERSION="${RELEASE_VERSION%-*}${RELEASE_CANDIDATE//.}"
fi
# (1) Bump python module versions. Do this before the release in case the current release is not
# the same version as what was expected the last time we released. E.g., if the next expected
# release was a patch version, but a new minor version is being released, we need to update to the
# actual release version prior to committing/tagging
PYTHON_MODULES=(client/python/ integration/common/ integration/airflow/ integration/dbt/ integration/dagster/ integration/sql)
for PYTHON_MODULE in "${PYTHON_MODULES[@]}"; do
(cd "${PYTHON_MODULE}" && update_py_version_if_needed "${PYTHON_RELEASE_VERSION}")
done
# (2) Bump java module versions
perl -i -pe"s/^version=.*/version=${RELEASE_VERSION}/g" ./client/java/gradle.properties
perl -i -pe"s/^version=.*/version=${RELEASE_VERSION}/g" ./integration/sql/iface-java/gradle.properties
perl -i -pe"s/^version=.*/version=${RELEASE_VERSION}/g" ./integration/spark/gradle.properties
perl -i -pe"s/^version=.*/version=${RELEASE_VERSION}/g" ./integration/flink/gradle.properties
perl -i -pe"s/^version=.*/version=${RELEASE_VERSION}/g" ./integration/flink/examples/stateful/gradle.properties
perl -i -pe"s/^version=.*/version=${RELEASE_VERSION}/g" ./proxy/backend/gradle.properties
# (3) Bump version in docs
perl -i -pe"s/<version>.*/<version>${RELEASE_VERSION}<\/version>/g" ./integration/spark/README.md
perl -i -pe"s/openlineage-spark:[[:alnum:]\.-]*/openlineage-spark:${RELEASE_VERSION}/g" ./integration/spark/README.md
perl -i -pe"s/openlineage-spark-.*jar/openlineage-spark-${RELEASE_VERSION}.jar/g" ./integration/spark/README.md
perl -i -pe"s/<version>.*/<version>${RELEASE_VERSION}<\/version>/g" ./integration/flink/README.md
perl -i -pe"s/<version>.*/<version>${RELEASE_VERSION}<\/version>/g" ./client/java/README.md
perl -i -pe"s/openlineage-java:[[:alnum:]\.-]*/openlineage-java:${RELEASE_VERSION}/g" ./client/java/README.md
# (4) Prepare release commit
git commit -sam "Prepare for release ${RELEASE_VERSION}"
# (5) Pull latest tags, then prepare release tag
git fetch --all --tags
git tag -a "${RELEASE_VERSION}" -m "openlineage ${RELEASE_VERSION}"
# (6) Prepare next development version
PYTHON_MODULES=(client/python/ integration/common/ integration/airflow/ integration/dbt/ integration/dagster/ integration/sql/)
for PYTHON_MODULE in "${PYTHON_MODULES[@]}"; do
(cd "${PYTHON_MODULE}" && bump2version manual --new-version "${NEXT_VERSION}" --allow-dirty)
done
# Append '-SNAPSHOT' to 'NEXT_VERSION' if a release candidate, or missing
# (ex: '-SNAPSHOT' will be appended to X.Y.Z or X.Y.Z-rc.N)
if [[ "${NEXT_VERSION}" == *-rc.? ||
! "${NEXT_VERSION}" == *-SNAPSHOT ]]; then
NEXT_VERSION="${NEXT_VERSION}-SNAPSHOT"
fi
perl -i -pe"s/^version=.*/version=${NEXT_VERSION}/g" ./integration/spark/gradle.properties
perl -i -pe"s/^version=.*/version=${NEXT_VERSION}/g" ./integration/sql/iface-java/gradle.properties
perl -i -pe"s/^version=.*/version=${NEXT_VERSION}/g" ./client/java/gradle.properties
perl -i -pe"s/^version=.*/version=${NEXT_VERSION}/g" ./proxy/backend/gradle.properties
perl -i -pe"s/^version=.*/version=${NEXT_VERSION}/g" ./integration/flink/gradle.properties
perl -i -pe"s/^version=.*/version=${NEXT_VERSION}/g" ./integration/flink/examples/stateful/gradle.properties
echo "version ${NEXT_VERSION}" > integration/spark/spark2/src/test/resources/io/openlineage/spark/agent/version.properties
echo "version ${NEXT_VERSION}" > integration/spark/spark3/src/test/resources/io/openlineage/spark/agent/version.properties
echo "version ${NEXT_VERSION}" > integration/flink/src/test/resources/io/openlineage/flink/client/version.properties
# (7) Prepare next development version commit
git commit -sam "Prepare next development version ${NEXT_VERSION}"
# (8) Check for commits in log
COMMITS=false
MESSAGE_1=$(git log -1 --grep="Prepare for release ${RELEASE_VERSION}" --pretty=format:%s)
MESSAGE_2=$(git log -1 --grep="Prepare next development version ${NEXT_VERSION}" --pretty=format:%s)
if [[ $MESSAGE_1 ]] && [[ $MESSAGE_2 ]]; then
COMMITS=true
else
echo "one or both commits failed; exiting..."
exit 0
fi
# (9) Push commits and tag
if [[ $COMMITS = "true" ]] && [[ ! ${PUSH} = "false" ]]; then
git push origin main && git push origin "${RELEASE_VERSION}"
else
echo "...skipping push; to push manually, use 'git push origin main && git push origin "${RELEASE_VERSION}"'"
fi
echo "DONE!"