You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by gi...@apache.org on 2022/06/14 06:40:36 UTC

[zeppelin] branch dependabot/npm_and_yarn/zeppelin-web/grunt-1.5.3 updated (d1ee35569e -> 62fc845f51)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch dependabot/npm_and_yarn/zeppelin-web/grunt-1.5.3
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


    omit d1ee35569e Bump grunt from 0.4.5 to 1.5.3 in /zeppelin-web
     add f6bb339e09 Small typos in Spark introduction
     add 105bcb5507  [ZEPPELIN-5682] SQL keywords are not highlighted in paragraph
     add 5ae2aaebbc [ZEPPELIN-5737] try to avoid deadlock
     add 525d3617b0 [ZEPPELIN-5744] Allow NoteManager for concurrent operation (#4374)
     add d22723bd92 ZEPPELIN-5746: Add support for escaping html in markdown (#4375)
     add 2afa0ddd20 [ZEPPELIN-5750] Add tests for NoteAuth and polish up NoteAuth (#4378)
     add 6b9d42b696 [ZEPPELIN-5753] Improve Docker build (#4379)
     add 62fc845f51 Bump grunt from 0.4.5 to 1.5.3 in /zeppelin-web

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (d1ee35569e)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/zeppelin-web/grunt-1.5.3 (62fc845f51)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 Dockerfile                                         |   5 +-
 .../apache/zeppelin/markdown/FlexmarkParser.java   |   3 +
 .../zeppelin/markdown/FlexmarkParserTest.java      |  21 +++
 .... Spark Interpreter Introduction_2F8KN6TKK.zpln |  10 +-
 .../zeppelin/conf/ZeppelinConfiguration.java       |   5 +
 .../zeppelin/interpreter/LazyOpenInterpreter.java  |  20 ++-
 .../remote/RemoteInterpreterServer.java            |   2 +-
 .../org/apache/zeppelin/rest/NotebookRestApi.java  |   4 +-
 .../service/ShiroAuthenticationServiceTest.java    |  13 +-
 .../src/interfaces/message-notebook.interface.ts   |   2 +-
 .../src/interfaces/message-operator.interface.ts   |   3 +-
 .../projects/zeppelin-sdk/src/message.ts           |   4 +-
 .../paragraph/code-editor/code-editor.component.ts |   6 +-
 zeppelin-web/package-lock.json                     |  44 +++---
 zeppelin-web/package.json                          |   2 +-
 .../zeppelin/notebook/AuthorizationService.java    |  20 ++-
 .../org/apache/zeppelin/notebook/NoteAuth.java     |  39 +++---
 .../org/apache/zeppelin/notebook/NoteManager.java  |  19 ++-
 .../org/apache/zeppelin/notebook/Notebook.java     |   2 +-
 .../notebook/NotebookAuthorizationInfoSaving.java  |   7 +-
 .../org/apache/zeppelin/notebook/Paragraph.java    |   2 +-
 .../org/apache/zeppelin/notebook/NoteAuthTest.java | 153 +++++++++++++++++++++
 .../apache/zeppelin/notebook/NoteManagerTest.java  | 119 ++++++++++++++++
 23 files changed, 406 insertions(+), 99 deletions(-)
 create mode 100644 zeppelin-zengine/src/test/java/org/apache/zeppelin/notebook/NoteAuthTest.java