Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Release testing happens after the release branch is cut and CI is stable enough. The goal is to test features manually that ended up in this build. Additionally, the documentation for these feature should be available. Any blocking issues that come up during the release testing need to be addressed before going forward with the release.

Release

...

Metrics 


  • Count contributors:  
  • git checkout release-1.17
  • git shortlog , the following git commands can be used to count contributors for given commit range of current branch:
Code Block
languagebash
> git shortlog  --summary startCommitId..endCommitId | awk -F ' ' '{$1=""; print $0 }'|sort -n|awk 'BEGIN{ORS=", "}{print $0}'
  • Count resolved issues, the JIRA filter can be used to count the resolved issues in this version: project = flink AND status in (closed, resolved, Fixed, Completed, Done) AND fixVersion in (1.17.0) 

Maintenance of CI builds and infrastructure

...