(zeppelin) branch master updated: [ZEPPELIN-6126] Remove hadoop dependencies out of the final zeppelin-web.war
This is an automated email from the ASF dual-hosted git repository. pdallig pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/zeppelin.git The following commit(s) were added to refs/heads/master by this push: new bdf5b067b6 [ZEPPELIN-6126] Remove hadoop dependencies out of the final zeppelin-web.war bdf5b067b6 is described below commit bdf5b067b6bdde2614b98a6a3f6a7b5d6637e57c Author: Philipp Dallig AuthorDate: Thu Oct 10 11:20:27 2024 +0200 [ZEPPELIN-6126] Remove hadoop dependencies out of the final zeppelin-web.war ### What is this PR for? This PR removes the Hadoop dependencies in the zeppelin-web.war file. At the moment it is not clear to me how this behavior came about in Zeppelin. Build Command: `./mvnw clean package -DskipTests -Pinclude-hadoop -Pweb-classic -Pweb-dist -pl zeppelin-web -am` ### What type of PR is it? Bug Fix ### What is the Jira issue? * https://issues.apache.org/jira/browse/ZEPPELIN-6126 ### Screenshots (if appropriate) Before: ``` 15:53 $ ls -lh zeppelin-web/target/ insgesamt 47M drwxrwxr-x 3 pdallig pdallig 4,0K Okt 9 15:51 classes drwxrwxr-x 2 pdallig pdallig 4,0K Okt 9 15:51 maven-archiver drwxrwxr-x 3 pdallig pdallig 4,0K Okt 9 15:51 maven-shared-archive-resources drwxrwxr-x 3 pdallig pdallig 4,0K Okt 9 15:51 test-classes drwxrwxr-x 11 pdallig pdallig 4,0K Okt 9 15:51 zeppelin-web-0.12.0-SNAPSHOT -rw-rw-r-- 1 pdallig pdallig 47M Okt 9 15:51 zeppelin-web-0.12.0-SNAPSHOT.war ```  After: ``` 15:53 $ ls -lh zeppelin-web/target/ insgesamt 3,1M drwxrwxr-x 3 pdallig pdallig 4,0K Okt 9 15:57 classes drwxrwxr-x 2 pdallig pdallig 4,0K Okt 9 15:57 maven-archiver drwxrwxr-x 3 pdallig pdallig 4,0K Okt 9 15:56 maven-shared-archive-resources drwxrwxr-x 3 pdallig pdallig 4,0K Okt 9 15:57 test-classes drwxrwxr-x 11 pdallig pdallig 4,0K Okt 9 15:57 zeppelin-web-0.12.0-SNAPSHOT -rw-rw-r-- 1 pdallig pdallig 3,1M Okt 9 15:57 zeppelin-web-0.12.0-SNAPSHOT.war ```  ### Questions: * Does the license files need to update? No * Is there breaking changes for older versions? No * Does this needs documentation? No Closes #4871 from Reamer/remove_hadoop_from_web. Signed-off-by: Philipp Dallig --- zeppelin-web/pom.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zeppelin-web/pom.xml b/zeppelin-web/pom.xml index 47258e9471..9a3baf4771 100644 --- a/zeppelin-web/pom.xml +++ b/zeppelin-web/pom.xml @@ -39,6 +39,8 @@ https://nodejs.org/dist/ https://registry.npmjs.org/npm/-/ + +test
(zeppelin) branch branch-0.12 updated: [ZEPPELIN-6126] Remove hadoop dependencies out of the final zeppelin-web.war
This is an automated email from the ASF dual-hosted git repository. pdallig pushed a commit to branch branch-0.12 in repository https://gitbox.apache.org/repos/asf/zeppelin.git The following commit(s) were added to refs/heads/branch-0.12 by this push: new ad4ced6125 [ZEPPELIN-6126] Remove hadoop dependencies out of the final zeppelin-web.war ad4ced6125 is described below commit ad4ced6125bab88c34587830ba04a804e0650935 Author: Philipp Dallig AuthorDate: Thu Oct 10 11:20:27 2024 +0200 [ZEPPELIN-6126] Remove hadoop dependencies out of the final zeppelin-web.war ### What is this PR for? This PR removes the Hadoop dependencies in the zeppelin-web.war file. At the moment it is not clear to me how this behavior came about in Zeppelin. Build Command: `./mvnw clean package -DskipTests -Pinclude-hadoop -Pweb-classic -Pweb-dist -pl zeppelin-web -am` ### What type of PR is it? Bug Fix ### What is the Jira issue? * https://issues.apache.org/jira/browse/ZEPPELIN-6126 ### Screenshots (if appropriate) Before: ``` 15:53 $ ls -lh zeppelin-web/target/ insgesamt 47M drwxrwxr-x 3 pdallig pdallig 4,0K Okt 9 15:51 classes drwxrwxr-x 2 pdallig pdallig 4,0K Okt 9 15:51 maven-archiver drwxrwxr-x 3 pdallig pdallig 4,0K Okt 9 15:51 maven-shared-archive-resources drwxrwxr-x 3 pdallig pdallig 4,0K Okt 9 15:51 test-classes drwxrwxr-x 11 pdallig pdallig 4,0K Okt 9 15:51 zeppelin-web-0.12.0-SNAPSHOT -rw-rw-r-- 1 pdallig pdallig 47M Okt 9 15:51 zeppelin-web-0.12.0-SNAPSHOT.war ```  After: ``` 15:53 $ ls -lh zeppelin-web/target/ insgesamt 3,1M drwxrwxr-x 3 pdallig pdallig 4,0K Okt 9 15:57 classes drwxrwxr-x 2 pdallig pdallig 4,0K Okt 9 15:57 maven-archiver drwxrwxr-x 3 pdallig pdallig 4,0K Okt 9 15:56 maven-shared-archive-resources drwxrwxr-x 3 pdallig pdallig 4,0K Okt 9 15:57 test-classes drwxrwxr-x 11 pdallig pdallig 4,0K Okt 9 15:57 zeppelin-web-0.12.0-SNAPSHOT -rw-rw-r-- 1 pdallig pdallig 3,1M Okt 9 15:57 zeppelin-web-0.12.0-SNAPSHOT.war ```  ### Questions: * Does the license files need to update? No * Is there breaking changes for older versions? No * Does this needs documentation? No Closes #4871 from Reamer/remove_hadoop_from_web. Signed-off-by: Philipp Dallig --- zeppelin-web/pom.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zeppelin-web/pom.xml b/zeppelin-web/pom.xml index 47258e9471..9a3baf4771 100644 --- a/zeppelin-web/pom.xml +++ b/zeppelin-web/pom.xml @@ -39,6 +39,8 @@ https://nodejs.org/dist/ https://registry.npmjs.org/npm/-/ + +test
(zeppelin-site) branch master updated: Update helium.json (October 11, 2024, 00:23)
This is an automated email from the ASF dual-hosted git repository. github-bot pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/zeppelin-site.git The following commit(s) were added to refs/heads/master by this push: new 5e4908998 Update helium.json (October 11, 2024, 00:23) 5e4908998 is described below commit 5e4908998a73d138e11c7e1e1707f4da9d8c6467 Author: apache zepplein AuthorDate: Fri Oct 11 00:23:57 2024 + Update helium.json (October 11, 2024, 00:23) 50 lines modified --- helium.json | 50 -- 1 file changed, 50 deletions(-) diff --git a/helium.json b/helium.json index f551f4ead..5a2bb341f 100644 --- a/helium.json +++ b/helium.json @@ -304,56 +304,6 @@ "artifactId": "zeppelin-interpreter-parent" } }, -"zeppelin-iotdb": { - "latest": { -"type": "INTERPRETER", -"name": "zeppelin-iotdb", -"version": "1.3.2", -"published": "2024-06-27T07:06:17+00:00", -"artifact": "zeppelin-iotdb@1.3.2", -"description": "Zeppelin IoTDB support", -"license": "Apache-2.0", -"icon": "", -"groupId": "org.apache.iotdb", -"artifactId": "zeppelin-iotdb" - }, - "1.3.1": { -"type": "INTERPRETER", -"name": "zeppelin-iotdb", -"version": "1.3.1", -"published": "2024-04-19T08:49:13+00:00", -"artifact": "zeppelin-iotdb@1.3.1", -"description": "Zeppelin IoTDB support", -"license": "Apache-2.0", -"icon": "", -"groupId": "org.apache.iotdb", -"artifactId": "zeppelin-iotdb" - }, - "1.3.0": { -"type": "INTERPRETER", -"name": "zeppelin-iotdb", -"version": "1.3.0", -"published": "2023-12-27T04:17:42+00:00", -"artifact": "zeppelin-iotdb@1.3.0", -"description": "Zeppelin IoTDB support", -"license": "Apache-2.0", -"icon": "", -"groupId": "org.apache.iotdb", -"artifactId": "zeppelin-iotdb" - }, - "1.2.2": { -"type": "INTERPRETER", -"name": "zeppelin-iotdb", -"version": "1.2.2", -"published": "2023-10-11T09:58:13+00:00", -"artifact": "zeppelin-iotdb@1.2.2", -"description": "Zeppelin IoTDB support", -"license": "Apache-2.0", -"icon": "", -"groupId": "org.apache.iotdb", -"artifactId": "zeppelin-iotdb" - } -}, "zeppelin-jupyter-interpreter": { "latest": { "type": "INTERPRETER",
(zeppelin-site) branch asf-staging updated: Automatic Site Publish by Buildbot
This is an automated email from the ASF dual-hosted git repository. git-site-role pushed a commit to branch asf-staging in repository https://gitbox.apache.org/repos/asf/zeppelin-site.git The following commit(s) were added to refs/heads/asf-staging by this push: new 497b6d0c3 Automatic Site Publish by Buildbot 497b6d0c3 is described below commit 497b6d0c33561a0b1cee53a559d489dfb3e69911 Author: buildbot AuthorDate: Fri Oct 11 00:24:23 2024 + Automatic Site Publish by Buildbot --- output/atom.xml| 2 +- output/helium.json | 50 -- output/rss.xml | 4 ++-- 3 files changed, 3 insertions(+), 53 deletions(-) diff --git a/output/atom.xml b/output/atom.xml index 9d4924a13..0970070b0 100644 --- a/output/atom.xml +++ b/output/atom.xml @@ -4,7 +4,7 @@ Apache Zeppelin http://zeppelin.apache.org/"; rel="self"/> http://zeppelin.apache.org"/> - 2024-10-09T00:24:23+00:00 + 2024-10-11T00:24:13+00:00 http://zeppelin.apache.org The Apache Software Foundation diff --git a/output/helium.json b/output/helium.json index f551f4ead..5a2bb341f 100644 --- a/output/helium.json +++ b/output/helium.json @@ -304,56 +304,6 @@ "artifactId": "zeppelin-interpreter-parent" } }, -"zeppelin-iotdb": { - "latest": { -"type": "INTERPRETER", -"name": "zeppelin-iotdb", -"version": "1.3.2", -"published": "2024-06-27T07:06:17+00:00", -"artifact": "zeppelin-iotdb@1.3.2", -"description": "Zeppelin IoTDB support", -"license": "Apache-2.0", -"icon": "", -"groupId": "org.apache.iotdb", -"artifactId": "zeppelin-iotdb" - }, - "1.3.1": { -"type": "INTERPRETER", -"name": "zeppelin-iotdb", -"version": "1.3.1", -"published": "2024-04-19T08:49:13+00:00", -"artifact": "zeppelin-iotdb@1.3.1", -"description": "Zeppelin IoTDB support", -"license": "Apache-2.0", -"icon": "", -"groupId": "org.apache.iotdb", -"artifactId": "zeppelin-iotdb" - }, - "1.3.0": { -"type": "INTERPRETER", -"name": "zeppelin-iotdb", -"version": "1.3.0", -"published": "2023-12-27T04:17:42+00:00", -"artifact": "zeppelin-iotdb@1.3.0", -"description": "Zeppelin IoTDB support", -"license": "Apache-2.0", -"icon": "", -"groupId": "org.apache.iotdb", -"artifactId": "zeppelin-iotdb" - }, - "1.2.2": { -"type": "INTERPRETER", -"name": "zeppelin-iotdb", -"version": "1.2.2", -"published": "2023-10-11T09:58:13+00:00", -"artifact": "zeppelin-iotdb@1.2.2", -"description": "Zeppelin IoTDB support", -"license": "Apache-2.0", -"icon": "", -"groupId": "org.apache.iotdb", -"artifactId": "zeppelin-iotdb" - } -}, "zeppelin-jupyter-interpreter": { "latest": { "type": "INTERPRETER", diff --git a/output/rss.xml b/output/rss.xml index 19b945747..d5c544c7c 100644 --- a/output/rss.xml +++ b/output/rss.xml @@ -5,8 +5,8 @@ Apache Zeppelin - The Apache Software Foundation http://zeppelin.apache.org http://zeppelin.apache.org -2024-10-09T00:24:23+00:00 -2024-10-09T00:24:23+00:00 +2024-10-11T00:24:13+00:00 +2024-10-11T00:24:13+00:00 1800