DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| Code Block | ||||
|---|---|---|---|---|
| ||||
#!/bin/bash
# Load configuration
source ./configuration.sh
# Get Jira Version and Issues
PROJECT_LABEL="Apache NiFi"
VERSIONS_JSON=$(curl -s https://issues.apache.org/jira/rest/api/2/project/NIFI/versions)
JIRA_VERSION=$(echo ${VERSIONS_JSON}|jq -r ".[] | select(.name==\"${RELEASE_VERSION}\") | .id" )
PROJECT_ID=$(echo ${VERSIONS_JSON}|jq -r ".[] | select(.name==\"${RELEASE_VERSION}\") | .projectId" )
JIRA_RELEASE_NOTES="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=${PROJECT_ID}&version=${JIRA_VERSION}"
echo """
[ANNOUNCE] ${PROJECT_LABEL} ${RELEASE_VERSION} Released
The Apache NiFi Team is pleased to announce the release of ${PROJECT_LABEL} ${RELEASE_VERSION}.
Apache NiFi is an easy to use, powerful, and reliable system to process and distribute data.
https://nifi.apache.org
The release artifacts can be loaded from the project website.
https://nifi.apache.org/download/
Maven artifacts have been released and mirrored according to Apache distribution processes.'
Issues resolved in ${PROJECT_LABEL} ${RELEASE_VERSION} as listed in Jira Release Notes.
${JIRA_RELEASE_NOTES}
Highlights of the release are available on the project wiki.
${JIRA_RELEASE_NOTES}
https://cwiki.apache.org/confluence/display/NIFI/Release+Notes
Thank you,
The Apache NiFi Team
""" |
...