Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Add hyperlink to "Find all contributors" in the blog section

...

  • For minor and major releases, consider writing a blog. Since the Apache blogs platform is now sunset, we've added a blog section to the Kafka website. Unfortunately this requires writing it in HTML, see the blog.html file in kafka-site.
  • It's nice to thank as many people as we can identify.  This script assumes that the previous release was 3.2.x and the current release is 3.3.0

    No Format# Configure the branch name for the current release and the previous release CURRENT_RELEASE_BRANCH=apache-kafka/3.3 PREVIOUS_RELEASE_BRANCH=apache-kafka/3.2 # Get the latest common commit between them MERGE_BASE=$(git merge-base $CURRENT_RELEASE_BRANCH $PREVIOUS_RELEASE_BRANCH) # List of all contributors git shortlog -sn --group=author --group=trailer:co-authored-by --no-merges "$MERGE_BASE..$CURRENT_RELEASE_BRANCH" | cut -f2 | sort --ignore-case | uniq > /tmp/kafka_contributors.txt # Copy the list cat /tmp/kafka_contributors.txt | sed -e ':a' -e '$!N;s/\n/, /;ta' -e 's/,$//' -e 's/%$//' | xclip -selection clipboard

    Please use "Find all contributors" script to generate the list of contributors. 

  • Consider incorporating any suggestions from the dev thread until release is announced

...