You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by mi...@apache.org on 2017/04/01 01:51:43 UTC

zeppelin git commit: [DOC] 0.7.1 release note

Repository: zeppelin
Updated Branches:
  refs/heads/gh-pages abbf75c07 -> 12633f472


[DOC] 0.7.1 release note

### What is this PR for?
Add 0.7.1 release note

### What type of PR is it?
Documentation

### Todos
* [x] Confirm release date and update list of people who verified release once vote pass.

### Screenshots (if appropriate)
**Download page**
![screencapture-localhost-4000-download-html-1490930121638](https://cloud.githubusercontent.com/assets/8503346/24534918/d96f0d68-160b-11e7-9f32-5a0ceadf4144.png)
**Release note**
![screencapture-localhost-4000-releases-zeppelin-release-0-7-1-html-1490930133953](https://cloud.githubusercontent.com/assets/8503346/24534917/d96e2010-160b-11e7-9e45-07d93e0a6300.png)

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: Mina Lee <mi...@apache.org>

Closes #2209 from minahlee/doc/release-0.7.1 and squashes the following commits:

ebf20a22 [Mina Lee] Update release note and add people who helped rc verification
3c836008 [Mina Lee] Add 0.7.1 release note


Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo
Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/12633f47
Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/12633f47
Diff: http://git-wip-us.apache.org/repos/asf/zeppelin/diff/12633f47

Branch: refs/heads/gh-pages
Commit: 12633f4725d5372f6295d707ba738c40589a2e58
Parents: abbf75c
Author: Mina Lee <mi...@apache.org>
Authored: Fri Mar 31 17:39:07 2017 +0900
Committer: Mina Lee <mi...@apache.org>
Committed: Sat Apr 1 10:51:33 2017 +0900

----------------------------------------------------------------------
 .htaccess                                  |  2 +-
 _includes/themes/zeppelin/_navigation.html |  2 +-
 doap.rdf                                   |  7 +++
 documentation.md                           |  1 +
 download.md                                | 51 ++++++++++++++-------
 releases/zeppelin-release-0.7.1.md         | 59 +++++++++++++++++++++++++
 supported_interpreters.md                  | 40 +++++++++++++++++
 7 files changed, 145 insertions(+), 17 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/12633f47/.htaccess
----------------------------------------------------------------------
diff --git a/.htaccess b/.htaccess
index 0796fb6..8513574 100644
--- a/.htaccess
+++ b/.htaccess
@@ -7,7 +7,7 @@ RewriteRule ^/?docs/0.6.0-(?!SNAPSHOT).*/(.*) /docs/0.6.0/$2  [R=301,L,NE]
 RewriteRule ^/?docs/(0.5.[056])(?!-incubating).*/(.*) /docs/$1-incubating/$3  [R=301,L,NE]
 
 # rewrite docs/latest to latest stable release
-RewriteRule ^/?docs/latest/(.*) /docs/0.7.0/$1  [PT]
+RewriteRule ^/?docs/latest/(.*) /docs/0.7.1/$1  [PT]
 
 # rewrite docs/snapshot to latest snapshot version
 RewriteRule ^/?docs/snapshot/(.*) /docs/0.8.0-SNAPSHOT/$1  [PT]

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/12633f47/_includes/themes/zeppelin/_navigation.html
----------------------------------------------------------------------
diff --git a/_includes/themes/zeppelin/_navigation.html b/_includes/themes/zeppelin/_navigation.html
index 06afe80..0459905 100644
--- a/_includes/themes/zeppelin/_navigation.html
+++ b/_includes/themes/zeppelin/_navigation.html
@@ -32,10 +32,10 @@
               <a href="#" data-toggle="dropdown" class="dropdown-toggle">Docs<b class="caret"></b></a>
               <ul class="dropdown-menu">
                 <li><span><b>Release</b><span></li>
+                <li><a href="/docs/0.7.1">0.7.1</a></li>
                 <li><a href="/docs/0.7.0">0.7.0</a></li>
                 <li><a href="/docs/0.6.2">0.6.2</a></li>
                 <li><a href="/docs/0.6.1">0.6.1</a></li>
-                <li><a href="/docs/0.6.0">0.6.0</a></li>
                 <li><a href="documentation.html">Older Versions</a></li>
                 <li role="separator" class="divider"></li>
                 <li><span><b>Snapshot</b>&nbsp;(development)<span></li>

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/12633f47/doap.rdf
----------------------------------------------------------------------
diff --git a/doap.rdf b/doap.rdf
index 097ceed..8eb2caa 100644
--- a/doap.rdf
+++ b/doap.rdf
@@ -38,6 +38,13 @@
     <category rdf:resource="http://projects.apache.org/category/big-data" />
     <release>
       <Version>
+        <name>0.7.1</name>
+        <created>2017-03-31</created>
+        <revision>0.7.1</revision>
+      </Version>
+    </release>
+    <release>
+      <Version>
         <name>0.7.0</name>
         <created>2017-02-05</created>
         <revision>0.7.0</revision>

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/12633f47/documentation.md
----------------------------------------------------------------------
diff --git a/documentation.md b/documentation.md
index 7aeb9f1..d548d78 100644
--- a/documentation.md
+++ b/documentation.md
@@ -21,6 +21,7 @@ limitations under the License.
 
 # Apache Zeppelin Documentation 
 
+  * [Zeppelin 0.6.0](docs/0.6.0)
   * [Zeppelin 0.5.6-incubating](docs/0.5.6-incubating)
   * [Zeppelin 0.5.5-incubating](docs/0.5.5-incubating)
   * [Zeppelin 0.5.0-incubating](docs/0.5.0-incubating)

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/12633f47/download.md
----------------------------------------------------------------------
diff --git a/download.md b/download.md
index d0a51eb..5eb143f 100644
--- a/download.md
+++ b/download.md
@@ -21,27 +21,27 @@ limitations under the License.
 
 # Download Apache Zeppelin
 
-The latest release of Apache Zeppelin is **0.7.0**.
+The latest release of Apache Zeppelin is **0.7.1**.
 
-  - 0.7.0 released on Feb 5, 2017 ([release notes](./releases/zeppelin-release-0.7.0.html)) ([git tag](https://git-wip-us.apache.org/repos/asf?p=zeppelin.git;h=refs/tags/v0.7.0))
+  - 0.7.1 released on Mar 31, 2017 ([release notes](./releases/zeppelin-release-0.7.1.html)) ([git tag](https://git-wip-us.apache.org/repos/asf?p=zeppelin.git;h=refs/tags/v0.7.1))
 
     * Binary package with all interpreters:
-    <p><div class="btn btn-md btn-primary" onclick="ga('send', 'event', 'download', 'zeppelin-bin-all', '0.7.0'); window.location.href='http://www.apache.org/dyn/closer.cgi/zeppelin/zeppelin-0.7.0/zeppelin-0.7.0-bin-all.tgz'">zeppelin-0.7.0-bin-all.tgz</div> (710 MB,
-    [pgp](https://www.apache.org/dist/zeppelin/zeppelin-0.7.0/zeppelin-0.7.0-bin-all.tgz.asc),
-    [md5](https://www.apache.org/dist/zeppelin/zeppelin-0.7.0/zeppelin-0.7.0-bin-all.tgz.md5),
-    [sha](https://www.apache.org/dist/zeppelin/zeppelin-0.7.0/zeppelin-0.7.0-bin-all.tgz.sha512))</p>
+    <p><div class="btn btn-md btn-primary" onclick="ga('send', 'event', 'download', 'zeppelin-bin-all', '0.7.1'); window.location.href='http://www.apache.org/dyn/closer.cgi/zeppelin/zeppelin-0.7.1/zeppelin-0.7.1-bin-all.tgz'">zeppelin-0.7.1-bin-all.tgz</div> (712 MB,
+    [pgp](https://www.apache.org/dist/zeppelin/zeppelin-0.7.1/zeppelin-0.7.1-bin-all.tgz.asc),
+    [md5](https://www.apache.org/dist/zeppelin/zeppelin-0.7.1/zeppelin-0.7.1-bin-all.tgz.md5),
+    [sha](https://www.apache.org/dist/zeppelin/zeppelin-0.7.1/zeppelin-0.7.1-bin-all.tgz.sha512))</p>
 
-    * Binary package with Spark interpreter and interpreter net-install script ([interpreter installation guide](../../docs/0.7.0/manual/interpreterinstallation.html)):
-    <p><div class="btn btn-md btn-primary" onclick="ga('send', 'event', 'download', 'zeppelin-bin-netinst', '0.7.0'); window.location.href='http://www.apache.org/dyn/closer.cgi/zeppelin/zeppelin-0.7.0/zeppelin-0.7.0-bin-netinst.tgz'">zeppelin-0.7.0-bin-netinst.tgz</div> (272 MB,
-    [pgp](https://www.apache.org/dist/zeppelin/zeppelin-0.7.0/zeppelin-0.7.0-bin-netinst.tgz.asc),
-    [md5](https://www.apache.org/dist/zeppelin/zeppelin-0.7.0/zeppelin-0.7.0-bin-netinst.tgz.md5),
-    [sha](https://www.apache.org/dist/zeppelin/zeppelin-0.7.0/zeppelin-0.7.0-bin-netinst.tgz.sha512))</p>
+    * Binary package with Spark interpreter and interpreter net-install script ([interpreter installation guide](../../docs/0.7.1/manual/interpreterinstallation.html)):
+    <p><div class="btn btn-md btn-primary" onclick="ga('send', 'event', 'download', 'zeppelin-bin-netinst', '0.7.1'); window.location.href='http://www.apache.org/dyn/closer.cgi/zeppelin/zeppelin-0.7.1/zeppelin-0.7.1-bin-netinst.tgz'">zeppelin-0.7.1-bin-netinst.tgz</div> (273 MB,
+    [pgp](https://www.apache.org/dist/zeppelin/zeppelin-0.7.1/zeppelin-0.7.1-bin-netinst.tgz.asc),
+    [md5](https://www.apache.org/dist/zeppelin/zeppelin-0.7.1/zeppelin-0.7.1-bin-netinst.tgz.md5),
+    [sha](https://www.apache.org/dist/zeppelin/zeppelin-0.7.1/zeppelin-0.7.1-bin-netinst.tgz.sha512))</p>
 
     * Source:
-    <a style="cursor:pointer" onclick="ga('send', 'event', 'download', 'zeppelin-src', '0.7.0'); window.location.href='http://www.apache.org/dyn/closer.cgi/zeppelin/zeppelin-0.7.0/zeppelin-0.7.0.tgz'">zeppelin-0.7.0.tgz</a> (1.9 MB,
-    [pgp](https://www.apache.org/dist/zeppelin/zeppelin-0.7.0/zeppelin-0.7.0.tgz.asc),
-    [md5](https://www.apache.org/dist/zeppelin/zeppelin-0.7.0/zeppelin-0.7.0.tgz.md5),
-    [sha](https://www.apache.org/dist/zeppelin/zeppelin-0.7.0/zeppelin-0.7.0.tgz.sha512))
+    <a style="cursor:pointer" onclick="ga('send', 'event', 'download', 'zeppelin-src', '0.7.1'); window.location.href='http://www.apache.org/dyn/closer.cgi/zeppelin/zeppelin-0.7.1/zeppelin-0.7.1.tgz'">zeppelin-0.7.1.tgz</a> (1.9 MB,
+    [pgp](https://www.apache.org/dist/zeppelin/zeppelin-0.7.1/zeppelin-0.7.1.tgz.asc),
+    [md5](https://www.apache.org/dist/zeppelin/zeppelin-0.7.1/zeppelin-0.7.1.tgz.md5),
+    [sha](https://www.apache.org/dist/zeppelin/zeppelin-0.7.1/zeppelin-0.7.1.tgz.sha512))
 
 
 ## Verify the integrity of the files
@@ -58,6 +58,27 @@ For developers, to get latest *0.8.0-SNAPSHOT* check [README](https://github.com
 
 ## Old releases
 
+  - 0.7.0 released on Feb 5, 2017 ([release notes](./releases/zeppelin-release-0.7.0.html)) ([git tag](https://git-wip-us.apache.org/repos/asf?p=zeppelin.git;h=refs/tags/v0.7.0))
+
+    * Binary package with all interpreters:
+    <a style="cursor:pointer" onclick="ga('send', 'event', 'download', 'zeppelin-bin-all', '0.7.0'); window.location.href='http://archive.apache.org/dist/zeppelin/zeppelin-0.7.0/zeppelin-0.7.0-bin-all.tgz'">zeppelin-0.7.0-bin-all.tgz</a> (710 MB,
+    [pgp](https://archive.apache.org/dist/zeppelin/zeppelin-0.7.0/zeppelin-0.7.0-bin-all.tgz.asc),
+    [md5](https://archive.apache.org/dist/zeppelin/zeppelin-0.7.0/zeppelin-0.7.0-bin-all.tgz.md5),
+    [sha](https://archive.apache.org/dist/zeppelin/zeppelin-0.7.0/zeppelin-0.7.0-bin-all.tgz.sha512))
+
+    * Binary package with Spark interpreter and interpreter net-install script ([interpreter installation guide](../../docs/0.7.0/manual/interpreterinstallation.html)):
+    <a style="cursor:pointer" onclick="ga('send', 'event', 'download', 'zeppelin-bin-netinst', '0.7.0'); window.location.href='http://www.apache.org/dyn/closer.cgi/zeppelin/zeppelin-0.7.0/zeppelin-0.7.0-bin-netinst.tgz'">zeppelin-0.7.0-bin-netinst.tgz</a> (272 MB,
+    [pgp](https://www.apache.org/dist/zeppelin/zeppelin-0.7.0/zeppelin-0.7.0-bin-netinst.tgz.asc),
+    [md5](https://www.apache.org/dist/zeppelin/zeppelin-0.7.0/zeppelin-0.7.0-bin-netinst.tgz.md5),
+    [sha](https://www.apache.org/dist/zeppelin/zeppelin-0.7.0/zeppelin-0.7.0-bin-netinst.tgz.sha512))
+
+    * Source:
+    <a style="cursor:pointer" onclick="ga('send', 'event', 'download', 'zeppelin-src', '0.7.0'); window.location.href='http://www.apache.org/dyn/closer.cgi/zeppelin/zeppelin-0.7.0/zeppelin-0.7.0.tgz'">zeppelin-0.7.0.tgz</a> (1.9 MB,
+    [pgp](https://www.apache.org/dist/zeppelin/zeppelin-0.7.0/zeppelin-0.7.0.tgz.asc),
+    [md5](https://www.apache.org/dist/zeppelin/zeppelin-0.7.0/zeppelin-0.7.0.tgz.md5),
+    [sha](https://www.apache.org/dist/zeppelin/zeppelin-0.7.0/zeppelin-0.7.0.tgz.sha512))
+  <p />
+
   - 0.6.2 released on Oct 15, 2016 ([release notes](./releases/zeppelin-release-0.6.2.html)) ([git tag](https://git-wip-us.apache.org/repos/asf?p=zeppelin.git;h=refs/tags/v0.6.2))
 
     * Binary package with all interpreters:

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/12633f47/releases/zeppelin-release-0.7.1.md
----------------------------------------------------------------------
diff --git a/releases/zeppelin-release-0.7.1.md b/releases/zeppelin-release-0.7.1.md
new file mode 100644
index 0000000..458564f
--- /dev/null
+++ b/releases/zeppelin-release-0.7.1.md
@@ -0,0 +1,59 @@
+---
+layout: page
+title: "Apache Zeppelin Release 0.7.1"
+description: ""
+group: release
+---
+<!--
+Licensed 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.
+-->
+{% include JB/setup %}
+
+## Apache Zeppelin Release 0.7.1
+
+The Apache Zeppelin community is pleased to announce the availability of the 0.7.1 release.
+
+The community put significant effort into improving Apache Zeppelin since the last release focusing on restarting interpreter process stability, python interpreter improvement, table/chart rendering bug fix.
+24 contributors provided 80+ patches for improvements and bug fixes.
+More than 70+ issues have been resolved.
+
+We encourage to [download](../../download.html) the latest release. Feedback through the [mailing lists](../../community.html) is very welcome.
+
+### Improvements
+   * Rewrite python interpreter for streaming output and seamless matplotlib support
+   * Add user configurable option in UI which enable/disable dynamic form(select, checkbox) run on change
+
+### Fixes
+   * z.show() doesn't show dataframe
+   * Zombie Interpreter processes
+   * Interpreter restart button doesn't work
+   * On creation of Bar graph zeppelin UI shows it as minigraph
+   * Jdbc interpreter sometime doesn't show detailed error message
+   * Piechart won't render when column selected as 'key' is changed
+   * Make use of all grouped data to draw pie chart
+   * Propagate interpreter exception to frontend
+
+<br />
+You can visit [issue tracker](https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12339166&projectId=12316221) for full list of issues being resolved.
+
+
+<br />
+### Contributors
+
+This release would not be possible without the following community members' contributions:
+
+Lee moon soo, Jongyoul Lee, 1ambda, Prabhjyot Singh, AhyoungRyu, Jeff Zhang, Mina Lee, soralee, ess_ess, Remilito, astroshim, Khalid Huseynov, Alexander Wenzel, Naman Mishra, Andreas Weise, Randy Gelhausen, Renjith Kamath, Vipul Modi, agura, NohSeho, Anthony Corbacho, Bruno P. Kinoshita, Elek M�rton, Guillermo Cabrera
+
+The following people helped verifying this release:
+
+Jeff Zhang, Ahyoung Ryu, CloverHeartsDev, Sora Lee, Jongyoul Lee, DuyHai Doan, Hyung Sung Shim, Mina Lee, Windy Qin, Jun Kim, Anthony Corbacho, Khalid Huseynov, Felix Cheung, moon soo Lee, Prabhjyot Singh

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/12633f47/supported_interpreters.md
----------------------------------------------------------------------
diff --git a/supported_interpreters.md b/supported_interpreters.md
index 40875c1..6347abb 100644
--- a/supported_interpreters.md
+++ b/supported_interpreters.md
@@ -31,6 +31,7 @@ Please check the below table before you download Zeppelin package.
 <table class="table-configuration" style="text-align:center" id="comparing-version">
   <tr>
     <th style="width:10%">Zeppelin</th>
+    <th style="width:22%">0.7.1</th>
     <th style="width:22%">0.7.0</th>
     <th style="width:22%">0.6.2 - 0.6.1</th>
     <th style="width:22%">0.6.0</th>
@@ -43,6 +44,9 @@ Please check the below table before you download Zeppelin package.
     <td rowspan="2">
         1.4.x, 1.5.x, 1.6.x, 2.0.x <strong>2.1.0</strong>
     </td>
+    <td rowspan="2">
+        1.4.x, 1.5.x, 1.6.x, 2.0.x <strong>2.1.0</strong>
+    </td>
     <td>
         1.1.x, 1.2.x, 1.3.x, 1.4.x, 1.5.x, 1.6.x, <strong>2.0.0</strong>
     </td>
@@ -95,6 +99,18 @@ Please check the below table before you download Zeppelin package.
       <a href="http://tajo.apache.org/" target="_blank">Tajo</a>
       are available
     </td>
+    <td>
+      <a href="http://www.postgresql.org/" target="_blank">PostgreSQL</a>,
+      <a href="https://www.mysql.com/" target="_blank">MySQL</a>,
+      <a href="https://mariadb.org/" target="_blank">MariaDB</a>,
+      <a href="https://aws.amazon.com/documentation/redshift/" target="_blank">Redshift</a>,
+      <br/>
+      <a href="https://hive.apache.org/" target="_blank">Hive</a>,
+      <a href="https://phoenix.apache.org/" target="_blank">Phoenix</a>,
+      <a href="https://drill.apache.org/" target="_blank">Drill</a>,
+      <a href="http://tajo.apache.org/" target="_blank">Tajo</a>
+      are available
+    </td>
     <td>N/A</td>
   </tr>
   <tr>
@@ -102,6 +118,7 @@ Please check the below table before you download Zeppelin package.
       <h6><a href="https://pig.apache.org/" target="_blank">Pig</a></h6>
     </td>
     <td>O</td>
+    <td>O</td>
     <td>N/A</td>
     <td>N/A</td>
     <td>N/A</td>
@@ -112,6 +129,7 @@ Please check the below table before you download Zeppelin package.
       <i class="fa fa-info-circle" data-toggle="tooltip" title="Not included in binary package. Use interpreter install script or build from source with -Pbeam to use this interpreter"></i>
     </td>
     <td>O</td>
+    <td>O</td>
     <td>N/A</td>
     <td>N/A</td>
     <td>N/A</td>
@@ -121,6 +139,7 @@ Please check the below table before you download Zeppelin package.
       <h6 style="display: inline;"><a href="https://github.com/spotify/scio/" target="_blank">Scio</a></h6>
     </td>
     <td>O</td>
+    <td>O</td>
     <td>N/A</td>
     <td>N/A</td>
     <td>N/A</td>
@@ -131,6 +150,7 @@ Please check the below table before you download Zeppelin package.
     </td>
     <td>O</td>
     <td>O</td>
+    <td>O</td>
     <td>N/A</td>
     <td>N/A</td>
   </tr>
@@ -141,6 +161,7 @@ Please check the below table before you download Zeppelin package.
     <td>O</td>
     <td>O</td>
     <td>O</td>
+    <td>O</td>
     <td>N/A</td>
   </tr>
   <tr>
@@ -150,6 +171,7 @@ Please check the below table before you download Zeppelin package.
     <td>O</td>
     <td>O</td>
     <td>O</td>
+    <td>O</td>
     <td>N/A</td>
   </tr>
   <tr>
@@ -159,6 +181,7 @@ Please check the below table before you download Zeppelin package.
     <td>O</td>
     <td>O</td>
     <td>O</td>
+    <td>O</td>
     <td>N/A</td>
   </tr>
   <tr>
@@ -168,6 +191,7 @@ Please check the below table before you download Zeppelin package.
     <td>O</td>
     <td>O</td>
     <td>O</td>
+    <td>O</td>
     <td>N/A</td>
   </tr>
   <tr>
@@ -177,6 +201,7 @@ Please check the below table before you download Zeppelin package.
     <td>O</td>
     <td>O</td>
     <td>O</td>
+    <td>O</td>
     <td>N/A</td>
   </tr>
   <tr>
@@ -188,6 +213,7 @@ Please check the below table before you download Zeppelin package.
     <td>O</td>
     <td>O</td>
     <td>O</td>
+    <td>O</td>
   </tr>
   <tr>
     <td>
@@ -197,6 +223,7 @@ Please check the below table before you download Zeppelin package.
     <td>O</td>
     <td>O</td>
     <td>O</td>
+    <td>O</td>
   </tr>
   <tr>
     <td>
@@ -206,6 +233,7 @@ Please check the below table before you download Zeppelin package.
     <td>O</td>
     <td>O</td>
     <td>O</td>
+    <td>O</td>
   </tr>
   <tr>
     <td>
@@ -215,6 +243,7 @@ Please check the below table before you download Zeppelin package.
     <td>O</td>
     <td>O</td>
     <td>O</td>
+    <td>O</td>
   </tr>
   <tr>
     <td>
@@ -224,6 +253,7 @@ Please check the below table before you download Zeppelin package.
     <td>O</td>
     <td>O</td>
     <td>O</td>
+    <td>O</td>
   </tr>
   <tr>
     <td>
@@ -233,6 +263,7 @@ Please check the below table before you download Zeppelin package.
     <td>O</td>
     <td>O</td>
     <td>O</td>
+    <td>O</td>
   </tr>
   <tr>
     <td>
@@ -241,6 +272,7 @@ Please check the below table before you download Zeppelin package.
     <td>Merged into JDBC interpreter</td>
     <td>Merged into JDBC interpreter</td>
     <td>Merged into JDBC interpreter</td>
+    <td>Merged into JDBC interpreter</td>
     <td>O</td>
   </tr>
   <tr>
@@ -250,6 +282,7 @@ Please check the below table before you download Zeppelin package.
     <td>Merged into JDBC interpreter</td>
     <td>Merged into JDBC interpreter</td>
     <td>Merged into JDBC interpreter</td>
+    <td>Merged into JDBC interpreter</td>
     <td>O</td>
   </tr>
   <tr>
@@ -260,6 +293,7 @@ Please check the below table before you download Zeppelin package.
     <td>O</td>
     <td>O</td>
     <td>O</td>
+    <td>O</td>
   </tr>
   <tr>
     <td>
@@ -270,11 +304,13 @@ Please check the below table before you download Zeppelin package.
     <td>O</td>
     <td>O</td>
     <td>O</td>
+    <td>O</td>
   </tr>
   <tr>
     <td>
       <h6><a href="https://ignite.apache.org/" target="_blank">Ignite</a></h6>
     </td>
+    <td>1.9.0</td>
     <td>1.7.0</td>
     <td>1.7.0</td>
     <td>1.6.0</td>
@@ -288,6 +324,7 @@ Please check the below table before you download Zeppelin package.
     <td>O</td>
     <td>O</td>
     <td>O</td>
+    <td>O</td>
   </tr>
   <tr>
     <td>
@@ -297,6 +334,7 @@ Please check the below table before you download Zeppelin package.
     <td>O</td>
     <td>O</td>
     <td>O</td>
+    <td>O</td>
   </tr>
   <tr>
     <td>
@@ -305,6 +343,7 @@ Please check the below table before you download Zeppelin package.
     <td>Merged into JDBC interpreter</td>
     <td>Merged into JDBC interpreter</td>
     <td>Merged into JDBC interpreter</td>
+    <td>Merged into JDBC interpreter</td>
     <td>O</td>
   </tr>
   <tr>
@@ -315,5 +354,6 @@ Please check the below table before you download Zeppelin package.
     <td>O</td>
     <td>O</td>
     <td>O</td>
+    <td>O</td>
   </tr>
 </table>