Skip to content

Commit 6cff7fc

Browse files
VGalaxiesimbajin
andauthored
doc: update hugegraph-1.5.0-release-notes.md (#383)
--------- Co-authored-by: imbajin <jin@apache.org>
1 parent 5e7803c commit 6cff7fc

File tree

4 files changed

+300
-16
lines changed

4 files changed

+300
-16
lines changed

content/cn/docs/changelog/hugegraph-1.3.0-release-notes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,6 @@ PS: 未来 HugeGraph 组件的版本会朝着 `Java 11 -> Java 17 -> Java 21`
100100

101101
* chore: disable clean flatten for deploy ([#141](https://github.com/apache/incubator-hugegraph-commons/pull/141))
102102

103-
### Release Details
104-
105103
### hugegraph-ai
106104

107105
这是 hugegraph-ai 的第一个发布版本,包含了多种特性,其中包括初始化的 Python 客户端、通过 LLM 构建知识图谱的能力,
@@ -142,6 +140,8 @@ PS: 未来 HugeGraph 组件的版本会朝着 `Java 11 -> Java 17 -> Java 21`
142140
* chore: add release scripts ([#33](https://github.com/apache/incubator-hugegraph-ai/pull/33))
143141
* chore: change file chmod 755 ([#34](https://github.com/apache/incubator-hugegraph-ai/pull/34))
144142

143+
### 发布细节
144+
145145
Please check the release details/contributor in each repository:
146146

147147
- [Server Release Notes](https://github.com/apache/incubator-hugegraph/releases)

content/cn/docs/changelog/hugegraph-1.5.0-release-notes.md

Lines changed: 148 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,157 @@ weight: 5
66

77
> WIP: This doc is under construction, please wait for the final version (BETA)
88
9+
### 运行环境/版本说明
10+
11+
1. **1.5.0**版开始, `hugegraph` 相关组件仅支持 Java 11 编译/运行环境
12+
13+
PS: 未来 HugeGraph 组件的版本会朝着 `Java 11 -> Java 17 -> Java 21` 演进
14+
15+
### hugegraph
16+
17+
> 本版本新增了大量功能并进行了多项优化,尤其是针对自控分布式版本新后端 HStore (Raft + RocksDB) 的实现支持,欢迎试用反馈
18+
19+
#### API Changes
20+
21+
- **BREAKING CHANGE**: Support "parent & child" `EdgeLabel` type [#2662](https://github.com/apache/incubator-hugegraph/pull/2662)
22+
23+
#### Feature Changes
24+
25+
- Integrate `pd-grpc`, `pd-common`, and `pd-client` [#2498](https://github.com/apache/incubator-hugegraph/pull/2498)
26+
- Integrate `store-grpc`, `store-common`, and `store-client` [#2476](https://github.com/apache/incubator-hugegraph/pull/2476)
27+
- Integrate `store-rocksdb` submodule [#2513](https://github.com/apache/incubator-hugegraph/pull/2513)
28+
- Integrate `pd-core` into HugeGraph [#2478](https://github.com/apache/incubator-hugegraph/pull/2478)
29+
- Integrate `pd-service` into HugeGraph [#2528](https://github.com/apache/incubator-hugegraph/pull/2528)
30+
- Integrate `pd-dist` into HugeGraph and add core tests, client tests, and REST tests for PD [#2532](https://github.com/apache/incubator-hugegraph/pull/2532)
31+
- Integrate `server-hstore` into HugeGraph [#2534](https://github.com/apache/incubator-hugegraph/pull/2534)
32+
- Integrate `store-core` submodule [#2548](https://github.com/apache/incubator-hugegraph/pull/2548)
33+
- Integrate `store-node` submodule [#2537](https://github.com/apache/incubator-hugegraph/pull/2537)
34+
- Support new backend Hstore [#2560](https://github.com/apache/incubator-hugegraph/pull/2560)
35+
- Support Docker deployment for PD and Store [#2573](https://github.com/apache/incubator-hugegraph/pull/2573)
36+
- Add a tool method `encode` [#2647](https://github.com/apache/incubator-hugegraph/pull/2647)
37+
- Add basic `MiniCluster` module for distributed system testing [#2615](https://github.com/apache/incubator-hugegraph/pull/2615)
38+
- Support disabling RocksDB auto-compaction via configuration [#2586](https://github.com/apache/incubator-hugegraph/pull/2586)
39+
40+
#### Bug Fixes
41+
42+
- Switch RocksDB backend to memory when executing Gremlin examples [#2518](https://github.com/apache/incubator-hugegraph/pull/2518)
43+
- Avoid overriding backend config in Gremlin example scripts [#2519](https://github.com/apache/incubator-hugegraph/pull/2519)
44+
- Update resource references [#2522](https://github.com/apache/incubator-hugegraph/pull/2522)
45+
- Randomly generate default values [#2568](https://github.com/apache/incubator-hugegraph/pull/2568)
46+
- Update build artifact path for Docker deployment [#2590](https://github.com/apache/incubator-hugegraph/pull/2590)
47+
- Ensure thread safety for range attributes in PD [#2641](https://github.com/apache/incubator-hugegraph/pull/2641)
48+
- Correct server Docker copy source path [#2637](https://github.com/apache/incubator-hugegraph/pull/2637)
49+
- Fix JRaft Timer Metrics bug in Hstore [#2602](https://github.com/apache/incubator-hugegraph/pull/2602)
50+
- Enable JRaft MaxBodySize configuration [#2633](https://github.com/apache/incubator-hugegraph/pull/2633)
51+
52+
#### Option Changes
53+
54+
- Mark old raft configs as deprecated [#2661](https://github.com/apache/incubator-hugegraph/pull/2661)
55+
- Enlarge bytes write limit and remove `big` parameter when encoding/decoding string ID length [#2622](https://github.com/apache/incubator-hugegraph/pull/2622)
56+
57+
#### Other Changes
58+
59+
- Add Swagger-UI LICENSE files [#2495](https://github.com/apache/incubator-hugegraph/pull/2495)
60+
- Translate CJK comments and punctuations to English across multiple modules [#2536](https://github.com/apache/incubator-hugegraph/pull/2536), [#2623](https://github.com/apache/incubator-hugegraph/pull/2625), [#2645](https://github.com/apache/incubator-hugegraph/pull/2645)
61+
- Introduce `install-dist` module in root [#2552](https://github.com/apache/incubator-hugegraph/pull/2552)
62+
- Enable up-to-date checks for UI (CI) [#2609](https://github.com/apache/incubator-hugegraph/pull/2609)
63+
- Minor improvements for POM properties [#2574](https://github.com/apache/incubator-hugegraph/pull/2574)
64+
- Migrate HugeGraph Commons [#2628](https://github.com/apache/incubator-hugegraph/pull/2628)
65+
- Tar source and binary packages for HugeGraph with PD-Store [#2594](https://github.com/apache/incubator-hugegraph/pull/2594)
66+
- Refactor: Enhance cache invalidation of the partition → leader shard in `ClientCache` [#2588](https://github.com/apache/incubator-hugegraph/pull/2588)
67+
- Refactor: Remove redundant properties in `LogMeta` and `PartitionMeta` [#2598](https://github.com/apache/incubator-hugegraph/pull/2598)
68+
69+
### hugegraph-toolchain
70+
71+
#### API Changes
72+
- Support "parent & child" `EdgeLabel` type [#624](https://github.com/apache/incubator-hugegraph-toolchain/pull/624)
73+
74+
#### Feature Changes
75+
- Support English interface & add a script/doc for it in Hubble [#631](https://github.com/apache/incubator-hugegraph-toolchain/pull/631)
76+
77+
#### Bug Fixes
78+
- Serialize source and target label for non-father EdgeLabel [#628](https://github.com/apache/incubator-hugegraph-toolchain/pull/628)
79+
- Encode/decode Chinese error after building Hubble package [#627](https://github.com/apache/incubator-hugegraph-toolchain/pull/627)
80+
- Configure IPv4 to fix timeout of `yarn install` in Hubble [#636](https://github.com/apache/incubator-hugegraph-toolchain/pull/636)
81+
- Remove debugging output to speed up the frontend construction in Hubble [#638](https://github.com/apache/incubator-hugegraph-toolchain/pull/638)
82+
83+
#### Other Changes
84+
- Bump `express` from 4.18.2 to 4.19.2 in Hubble Frontend [#598](https://github.com/apache/incubator-hugegraph-toolchain/pull/598)
85+
- Make IDEA support IssueNavigationLink [#600](https://github.com/apache/incubator-hugegraph-toolchain/pull/600)
86+
- Update `yarn.lock` for Hubble [#605](https://github.com/apache/incubator-hugegraph-toolchain/pull/605)
87+
- Introduce `editorconfig-maven-plugin` for verifying code style defined in `.editorconfig` [#614](https://github.com/apache/incubator-hugegraph-toolchain/pull/614)
88+
- Upgrade distribution version to 1.5.0 [#639](https://github.com/apache/incubator-hugegraph-toolchain/pull/639)
89+
90+
#### Documentation Changes
91+
- Clarify the contributing guidelines [#604](https://github.com/apache/incubator-hugegraph-toolchain/pull/604)
92+
- Enhance the README file for Hubble [#613](https://github.com/apache/incubator-hugegraph-toolchain/pull/613)
93+
- Update README style referring to the server's style [#615](https://github.com/apache/incubator-hugegraph-toolchain/pull/615)
94+
95+
### hugegraph-ai
96+
97+
#### API Changes
98+
99+
- Added local LLM API and version API. [#41](https://github.com/apache/incubator-hugegraph-ai/pull/41), [#44](https://github.com/apache/incubator-hugegraph-ai/pull/44)
100+
- Implemented new API and optimized code structure. [#63](https://github.com/apache/incubator-hugegraph-ai/pull/63)
101+
- Support for graphspace and refactored all APIs. [#67](https://github.com/apache/incubator-hugegraph-ai/pull/67)
102+
103+
#### Feature Changes
104+
105+
- Added openai's apibase configuration and asynchronous methods in RAG web demo. [#41](https://github.com/apache/incubator-hugegraph-ai/pull/41), [#58](https://github.com/apache/incubator-hugegraph-ai/pull/58)
106+
- Support for multi reranker and enhanced UI. [#73](https://github.com/apache/incubator-hugegraph-ai/pull/73)
107+
- Node embedding, node classify, and graph classify with models based on DGL. [#83](https://github.com/apache/incubator-hugegraph-ai/pull/83)
108+
- Graph learning algorithm implementation (10+). [#102](https://github.com/apache/incubator-hugegraph-ai/pull/102)
109+
- Support for any openai-style API (standard). [#95](https://github.com/apache/incubator-hugegraph-ai/pull/95)
110+
111+
#### Bug Fixes
112+
113+
- Fixed fusiform_similarity test in traverser for server 1.3.0. [#37](https://github.com/apache/incubator-hugegraph-ai/pull/37)
114+
- Avoid generating config twice and corrected e_cache type. [#56](https://github.com/apache/incubator-hugegraph-ai/pull/56), [#117](https://github.com/apache/incubator-hugegraph-ai/pull/117)
115+
- Fixed null value detection on vid attributes. [#115](https://github.com/apache/incubator-hugegraph-ai/pull/115)
116+
- Handled profile regenerate error. [#98](https://github.com/apache/incubator-hugegraph-ai/pull/98)
117+
118+
#### Option Changes
119+
120+
- Added auth for fastapi and gradio. [#70](https://github.com/apache/incubator-hugegraph-ai/pull/70)
121+
- Support for multiple property types and importing graph from the entire doc. [#84](https://github.com/apache/incubator-hugegraph-ai/pull/84)
122+
123+
#### Other Changes
124+
125+
- Reformatted documentation and updated README. [#36](https://github.com/apache/incubator-hugegraph-ai/pull/36), [#81](https://github.com/apache/incubator-hugegraph-ai/pull/81)
126+
- Introduced a black for code format in GitHub actions. [#47](https://github.com/apache/incubator-hugegraph-ai/pull/47)
127+
- Updated dependencies and environment preparations. [#45](https://github.com/apache/incubator-hugegraph-ai/pull/45), [#65](https://github.com/apache/incubator-hugegraph-ai/pull/65)
128+
- Enhanced user-friendly README. [#82](https://github.com/apache/incubator-hugegraph-ai/pull/82)
129+
130+
### hugegraph-computer
131+
132+
#### Feature Changes
133+
134+
- Support Single Source Shortest Path Algorithm [#285](https://github.com/apache/incubator-hugegraph-computer/pull/285)
135+
- Support Output Filter [#303](https://github.com/apache/incubator-hugegraph-computer/pull/303)
136+
137+
#### Bug Fixes
138+
139+
- Fix: base-ref/head-ref Missed in Dependency-Review on Schedule Push [#304](https://github.com/apache/incubator-hugegraph-computer/pull/304)
140+
141+
#### Option Changes
142+
143+
- Refactor(core): StringEncoding [#300](https://github.com/apache/incubator-hugegraph-computer/pull/300)
144+
145+
#### Other Changes
146+
147+
- Improve(algorithm): Random Walk Vertex Inactive [#301](https://github.com/apache/incubator-hugegraph-computer/pull/301)
148+
- Upgrade Version to 1.3.0 [#305](https://github.com/apache/incubator-hugegraph-computer/pull/305)
149+
- Doc(readme): Clarify the Contributing Guidelines [#306](https://github.com/apache/incubator-hugegraph-computer/pull/306)
150+
- Doc(readme): Add Hyperlink to Apache 2.0 [#308](https://github.com/apache/incubator-hugegraph-computer/pull/308)
151+
- Migrate Project to Computer Directory [#310](https://github.com/apache/incubator-hugegraph-computer/pull/310)
152+
- Update for Release 1.5 [#317](https://github.com/apache/incubator-hugegraph-computer/pull/317)
153+
- Fix Path When Exporting Source Package [#319](https://github.com/apache/incubator-hugegraph-computer/pull/319)
154+
155+
### 发布细节
156+
9157
Please check the release details/contributor in each repository:
10158

11159
- [Server Release Notes](https://github.com/apache/incubator-hugegraph/releases)
12160
- [Toolchain Release Notes](https://github.com/apache/incubator-hugegraph-toolchain/releases)
13161
- [Computer Release Notes](https://github.com/apache/incubator-hugegraph-computer/releases)
14162
- [AI Release Notes](https://github.com/apache/incubator-hugegraph-ai/releases)
15-
16-
### 运行环境/版本说明
17-
18-
1. 相较于 **1.3.0****1.5.0** 及后的 `hugegraph` 仅支持 Java 11
19-
20-
PS: 未来 HugeGraph 组件的版本会朝着 `Java 11 -> Java 17 -> Java 21` 演进

content/en/docs/changelog/hugegraph-1.3.0-release-notes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,6 @@ PS: In the future, we will gradually upgrade the java version from `Java 11 -> J
104104

105105
* chore: disable clean flatten for deploy ([#141](https://github.com/apache/incubator-hugegraph-commons/pull/141))
106106

107-
### Release Details
108-
109107
### hugegraph-ai
110108

111109

@@ -152,6 +150,8 @@ and the addition of basic CI further enhance the project's robustness and develo
152150
* chore: add release scripts ([#33](https://github.com/apache/incubator-hugegraph-ai/pull/33))
153151
* chore: change file chmod 755 ([#34](https://github.com/apache/incubator-hugegraph-ai/pull/34))
154152

153+
### Release Details
154+
155155
Please check the release details/contributor in each repository:
156156

157157
- [Server Release Notes](https://github.com/apache/incubator-hugegraph/releases)

0 commit comments

Comments
 (0)