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 2023/01/04 15:08:51 UTC

[incubator-hugegraph-doc] branch master updated: add client changes to release notes 1.0.0 (#178)

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

jin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph-doc.git


The following commit(s) were added to refs/heads/master by this push:
     new edaf2c24 add client changes to release notes 1.0.0 (#178)
edaf2c24 is described below

commit edaf2c243121238000e1769a8491c402796a69e2
Author: Jermy Li <je...@apache.org>
AuthorDate: Wed Jan 4 23:08:46 2023 +0800

    add client changes to release notes 1.0.0 (#178)
---
 .../docs/changelog/hugegraph-1.0.0-release-notes.md   | 14 ++++++--------
 .../docs/changelog/hugegraph-1.0.0-release-notes.md   | 19 +++++++++++--------
 2 files changed, 17 insertions(+), 16 deletions(-)

diff --git a/content/cn/docs/changelog/hugegraph-1.0.0-release-notes.md b/content/cn/docs/changelog/hugegraph-1.0.0-release-notes.md
index 9e845ba5..efff8a03 100644
--- a/content/cn/docs/changelog/hugegraph-1.0.0-release-notes.md
+++ b/content/cn/docs/changelog/hugegraph-1.0.0-release-notes.md
@@ -13,15 +13,13 @@ weight: 1
 
 ### OLTP API & Client 更新
 
-#### API 接口更新
+#### API/Client 接口更新
 
-- 支持热更新`trace`开关的 API `/exception/trace`。
-- 支持 Cypher 图查询语言。
+- 支持热更新`trace`开关的 `/exception/trace` API。
+- 支持 Cypher 图查询语言 API。
 - 支持通过 Swagger UI 接口来查看提供的 API 列表。
-
-#### Client 客户端更新
-
-- xx
+- 将各算法中 'limit' 参数的类型由 long 调整为 int。
+- 支持在 Client 端跳过 Server 对 HBase 写入数据 (Beta)。
 
 ### Core & Server
 
@@ -29,7 +27,7 @@ weight: 1
 
 - 支持 Java 11 版本。
 - 支持 2 个新的 OLTP 算法: adamic-adar 和 resource-allocation。
-- 支持 HBase 后端使用哈希 RowKey,并且允许预初始化 HBase 表.
+- 支持 HBase 后端使用哈希 RowKey,并且允许预初始化 HBase 表。
 - 支持 Cypher 图查询语言。
 - 支持集群 Master 角色的自动管理与故障转移。
 - 支持 16 个 OLAP 算法, 包括:LPA, Louvain, PageRank, BetweennessCentrality, RingsDetect等。
diff --git a/content/en/docs/changelog/hugegraph-1.0.0-release-notes.md b/content/en/docs/changelog/hugegraph-1.0.0-release-notes.md
index 2d5d2ef1..136b798d 100644
--- a/content/en/docs/changelog/hugegraph-1.0.0-release-notes.md
+++ b/content/en/docs/changelog/hugegraph-1.0.0-release-notes.md
@@ -16,27 +16,30 @@ weight: 1
 #### API Changes
 
 - feat(api): support hot set trace through /exception/trace API.
-- feat(api): support query by cypher language.
+- feat(api): support query by Cypher language.
 - feat(api): support swagger UI to viewing API.
 
 #### Client Changes
 
-- xx
+- feat(client) support Cypher query API.
+- refact(client): change 'limit' type from long to int.
+- feat(client): server bypass for hbase writing (Beta).
 
 ### Core & Server
 
 #### Feature Changes
 
-- feat: support java 11 & adapt shell/ci code.
+- feat: support Java 11.
 - feat(core): support adamic-adar & resource-allocation algorithms.
-- feat(hbase): support hash rowkey struct & pre-init tables.
-- feat(core): support query data by use cypher language.
-- feat(core): support automatic management for cluster role.
-- feat(core): support 16 OLAP algorithms, like LPA, Louvain, PageRank, BetweennessCentrality, RingsDetect.
+- feat(hbase): support hash rowkey & pre-init tables.
+- feat(core): support query by Cypher language.
+- feat(core): support automatic management and failover for cluster role.
+- feat(core): support 16 OLAP algorithms, like: LPA, Louvain, PageRank, BetweennessCentrality, RingsDetect.
 
 #### Bug Fix
 
-- fix(core): NoSuchMethodError Relations() & can't query edges by multi labels + properties.
+- fix(core): can't query edges by multi labels + properties.
+- fix(core): occasionally NoSuchMethodError Relations().
 - fix(core): limit max depth for cycle detection.
 - fix(core): traversal contains Tree step has different result.
 - fix edge batch update error.