You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by ha...@apache.org on 2021/04/07 17:56:31 UTC

[incubator-hop] branch master updated (0b7c04e -> a346481)

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

hansva pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hop.git.


    from 0b7c04e  Merge pull request #736 from sramazzina/master
     new 96d8563  HOP-2753 : Add search analysers for Neo4j connections and graph models
     new 892e01c  HOP-2752 : Search: matching metadata doesn't have type nor filename
     new 8db6d26  HOP-2762 : GTK-Warning in Cassandra Output dialog
     new 3e198c9  HOP-2763 : Switching projects doesn't always remember open files correctly
     new 34e28be  HOP-2765 : Samples are not included in Hop Web
     new a346481  Merge pull request #737 from mattcasters/master

The 1923 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 assemblies/web/src/assembly/assembly.xml           |  11 +-
 .../hop/core/config/plugin/ConfigPlugin.java       |   1 +
 .../serializer/json/JsonMetadataSerializer.java    |   7 +-
 .../search/BaseMetadataSearchableAnalyser.java     |  25 +++--
 .../hop/core/search/BaseSearchableAnalyser.java    |   2 +
 .../search/DatabaseMetaSearchableAnalyser.java     |   4 +-
 .../core/search/HopServerSearchableAnalyser.java   |  14 +--
 .../search/PartitionSchemaSearchableAnalyser.java  |   7 +-
 ...PipelineRunConfigurationSearchableAnalyser.java |   7 +-
 ...WorkflowRunConfigurationSearchableAnalyser.java |   7 +-
 .../cassandraoutput/CassandraOutputDialog.java     |  85 +++++----------
 .../neo4j/model/GraphModelSearchableAnalyser.java  | 119 +++++++++++++++++++++
 .../shared/NeoConnectionSearchableAnalyser.java    |  63 +++++++++++
 .../hopgui/file/pipeline/HopGuiPipelineGraph.java  |   2 +-
 .../hopgui/file/workflow/HopGuiWorkflowGraph.java  |   2 +-
 .../ui/hopgui/search/HopGuiMetadataSearchable.java |   5 +
 16 files changed, 268 insertions(+), 93 deletions(-)
 copy plugins/tech/neo4j/src/main/java/org/apache/hop/neo4j/transforms/split/SplitGraphData.java => engine/src/main/java/org/apache/hop/core/search/BaseMetadataSearchableAnalyser.java (61%)
 create mode 100644 plugins/tech/neo4j/src/main/java/org/apache/hop/neo4j/model/GraphModelSearchableAnalyser.java
 create mode 100644 plugins/tech/neo4j/src/main/java/org/apache/hop/neo4j/shared/NeoConnectionSearchableAnalyser.java