blob: 41a7ee4a04cf43feaedb38b9445c571008763ec8 [file]
#!/usr/bin/env bash
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
set -e
set -u
SOURCE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
ARROW_DIR="${SOURCE_DIR}/../.."
: ${ARROW_SITE_DIR:="${ARROW_DIR}/../arrow-site"}
if [ "$#" -ne 2 ]; then
echo "Usage: $0 <previous-version> <version>"
exit 1
fi
# Verify archery is available and stop if not
if ! archery --help > /dev/null 2>&1; then
echo "This script requires archery. Please install it and try again."
exit 1
fi
previous_version=$1
version=$2
branch_name=release-note-${version}
release_dir="${ARROW_SITE_DIR}/_release"
announce_file="${release_dir}/${version}.md"
versions_yml="${ARROW_SITE_DIR}/_data/versions.yml"
pushd "${ARROW_SITE_DIR}"
source "${SOURCE_DIR}/git-vars.sh"
git fetch --all --prune --tags --force -j$(nproc)
git checkout ${DEFAULT_BRANCH}
git rebase upstream/${DEFAULT_BRANCH}
git branch -D ${branch_name} || :
git checkout -b ${branch_name}
popd
pushd "${ARROW_DIR}"
previous_major_version="$(echo ${previous_version} | grep -o '^[0-9]*')"
major_version="$(echo ${version} | grep -o '^[0-9]*')"
if [ ${previous_major_version} -eq ${major_version} ]; then
release_type=patch
else
release_type=major
fi
export TZ=UTC
release_date=$(LC_TIME=C date "+%-d %B %Y")
release_date_iso8601=$(LC_TIME=C date "+%Y-%m-%d")
previous_tag_date=$(git log -n 1 --pretty=%aI apache-arrow-${previous_version})
rough_previous_release_date=$(date --date "${previous_tag_date}" +%s)
rough_release_date=$(date +%s)
rough_n_development_months=$((
(${rough_release_date} - ${rough_previous_release_date}) / (60 * 60 * 24 * 30)
))
git_tag=apache-arrow-${version}
git_range=apache-arrow-${previous_version}..${git_tag}
committers_command_line="git shortlog -sn --group=trailer:signed-off-by ${git_range}"
contributors_command_line="git shortlog -sn ${git_range}"
committers=$(${committers_command_line})
contributors=$(${contributors_command_line})
n_commits=$(git log --pretty=oneline ${git_range} | wc -l)
n_contributors=$(${contributors_command_line} | wc -l)
git_tag_hash=$(git log -n 1 --pretty=%H ${git_tag})
popd
pushd "${ARROW_SITE_DIR}"
# Add announce for the current version
cat <<ANNOUNCE > "${announce_file}"
---
layout: default
title: Apache Arrow ${version} Release
date: "${release_date_iso8601}"
permalink: /release/${version}.html
---
<!--
{% comment %}
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to you under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
{% endcomment %}
-->
# Apache Arrow ${version} (${release_date})
This is a ${release_type} release covering more than ${rough_n_development_months} months of development.
## Download
* [**Source Artifacts**][1]
* **Binary Artifacts**
* [For AlmaLinux][2]
* [For Amazon Linux][3]
* [For CentOS][4]
* [For C#][5]
* [For Debian][6]
* [For Python][7]
* [For Ubuntu][8]
* [Git tag][9]
## Contributors
This release includes ${n_commits} commits from ${n_contributors} distinct contributors.
\`\`\`console
$ ${contributors_command_line}
ANNOUNCE
echo "${contributors}" >> "${announce_file}"
cat <<ANNOUNCE >> "${announce_file}"
\`\`\`
## Patch Committers
The following Apache committers merged contributed patches to the repository.
\`\`\`console
$ ${committers_command_line}
ANNOUNCE
echo "${committers}" >> "${announce_file}"
cat <<ANNOUNCE >> "${announce_file}"
\`\`\`
## Changelog
ANNOUNCE
# Remove the "# Apache Arrow ..." line and increment section level
# of "## Bug Fixes"/"## New Features and Improvements" to "### ...".
archery release changelog generate ${version} | \
sed -e '/^# /d' \
-e 's/^#/##/g' >> "${announce_file}"
cat <<ANNOUNCE >> "${announce_file}"
[1]: https://www.apache.org/dyn/closer.lua/arrow/arrow-${version}/
[2]: https://apache.jfrog.io/artifactory/arrow/almalinux/
[3]: https://apache.jfrog.io/artifactory/arrow/amazon-linux/
[4]: https://apache.jfrog.io/artifactory/arrow/centos/
[5]: https://apache.jfrog.io/artifactory/arrow/nuget/
[6]: https://apache.jfrog.io/artifactory/arrow/debian/
[7]: https://apache.jfrog.io/artifactory/arrow/python/${version}/
[8]: https://apache.jfrog.io/artifactory/arrow/ubuntu/
[9]: https://github.com/apache/arrow/releases/tag/apache-arrow-${version}
ANNOUNCE
git add "${announce_file}"
# Update index
pushd "${release_dir}"
index_file=index.md
rm -f ${index_file}
announce_files="$(ls | sort --version-sort --reverse)"
cat <<INDEX > ${index_file}
---
layout: default
title: Releases
permalink: /release/index.html
---
<!--
{% comment %}
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to you under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
{% endcomment %}
-->
# Apache Arrow Releases
Navigate to the release page for downloads and the changelog.
INDEX
i=0
for md_file in ${announce_files}; do
i=$((i + 1))
title=$(grep '^# Apache Arrow' ${md_file} | sed -e 's/^# Apache Arrow //')
echo "* [${title}][${i}]" >> ${index_file}
done
echo >> ${index_file}
i=0
for md_file in ${announce_files}; do
i=$((i + 1))
html_file=$(echo ${md_file} | sed -e 's/md$/html/')
echo "[${i}]: {{ site.baseurl }}/release/${html_file}" >> ${index_file}
done
git add ${index_file}
popd
# Update versions.yml
pinned_version=$(echo ${version} | sed -e 's/\.[^.]*$/.*/')
apache_download_url=https://downloads.apache.org
cat <<YAML > "${versions_yml}"
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to you under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Database of the current version
#
current:
number: '${version}'
pinned_number: '${pinned_version}'
major_number: '${major_version}'
date: ${release_date_iso8601}
git-tag: '${git_tag_hash}'
github-tag-link: 'https://github.com/apache/arrow/releases/tag/${git_tag}'
release-notes: 'https://arrow.apache.org/release/${version}.html'
mirrors: 'https://www.apache.org/dyn/closer.lua/arrow/arrow-${version}/'
tarball-name: 'apache-arrow-${version}.tar.gz'
tarball-url: 'https://www.apache.org/dyn/closer.lua?action=download&filename=arrow/arrow-${version}/apache-arrow-${version}.tar.gz'
asc: '${apache_download_url}/arrow/arrow-${version}/apache-arrow-${version}.tar.gz.asc'
sha256: '${apache_download_url}/arrow/arrow-${version}/apache-arrow-${version}.tar.gz.sha256'
sha512: '${apache_download_url}/arrow/arrow-${version}/apache-arrow-${version}.tar.gz.sha512'
YAML
git add "${versions_yml}"
git commit -m "[Website] Add release note for ${version}"
git push -u origin ${branch_name}
github_url=$(git remote get-url origin | \
sed \
-e 's,^git@github.com:,https://github.com/,' \
-e 's,\.git$,,')
echo "Success!"
echo "Create a pull request:"
echo " ${github_url}/pull/new/${branch_name}"
popd