You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hugegraph.apache.org by ji...@apache.org on 2022/11/22 13:56:49 UTC

[incubator-hugegraph-toolchain] branch fix_hubble updated (984be116 -> 3a5ba674)

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

jin pushed a change to branch fix_hubble
in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph-toolchain.git


    from 984be116 run unit-test
     add aa4b168e chore(hubble): ui component protocol information (#372)
     add 6bbaa21b refact(client): adapt import & style with latest code (#369)
     add c979b86e [fix][loader] Fix deserialize json error (#376)
     add 3cbbf771 chore: fix loader's jackson conflicts & missing dependencies (#374)
     add 3a5ba674 Merge branch 'master' into fix_hubble

No new revisions were added by this update.

Summary of changes:
 .../org/apache/hugegraph/api/auth/GroupAPI.java    |    1 +
 .../org/apache/hugegraph/api/auth/LogoutAPI.java   |    1 +
 .../org/apache/hugegraph/api/auth/ProjectAPI.java  |    1 +
 .../org/apache/hugegraph/api/auth/TargetAPI.java   |    1 +
 .../org/apache/hugegraph/api/auth/UserAPI.java     |    1 +
 .../org/apache/hugegraph/api/graph/EdgeAPI.java    |    9 +-
 .../org/apache/hugegraph/api/graph/VertexAPI.java  |   15 +-
 .../org/apache/hugegraph/api/graphs/GraphsAPI.java |   15 +-
 .../hugegraph/api/gremlin/GremlinRequest.java      |    1 +
 .../apache/hugegraph/api/schema/EdgeLabelAPI.java  |    1 +
 .../apache/hugegraph/api/schema/IndexLabelAPI.java |    1 +
 .../hugegraph/api/schema/PropertyKeyAPI.java       |    4 +-
 .../hugegraph/api/schema/VertexLabelAPI.java       |    1 +
 .../org/apache/hugegraph/api/task/TaskAPI.java     |   12 +-
 .../apache/hugegraph/api/task/TasksWithPage.java   |    1 +
 .../apache/hugegraph/api/traverser/EdgesAPI.java   |    1 +
 .../hugegraph/api/traverser/NeighborRankAPI.java   |    5 +-
 .../hugegraph/api/traverser/PersonalRankAPI.java   |   21 +-
 .../hugegraph/api/traverser/VerticesAPI.java       |    1 +
 .../hugegraph/api/variables/VariablesAPI.java      |    1 +
 .../org/apache/hugegraph/client/RestClient.java    |    9 +-
 .../org/apache/hugegraph/driver/GraphManager.java  |   13 +-
 .../apache/hugegraph/driver/TraverserManager.java  |   30 +-
 .../exception/InvalidResponseException.java        |    5 +-
 .../hugegraph/exception/ServerException.java       |    5 +-
 .../hugegraph/serializer/PathDeserializer.java     |    1 +
 .../serializer/direct/HBaseSerializer.java         |    4 +-
 .../serializer/direct/RocksDBSerializer.java       |    2 +-
 .../serializer/direct/reuse/BytesDemo.java         |   67 +-
 .../serializer/direct/util/BytesBuffer.java        |   68 +-
 .../hugegraph/serializer/direct/util/LZ4Util.java  |    5 +-
 .../direct/util/SplicingIdGenerator.java           |   18 +-
 .../apache/hugegraph/structure/GraphElement.java   |    1 +
 .../java/org/apache/hugegraph/structure/Task.java  |    1 +
 .../apache/hugegraph/structure/auth/Access.java    |    1 +
 .../hugegraph/structure/auth/AuthElement.java      |    1 +
 .../apache/hugegraph/structure/auth/Belong.java    |    1 +
 .../org/apache/hugegraph/structure/auth/Group.java |    1 +
 .../hugegraph/structure/auth/HugeResource.java     |    1 +
 .../apache/hugegraph/structure/auth/Project.java   |    1 +
 .../apache/hugegraph/structure/auth/Target.java    |    1 +
 .../org/apache/hugegraph/structure/auth/User.java  |    1 +
 .../hugegraph/structure/constant/Cardinality.java  |    4 +-
 .../hugegraph/structure/constant/DataType.java     |    6 +-
 .../hugegraph/structure/constant/Direction.java    |    4 +-
 .../hugegraph/structure/constant/Frequency.java    |    4 +-
 .../structure/constant/GraphAttachable.java        |    2 +-
 .../hugegraph/structure/constant/GraphMode.java    |    4 +-
 .../structure/constant/GraphReadMode.java          |    2 +-
 .../hugegraph/structure/constant/IdStrategy.java   |    4 +-
 .../hugegraph/structure/constant/IndexType.java    |    4 +-
 .../hugegraph/structure/constant/WriteType.java    |    4 +-
 .../structure/graph/BatchEdgeRequest.java          |    3 +-
 .../structure/graph/BatchOlapPropertyRequest.java  |    1 +
 .../structure/graph/BatchVertexRequest.java        |    3 +-
 .../org/apache/hugegraph/structure/graph/Edge.java |   26 +-
 .../apache/hugegraph/structure/graph/Pageable.java |    1 +
 .../org/apache/hugegraph/structure/graph/Path.java |    1 +
 .../apache/hugegraph/structure/graph/Vertex.java   |    6 +-
 .../hugegraph/structure/gremlin/Response.java      |    1 +
 .../hugegraph/structure/gremlin/ResultSet.java     |    3 +-
 .../hugegraph/structure/schema/BuilderProxy.java   |    6 +-
 .../hugegraph/structure/schema/IndexLabel.java     |    1 +
 .../hugegraph/structure/schema/PropertyKey.java    |    1 +
 .../hugegraph/structure/schema/SchemaLabel.java    |    1 +
 .../hugegraph/structure/schema/VertexLabel.java    |    1 +
 .../structure/traverser/CountRequest.java          |    1 +
 .../structure/traverser/CrosspointsRequest.java    |    1 +
 .../structure/traverser/CustomizedCrosspoints.java |    1 +
 .../traverser/CustomizedPathsRequest.java          |    1 +
 .../hugegraph/structure/traverser/EdgeStep.java    |    1 +
 .../structure/traverser/FusiformSimilarity.java    |    1 +
 .../traverser/FusiformSimilarityRequest.java       |    1 +
 .../hugegraph/structure/traverser/Kneighbor.java   |    1 +
 .../structure/traverser/KneighborRequest.java      |    9 +-
 .../apache/hugegraph/structure/traverser/Kout.java |    1 +
 .../hugegraph/structure/traverser/KoutRequest.java |    1 +
 .../traverser/MultiNodeShortestPathRequest.java    |    5 +-
 .../structure/traverser/PathsRequest.java          |    1 +
 .../structure/traverser/PathsWithVertices.java     |    1 +
 .../structure/traverser/RepeatEdgeStep.java        |    3 +-
 .../SingleSourceJaccardSimilarityRequest.java      |    5 +-
 .../structure/traverser/TemplatePathsRequest.java  |    9 +-
 .../structure/traverser/VerticesArgs.java          |    2 +-
 .../structure/traverser/WeightedPath.java          |    1 +
 .../structure/traverser/WeightedPaths.java         |    1 +
 .../java/org/apache/hugegraph/util/CommonUtil.java |    2 -
 .../java/org/apache/hugegraph/util/IdUtil.java     |    4 +-
 .../java/org/apache/hugegraph/util/JsonUtil.java   |    1 +
 .../apache/hugegraph/util/SplicingIdGenerator.java |   18 +-
 .../apache/hugegraph/version/ClientVersion.java    |    3 +-
 .../java/org/apache/hugegraph/BaseClientTest.java  |    1 +
 .../org/apache/hugegraph/api/ApiTestSuite.java     |   83 +-
 .../hugegraph/api/BatchUpdateElementApiTest.java   |    3 +-
 .../java/org/apache/hugegraph/api/EdgeApiTest.java |    8 +-
 .../org/apache/hugegraph/api/EdgeLabelApiTest.java |   37 +-
 .../org/apache/hugegraph/api/GraphsApiTest.java    |    7 +-
 .../apache/hugegraph/api/IndexLabelApiTest.java    |   21 +-
 .../apache/hugegraph/api/PropertyKeyApiTest.java   |    3 +-
 .../org/apache/hugegraph/api/SchemaApiTest.java    |    2 +-
 .../java/org/apache/hugegraph/api/TaskApiTest.java |   21 +-
 .../org/apache/hugegraph/api/VariablesApiTest.java |    4 +-
 .../org/apache/hugegraph/api/VertexApiTest.java    |   17 +-
 .../apache/hugegraph/api/VertexLabelApiTest.java   |   17 +-
 .../apache/hugegraph/api/auth/ProjectApiTest.java  |    1 +
 .../hugegraph/functional/AuthManagerTest.java      |    1 +
 .../apache/hugegraph/functional/EdgeLabelTest.java |    1 +
 .../org/apache/hugegraph/functional/EdgeTest.java  |    1 +
 .../apache/hugegraph/functional/FuncTestSuite.java |   28 +-
 .../hugegraph/functional/HugeClientHttpsTest.java  |    4 +-
 .../hugegraph/functional/IndexLabelTest.java       |    1 +
 .../hugegraph/functional/MetricsManagerTest.java   |    1 +
 .../hugegraph/functional/PropertyKeyTest.java      |    1 +
 .../hugegraph/functional/VertexLabelTest.java      |    1 +
 .../apache/hugegraph/functional/VertexTest.java    |    1 +
 .../java/org/apache/hugegraph/testutil/Utils.java  |   22 +-
 .../hugegraph/unit/BatchElementRequestTest.java    |    1 +
 .../org/apache/hugegraph/unit/CommonUtilTest.java  |    1 +
 .../org/apache/hugegraph/unit/IndexLabelTest.java  |   14 +-
 .../apache/hugegraph/unit/PathSerializerTest.java  |   60 +-
 .../org/apache/hugegraph/unit/RestResultTest.java  |  731 +++---
 .../org/apache/hugegraph/unit/UnitTestSuite.java   |   18 +-
 .../hugegraph/unit/VertexSerializerTest.java       |   11 +-
 hugegraph-dist/release-docs/LICENSE                |   50 +
 hugegraph-dist/release-docs/NOTICE                 |   22 +
 ...ircompressor.txt  => LICENSE-aircompressor.txt} |    0
 ...SE-flatbuffers.txt  => LICENSE-flatbuffers.txt} |    0
 .../{LICENSE-hppc.txt  => LICENSE-hppc.txt}        |    0
 ...njection-api.txt  => LICENSE-injection-api.txt} |    0
 ...{LICENSE-jcodings.txt  => LICENSE-jcodings.txt} |    0
 ...ICENSE-joda-time.txt  => LICENSE-joda-time.txt} |    0
 .../{LICENSE-jsonp.txt  => LICENSE-jsonp.txt}      |    0
 ...eeten-extra.txt  => LICENSE-threeten-extra.txt} |    0
 .../{LICENSE-xz-java.txt  => LICENSE-xz-java.txt}  |    0
 .../fe-licenses/LICENSE-@types-classnames.txt      |   21 +
 .../fe-licenses/LICENSE-@types-codemirror.txt      |    8 +
 .../licenses/fe-licenses/LICENSE-@types-d3.txt     |    8 +
 .../fe-licenses/LICENSE-@types-file-saver.txt      |    8 +
 .../licenses/fe-licenses/LICENSE-@types-jest.txt   |    8 +
 .../fe-licenses/LICENSE-@types-lodash-es.txt       |    8 +
 .../licenses/fe-licenses/LICENSE-@types-node.txt   |    8 +
 .../fe-licenses/LICENSE-@types-react-dom.txt       |    8 +
 .../LICENSE-@types-react-highlight-words.txt       |    8 +
 .../licenses/fe-licenses/LICENSE-@types-react.txt  |    8 +
 .../licenses/fe-licenses/LICENSE-@types-uuid.txt   |    8 +
 .../fe-licenses/LICENSE-@types-validator.txt       |    8 +
 .../licenses/fe-licenses/LICENSE-antd.txt          |   22 +
 .../licenses/fe-licenses/LICENSE-axios.txt         |    7 +
 .../LICENSE-classnames.txt}                        |    2 +-
 .../LICENSE-codemirror.txt}                        |    4 +-
 .../licenses/fe-licenses/LICENSE-customize-cra.txt |    7 +
 .../licenses/fe-licenses/LICENSE-file-saver.txt    |    9 +
 .../licenses/fe-licenses/LICENSE-framer-motion.txt |    9 +
 .../LICENSE-i18next.txt}                           |    2 +-
 .../licenses/fe-licenses/LICENSE-less-loader.txt   |   20 +
 .../licenses/fe-licenses/LICENSE-less.txt          |  177 ++
 .../licenses/fe-licenses/LICENSE-lodash-es.txt     |   49 +
 .../LICENSE-mobx-react.txt}                        |    2 +-
 .../LICENSE-mobx.txt}                              |    2 +-
 .../licenses/fe-licenses/LICENSE-prettier.txt      |    7 +
 .../LICENSE-react-app-rewired.txt}                 |    2 +-
 .../LICENSE-react-dnd-html5-backend.txt}           |    2 +-
 .../LICENSE-react-dnd.txt}                         |    2 +-
 .../LICENSE-react-dom.txt}                         |    2 +-
 .../LICENSE-react-highlight-words.txt}             |    3 +-
 .../LICENSE-react-i18next.txt}                     |    3 +-
 .../LICENSE-react-json-view.txt}                   |    4 +-
 .../LICENSE-react-popper-tooltip.txt}              |    4 +-
 .../LICENSE-react-scripts.txt}                     |    2 +-
 .../LICENSE-react.txt}                             |    2 +-
 .../LICENSE-stylelint-config-standard.txt}         |   21 +-
 .../LICENSE-stylelint.txt}                         |   21 +-
 .../licenses/fe-licenses/LICENSE-typescript.txt    |   55 +
 .../licenses/fe-licenses/LICENSE-uuid.txt          |    9 +
 .../licenses/fe-licenses/LICENSE-validator.txt     |   20 +
 .../LICENSE-vis-network.txt}                       |    2 +-
 .../licenses/fe-licenses/LICENSE-wouter.txt        |    5 +
 .../scripts/dependency/known-dependencies.txt      |    5 +-
 hugegraph-hubble/yarn.lock                         | 2348 --------------------
 hugegraph-loader/pom.xml                           |    8 +
 .../hugegraph/loader/mapping/LoadMapping.java      |    1 -
 .../loader/test/functional/FileLoadTest.java       |   19 +
 .../schema.groovy                                  |    0
 .../src/test/resources/mapping_v2/struct.json      |   22 +
 184 files changed, 1506 insertions(+), 3178 deletions(-)
 rename hugegraph-dist/release-docs/licenses/{LICENSE-aircompressor.txt  => LICENSE-aircompressor.txt} (100%)
 rename hugegraph-dist/release-docs/licenses/{LICENSE-flatbuffers.txt  => LICENSE-flatbuffers.txt} (100%)
 rename hugegraph-dist/release-docs/licenses/{LICENSE-hppc.txt  => LICENSE-hppc.txt} (100%)
 rename hugegraph-dist/release-docs/licenses/{LICENSE-injection-api.txt  => LICENSE-injection-api.txt} (100%)
 copy hugegraph-dist/release-docs/licenses/{LICENSE-jcodings.txt  => LICENSE-jcodings.txt} (100%)
 rename hugegraph-dist/release-docs/licenses/{LICENSE-joda-time.txt  => LICENSE-joda-time.txt} (100%)
 rename hugegraph-dist/release-docs/licenses/{LICENSE-jsonp.txt  => LICENSE-jsonp.txt} (100%)
 rename hugegraph-dist/release-docs/licenses/{LICENSE-threeten-extra.txt  => LICENSE-threeten-extra.txt} (100%)
 rename hugegraph-dist/release-docs/licenses/{LICENSE-xz-java.txt  => LICENSE-xz-java.txt} (100%)
 create mode 100644 hugegraph-dist/release-docs/licenses/fe-licenses/LICENSE-@types-classnames.txt
 create mode 100644 hugegraph-dist/release-docs/licenses/fe-licenses/LICENSE-@types-codemirror.txt
 create mode 100644 hugegraph-dist/release-docs/licenses/fe-licenses/LICENSE-@types-d3.txt
 create mode 100644 hugegraph-dist/release-docs/licenses/fe-licenses/LICENSE-@types-file-saver.txt
 create mode 100644 hugegraph-dist/release-docs/licenses/fe-licenses/LICENSE-@types-jest.txt
 create mode 100644 hugegraph-dist/release-docs/licenses/fe-licenses/LICENSE-@types-lodash-es.txt
 create mode 100644 hugegraph-dist/release-docs/licenses/fe-licenses/LICENSE-@types-node.txt
 create mode 100644 hugegraph-dist/release-docs/licenses/fe-licenses/LICENSE-@types-react-dom.txt
 create mode 100644 hugegraph-dist/release-docs/licenses/fe-licenses/LICENSE-@types-react-highlight-words.txt
 create mode 100644 hugegraph-dist/release-docs/licenses/fe-licenses/LICENSE-@types-react.txt
 create mode 100644 hugegraph-dist/release-docs/licenses/fe-licenses/LICENSE-@types-uuid.txt
 create mode 100644 hugegraph-dist/release-docs/licenses/fe-licenses/LICENSE-@types-validator.txt
 create mode 100644 hugegraph-dist/release-docs/licenses/fe-licenses/LICENSE-antd.txt
 create mode 100644 hugegraph-dist/release-docs/licenses/fe-licenses/LICENSE-axios.txt
 copy hugegraph-dist/release-docs/licenses/{LICENSE-SimpleFlatMapper.txt => fe-licenses/LICENSE-classnames.txt} (97%)
 copy hugegraph-dist/release-docs/licenses/{LICENSE-animal-sniffer.txt => fe-licenses/LICENSE-codemirror.txt} (92%)
 create mode 100644 hugegraph-dist/release-docs/licenses/fe-licenses/LICENSE-customize-cra.txt
 create mode 100644 hugegraph-dist/release-docs/licenses/fe-licenses/LICENSE-file-saver.txt
 create mode 100644 hugegraph-dist/release-docs/licenses/fe-licenses/LICENSE-framer-motion.txt
 copy hugegraph-dist/release-docs/licenses/{LICENSE-SimpleFlatMapper.txt => fe-licenses/LICENSE-i18next.txt} (97%)
 create mode 100644 hugegraph-dist/release-docs/licenses/fe-licenses/LICENSE-less-loader.txt
 create mode 100644 hugegraph-dist/release-docs/licenses/fe-licenses/LICENSE-less.txt
 create mode 100644 hugegraph-dist/release-docs/licenses/fe-licenses/LICENSE-lodash-es.txt
 copy hugegraph-dist/release-docs/licenses/{LICENSE-SimpleFlatMapper.txt => fe-licenses/LICENSE-mobx-react.txt} (96%)
 copy hugegraph-dist/release-docs/licenses/{LICENSE-SimpleFlatMapper.txt => fe-licenses/LICENSE-mobx.txt} (96%)
 create mode 100644 hugegraph-dist/release-docs/licenses/fe-licenses/LICENSE-prettier.txt
 copy hugegraph-dist/release-docs/licenses/{LICENSE-joni.txt => fe-licenses/LICENSE-react-app-rewired.txt} (97%)
 copy hugegraph-dist/release-docs/licenses/{LICENSE-SimpleFlatMapper.txt => fe-licenses/LICENSE-react-dnd-html5-backend.txt} (97%)
 copy hugegraph-dist/release-docs/licenses/{LICENSE-SimpleFlatMapper.txt => fe-licenses/LICENSE-react-dnd.txt} (97%)
 copy hugegraph-dist/release-docs/licenses/{LICENSE-joni.txt => fe-licenses/LICENSE-react-dom.txt} (95%)
 copy hugegraph-dist/release-docs/licenses/{LICENSE-SimpleFlatMapper.txt => fe-licenses/LICENSE-react-highlight-words.txt} (96%)
 copy hugegraph-dist/release-docs/licenses/{LICENSE-SimpleFlatMapper.txt => fe-licenses/LICENSE-react-i18next.txt} (97%)
 copy hugegraph-dist/release-docs/licenses/{LICENSE-animal-sniffer.txt => fe-licenses/LICENSE-react-json-view.txt} (95%)
 copy hugegraph-dist/release-docs/licenses/{LICENSE-animal-sniffer.txt => fe-licenses/LICENSE-react-popper-tooltip.txt} (92%)
 copy hugegraph-dist/release-docs/licenses/{LICENSE-joni.txt => fe-licenses/LICENSE-react-scripts.txt} (96%)
 copy hugegraph-dist/release-docs/licenses/{LICENSE-joni.txt => fe-licenses/LICENSE-react.txt} (95%)
 copy hugegraph-dist/release-docs/licenses/{LICENSE-jcodings.txt  => fe-licenses/LICENSE-stylelint-config-standard.txt} (51%)
 rename hugegraph-dist/release-docs/licenses/{LICENSE-jcodings.txt  => fe-licenses/LICENSE-stylelint.txt} (50%)
 create mode 100644 hugegraph-dist/release-docs/licenses/fe-licenses/LICENSE-typescript.txt
 create mode 100644 hugegraph-dist/release-docs/licenses/fe-licenses/LICENSE-uuid.txt
 create mode 100644 hugegraph-dist/release-docs/licenses/fe-licenses/LICENSE-validator.txt
 copy hugegraph-dist/release-docs/licenses/{LICENSE-SimpleFlatMapper.txt => fe-licenses/LICENSE-vis-network.txt} (96%)
 create mode 100644 hugegraph-dist/release-docs/licenses/fe-licenses/LICENSE-wouter.txt
 delete mode 100644 hugegraph-hubble/yarn.lock
 copy hugegraph-loader/src/test/resources/{bz2_compress_file => mapping_v2}/schema.groovy (100%)
 create mode 100644 hugegraph-loader/src/test/resources/mapping_v2/struct.json