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 2022/10/13 20:19:16 UTC

[hop] branch master updated (cf89307874 -> c7da3e1424)

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/hop.git


    from cf89307874 Merge pull request #1736 from uraychang/master
     new 8bd57e1b09 HOP-4460: Create easy way to jump to Dataflow pipeline view
     new c1d1100eb0 HOP-4448 : Add a welcome message
     new 69bca6ee4f HOP-4463 : Build failure on Windows with latest LTS OpenJDK
     new f58a949d35 HOP-4448 : Add a welcome message
     new 3c4660a478 HOP-4464 : Beam no longer supports info hops
     new bc38cf7939 HOP-4465 : File Execution Information location doesn't resolve variables
     new 483fe56091 HOP-4466 : Maven complains about double dependencies
     new 29b7b96e2b HOP-4466 : Maven complains about double dependencies (fix)
     new dd410a5b7e HOP-4448 : Add a welcome message
     new c7da3e1424 Merge pull request #1738 from mattcasters/cypher-builder

The 4647 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/plugins/tech/google/pom.xml             |  12 +-
 assemblies/plugins/transforms/yamlinput/pom.xml    |   7 +-
 .../execution-data-profile/first-last.json         |  16 +
 .../execution-info-location/local-audit.json       |  13 +
 .../metadata/pipeline-run-configuration/local.json |   4 +-
 .../metadata/workflow-run-configuration/local.json |   3 +-
 core/src/main/java/org/apache/hop/core/Const.java  |  62 +-
 .../java/org/apache/hop/core/config/HopConfig.java |   2 +-
 .../apache/hop/core/gui/plugin/GuiElementType.java |   4 +-
 .../apache/hop/core/gui/plugin/GuiRegistry.java    |  97 ++-
 .../test/java/org/apache/hop/core/ConstTest.java   |  14 +
 .../org/apache/hop/execution/ExecutionState.java   |  24 +
 .../hop/execution/ExecutionStateBuilder.java       |   9 +
 .../execution/local/FileExecutionInfoLocation.java |  28 +-
 .../0005-generate-single-file-validation.hpl       |  36 +-
 .../0009-stream-lookup-validation.hpl              | 344 ++++++++
 .../beam_directrunner/0009-stream-lookup.hpl       | 262 +++++++
 .../datasets/0009-stream-lookup-golden.csv         | 869 +++++++++++++++++++++
 .../beam_directrunner/main-0009-stream-lookup.hwf  | 139 ++++
 .../dataset/0009-stream-lookup-golden.json         | 112 +++
 .../0005-generate-single-file-validation UNIT.json |  71 +-
 .../0009-stream-lookup-validation UNIT.json        |  76 ++
 plugins/engines/beam/pom.xml                       |   5 -
 .../hop/beam/core/transform/BeamRowHandler.java    |  18 +-
 .../hop/beam/engines/BeamPipelineEngine.java       |  16 +-
 .../dataflow/BeamDataFlowPipelineEngine.java       |  31 +-
 .../org/apache/hop/beam/gui/HopBeamGuiPlugin.java  | 142 +++-
 .../beam/gui/PipelineExecutionViewerUpdateXP.java  |  56 ++
 .../hop/beam/gui/PipelineGraphUpdateGuiXP.java     |  46 ++
 .../java/org/apache/hop/beam/gui/WelcomeBeam.java  | 221 ++++++
 .../engines/beam/src/main/resources/dataflow.svg   |  44 ++
 .../pipeline-run-configuration/DataFlow.json       |  18 +-
 .../pipeline-run-configuration/Direct.json         |   4 +-
 .../metadata/pipeline-run-configuration/Flink.json |   8 +-
 .../metadata/pipeline-run-configuration/Spark.json |   4 +-
 .../apache/hop/projects/gui/ProjectsGuiPlugin.java |  35 +-
 .../neo4j/execution/NeoExecutionInfoLocation.java  | 118 ++-
 .../execution/builder/CypherMergeBuilder.java      |  15 +-
 .../apache/hop/neo4j/logging/util/LoggingCore.java |  18 +-
 .../hop/neo4j/perspective/HopNeo4jPerspective.java |  22 +-
 .../org/apache/hop/neo4j/shared/NeoConnection.java |  10 +-
 .../hop/neo4j/transforms/cypher/CypherDialog.java  |  22 +-
 .../transforms/cypherbuilder/CypherBuilder.java    |   8 +-
 .../main/java/org/apache/hop/ui/core/PropsUi.java  |  11 +
 .../hop/ui/core/gui/GuiCompositeWidgets.java       |  63 +-
 .../main/java/org/apache/hop/ui/hopgui/HopGui.java |  20 +-
 .../apache/hop/ui/hopgui/HopGuiEnvironment.java    |  12 +-
 .../apache/hop/ui/hopgui/HopGuiExtensionPoint.java |   4 +
 .../hopgui/file/pipeline/HopGuiPipelineGraph.java  |  93 ++-
 .../perspective/execution/BaseExecutionViewer.java |   9 +
 .../execution/PipelineExecutionViewer.java         |  68 ++
 .../hop/ui/hopgui/welcome/WelcomeDialog.java       | 212 +++++
 .../ui/hopgui/welcome/WelcomeDialogOptions.java    | 166 ++++
 .../hop/ui/hopgui/welcome/WelcomeWelcome.java      | 121 +++
 .../welcome/messages/messages_en_US.properties     |  21 +
 55 files changed, 3634 insertions(+), 231 deletions(-)
 create mode 100644 assemblies/static/src/main/resources/config/projects/default/metadata/execution-data-profile/first-last.json
 create mode 100644 assemblies/static/src/main/resources/config/projects/default/metadata/execution-info-location/local-audit.json
 create mode 100644 integration-tests/beam_directrunner/0009-stream-lookup-validation.hpl
 create mode 100644 integration-tests/beam_directrunner/0009-stream-lookup.hpl
 create mode 100644 integration-tests/beam_directrunner/datasets/0009-stream-lookup-golden.csv
 create mode 100644 integration-tests/beam_directrunner/main-0009-stream-lookup.hwf
 create mode 100644 integration-tests/beam_directrunner/metadata/dataset/0009-stream-lookup-golden.json
 create mode 100644 integration-tests/beam_directrunner/metadata/unit-test/0009-stream-lookup-validation UNIT.json
 create mode 100644 plugins/engines/beam/src/main/java/org/apache/hop/beam/gui/PipelineExecutionViewerUpdateXP.java
 create mode 100644 plugins/engines/beam/src/main/java/org/apache/hop/beam/gui/PipelineGraphUpdateGuiXP.java
 create mode 100644 plugins/engines/beam/src/main/java/org/apache/hop/beam/gui/WelcomeBeam.java
 create mode 100644 plugins/engines/beam/src/main/resources/dataflow.svg
 create mode 100644 ui/src/main/java/org/apache/hop/ui/hopgui/welcome/WelcomeDialog.java
 create mode 100644 ui/src/main/java/org/apache/hop/ui/hopgui/welcome/WelcomeDialogOptions.java
 create mode 100644 ui/src/main/java/org/apache/hop/ui/hopgui/welcome/WelcomeWelcome.java
 create mode 100644 ui/src/main/resources/org/apache/hop/ui/hopgui/welcome/messages/messages_en_US.properties