Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RC4 rebase master #2034

Merged
merged 37 commits into from
Apr 1, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
6bb3269
Upgrade rocksdb to 6.7.3 (#1948)
dangleptr Mar 20, 2020
806459e
Detect OS type and exit if not built in Linux (#1951)
JaySon-Huang Mar 23, 2020
01b008c
[doc] user-permission-mng (#1929)
amber-moe Mar 23, 2020
3f28146
[doc] ttl doc modification (#1939)
amber-moe Mar 23, 2020
0871c69
Let action not fail fast. (#1909)
Shylock-Hg Mar 23, 2020
6499c64
Remove removePrefix interface in kvstore (#1953)
dangleptr Mar 24, 2020
c2ea941
using admin client in MetaServiceHandler (#1864)
Mar 25, 2020
ae61c81
[doc] fix typo (#1954)
amber-moe Mar 25, 2020
7b26043
[doc]show statements (#1924)
amber-moe Mar 25, 2020
44bea75
[doc]customized dir (#1906)
amber-moe Mar 25, 2020
4008778
Fixed a bug caused by not filtering the versions of edges (#1962)
monadbobo Mar 25, 2020
498c2bb
[doc]modify job manger doc (#1957)
amber-moe Mar 26, 2020
82e4b48
Fix delete verticse (#1970)
Mar 26, 2020
1c1aae5
Fix the read performance issue after delete range with rocksdb-5.15.1…
dangleptr Mar 26, 2020
f114b21
Remove the LOG(FATAL) when encounting the unknown log type (#1978)
dangleptr Mar 26, 2020
f940ddb
1,Improve customer friendliness; 2, fixed typo error (#1980)
bright-starry-sky Mar 26, 2020
f08cc44
upgrade spark download address (#1981)
Mar 26, 2020
b14428f
fix-typo-in-doc (#1976)
Liuxue-Yang Mar 26, 2020
f81ec23
modify commands in build doc (#1969)
amber-moe Mar 26, 2020
cd6e965
modify log level (#1945)
laura-ding Mar 27, 2020
249b46c
use bloom filter, add event listener to collect stats of compaction, …
critical27 Mar 27, 2020
7d838d4
Update the interface atomicOp to support empty string (#2002)
dangleptr Mar 27, 2020
5a203d9
update to rc4 (#1968)
Mar 30, 2020
576d62e
Fixed if you execute "go from xx over *", and when there is no edge u…
monadbobo Mar 30, 2020
0297487
[doc]pr-commit-msg (#1993)
amber-moe Mar 30, 2020
a45eb66
doc:modify ttl query (#2006)
amber-moe Mar 30, 2020
6e79fe0
Let merge coverage report faster by fastcov instead of lcov. (#1943)
Shylock-Hg Mar 30, 2020
76e2529
Auto check keyword (#1922)
laura-ding Mar 30, 2020
4e434a5
Fix coredump for update if encountering bad format row (#2024)
dangleptr Mar 31, 2020
f4c8361
fixed loop depend problem for compile link (#1995)
bright-starry-sky Mar 31, 2020
f9a2a08
Check all reader is null or not before using it (#2029)
dangleptr Mar 31, 2020
9082f41
fix go without yield return errror result (#2012)
panda-sheep Mar 31, 2020
00ad503
fixed bug for delete vertex without edge (#2001)
monadbobo Mar 31, 2020
a5b7c9f
add alias for lookup (#2000)
bright-starry-sky Mar 31, 2020
70a0601
fix bug 1990/1991 (#2007)
liuyu85cn Mar 31, 2020
9fee5de
upload package to oss (#1972)
laura-ding Apr 1, 2020
7fa476e
Merge branch 'v1.0.0-rc4' into mergemaster
jude-zhu Apr 1, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[doc]pr-commit-msg (#1993)
* pr-commit-msg

* add examples

Co-authored-by: dutor <440396+dutor@users.noreply.github.com>
  • Loading branch information
amber-moe and dutor authored Mar 30, 2020
commit 0297487c09925e07ff38e0ef92e32dd853e8f181
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# PR 和 Commit Message 指南

本文档介绍的 PR 和 Commit Message 指南适用于所有 **Nebula Graph** 仓库。 所有提交至 `master` 分支的 commit 均必须遵循以下准则。

## Commit Message

```bash
<type>(<scope>): <subject> // scope is optional, subject is must

<body> // optional

<footer> // optional
```

本指南参照 [AngularJS commit 规则](https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/edit)。

- `<Type>` 描述 commit 类型。
- `<subject>` 是 commit 的简短描述。
- 如需添加详细信息,请添加空白行,然后以段落格式进行添加。

### Commit 类型

Type | Description
---------| ----------------
Feature | 新功能
Fix | 修复 bug
Doc | 文档
Style | 代码格式
Refactor | 代码重构
Test | 增加测试
Chore | 构建过程或辅助工具的变动

## Pull Request

提交 PR 时,请在标题中包含所有更改的详细信息,并确保标题简洁。

PR 标题必需简明概括更改信息。

对于显而易见的简单更改,可不必添加描述。如果 PR 涉及复杂更改,请对更改进行概述。如果 PR 修复了相关 issue,请关联。

### Pull Request 模板

```bash
What changes were proposed in this pull request?

Why are the changes needed?

Does this PR introduce any user-facing change?

How was this patch tested?
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Pull Request and Commit Message Guidelines

This document describes the commit message and Pull Request style applied to all **Nebula Graph** repositories. Every commit made *directly* to the `master` branch must follow the below guidelines.

## Commit Message

```bash
<type>(<scope>): <subject> // scope is optional, subject is must

<body> // optional

<footer> // optional
```

These rules are adopted from the [AngularJS commit convention](https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/edit).

- `<Type>` describes the kind of change that this commit is providing.
- `<subject>` is a short description of the change.
- If additional details are required, add a blank line, and then provide explanation and context in paragraph format.

### Commit Types

Type | Description
---------| ----------------
Feature | New features
Fix | Bug fix
Doc | Documentation changes
Style | Formatting, missing semi colons, ...
Refactor | Code cleanup
Test | New tests
Chore | Maintain

## Pull Request

When you submit a Pull Request, please include enough details about all changes in the title but keep it concise.

The title of a pull request must briefly describe the changes made.

For very simple changes, you can leave the description blank as there’s no need to describe what will be obvious from looking at the diff. For more complex changes, give an overview of the changes. If the PR fixes an issue, make sure to include the GitHub issue-number in the description.

### Pull Request Template

```bash
What changes were proposed in this pull request?

Why are the changes needed?

Does this PR introduce any user-facing change?

How was this patch tested?
```