#!/bin/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. # # invokes the changelog generator from # https://github.com/github-changelog-generator/github-changelog-generator # # With the config located in # arrow-rs/object_store/.github_changelog_generator # # Usage: # CHANGELOG_GITHUB_TOKEN= ./update_change_log.sh set -e SINCE_TAG="object_store_0.11.0" FUTURE_RELEASE="object_store_0.11.1" SOURCE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" SOURCE_TOP_DIR="$(cd "${SOURCE_DIR}/../../" && pwd)" OUTPUT_PATH="${SOURCE_TOP_DIR}/CHANGELOG.md" # remove license header so github-changelog-generator has a clean base to append sed -i.bak '1,18d' "${OUTPUT_PATH}" # use exclude-tags-regex to filter out tags used for arrow # crates and only look at tags that begin with `object_store_` pushd "${SOURCE_TOP_DIR}" docker run -it --rm -e CHANGELOG_GITHUB_TOKEN="$CHANGELOG_GITHUB_TOKEN" -v "$(pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator \ --user apache \ --project arrow-rs \ --cache-file=.githubchangeloggenerator.cache \ --cache-log=.githubchangeloggenerator.cache.log \ --http-cache \ --max-issues=600 \ --include-labels="object-store" \ --exclude-tags-regex "(^\d+\.\d+\.\d+$)|(rc)" \ --since-tag ${SINCE_TAG} \ --future-release ${FUTURE_RELEASE} sed -i.bak "s/\\\n/\n\n/" "${OUTPUT_PATH}" # Put license header back on echo ' ' | cat - "${OUTPUT_PATH}" > "${OUTPUT_PATH}".tmp mv "${OUTPUT_PATH}".tmp "${OUTPUT_PATH}"