You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by jo...@apache.org on 2019/03/18 12:44:32 UTC

svn commit: r1855758 - /nifi/site/trunk/release-guide.html

Author: joewitt
Date: Mon Mar 18 12:44:32 2019
New Revision: 1855758

URL: http://svn.apache.org/viewvc?rev=1855758&view=rev
Log:
NIFI-6116 updating release guide

Modified:
    nifi/site/trunk/release-guide.html

Modified: nifi/site/trunk/release-guide.html
URL: http://svn.apache.org/viewvc/nifi/site/trunk/release-guide.html?rev=1855758&r1=1855757&r2=1855758&view=diff
==============================================================================
--- nifi/site/trunk/release-guide.html (original)
+++ nifi/site/trunk/release-guide.html Mon Mar 18 12:44:32 2019
@@ -307,6 +307,11 @@ they go along adding source and modifyin
 problems that must be addressed before proceeding.
 <pre><code>$ mvn install -Pcontrib-check,include-grpc
 </code></pre></li>
+<li>Verify and update if necessary to ensure Docker version information points to the next release version.  For instance, if version being released is 1.9.0, these values should be 1.9.0. This currently consists of two files:
+<ul>
+<li><a href="https://github.com/apache/nifi/blob/master/nifi-docker/dockerhub/Dockerfile#L24">nifi-docker/dockerhub/Dockerfile, Line 25</a>, and</li>
+<li><a href="https://github.com/apache/nifi/blob/master/nifi-docker/dockerhub/DockerImage.txt#L16">nifi-docker/dockerhub/DockerImage.txt, Line 16</a>.</li>
+</ul></li>
 </ol>
 <h3>Step 3. Perform the release (RM)</h3>
 <ol>
@@ -541,9 +546,8 @@ git push asf master
 </code></pre></li>
 <li><p>Update the NiFi website to point to the new download(s).  Remove older release artifacts from download page (leave<br>
 the current release and the previous one).  For the release just previous to this new one change the links to point to<br>
-the archive location.  See current page as an example of the needed URL changes.  In addition to updating the download<br>
-page as described delete artifacts other than the current/new release from the dist/nifi SVN storage.  They are already<br>
-in the archive location so no need to do anything else.</p></li>
+the archive location.  See current page as an example of the needed URL changes.</p></li>
+<li><p>Remove artifacts other than the current/new release from the dist/SVN storage https://dist.apache.org/repos/dist/release/nifi/ Confirm the artifacts you deleted are present in apache archive where ASF keeps all releases forever http://archive.apache.org/dist/nifi/</p></li>
 <li><p>Update the <a href="https://cwiki.apache.org/confluence/display/NIFI/Migration+Guidance">Migration Guide</a> on the Wiki.</p></li>
 <li><p>If the release is on the latest development line, update the NiFi website documentation pages to match the release. <em>(This section will be updated when a complete plan for maintaining different versions of the guides, API docs, etc. is available.)</em></p>
 <ol>
@@ -556,7 +560,7 @@ in the archive location so no need to do
 <li>Checkout the existing Subversion repository containing the docs by running <code>svn co https://svn.apache.org/repos/asf/nifi/site/trunk/docs svn-docs</code></li>
 <li>Replace the <code>nifi</code> directory (site JS assets, images, etc.) by running <code>rsync -av ${NIFI_VERSION}-docs/nifi/ svn-docs/nifi/</code></li>
 <li>Replace the <code>nifi-docs/...</code> directories (guides, API docs, JS/CSS assets, images, etc. but <em>excluding</em> <code>component</code> docs) by running <code>rsync -av --delete --exclude='components' ${NIFI_VERSION}-docs/nifi-docs/ svn-docs/nifi-docs/</code> (the trailing slashes are important)</li>
-<li>Merge the component documentation by running <code>rsync -av ${NIFI_VERSION}/nifi-docs/components/ svn-docs/nifi-docs/components/</code></li>
+<li>Merge the component documentation by running <code>rsync -av ${NIFI_VERSION}-docs/nifi-docs/components/ svn-docs/nifi-docs/components/</code></li>
 <li>(Optional) Check the status by running <code>svn st svn-docs</code></li>
 <li>Add the new files to version control by running <code>cd svn-docs &amp;&amp; svn add . --force</code></li>
 <li>Commit the changes by running <code>svn ci -m &quot;Added ${NIFI_VERSION} docs to NiFi site.&quot;</code></li>