Skip to content

Commit 4705235

Browse files
Merge branch 'unstable' into RELEASE_6
2 parents bf5b2d7 + d7f6bc1 commit 4705235

File tree

489 files changed

+46306
-14393
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

489 files changed

+46306
-14393
lines changed
Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
11
---
22
name: Bug report
3-
about: Create a report to help us improve
4-
title: ''
3+
about: Help us improve KeyDB by reporting a bug
4+
title: '[BUG]'
55
labels: ''
66
assignees: ''
77

88
---
99

1010
**Describe the bug**
11-
A clear and concise description of what the bug is.
1211

13-
** Log Files **
14-
These should be KeyDB logs, not syslogs or logs from your container manager. If you are reporting a crash there will be a line in your log stating:
15-
"=== KEYDB BUG REPORT START: Cut & paste starting from here ==="
12+
A short description of the bug.
1613

17-
Please copy everything after this line.
14+
**To reproduce**
1815

19-
**To Reproduce**
20-
Do you know how to reproduce this? If so please provide repro steps.
16+
Steps to reproduce the behavior and/or a minimal code sample.
17+
18+
**Expected behavior**
19+
20+
A description of what you expected to happen.
21+
22+
**Additional information**
23+
24+
Any additional information that is relevant to the problem.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Crash report
3+
about: Submit a crash report
4+
title: '[CRASH]'
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Crash report**
11+
12+
Paste the complete crash log between the quotes below. Please include a few lines from the log preceding the crash report to provide some context.
13+
14+
```
15+
```
16+
17+
**Aditional information**
18+
19+
1. OS distribution and version
20+
2. Steps to reproduce (if any)
Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
11
---
22
name: Feature request
3-
about: Suggest an idea for this project
4-
title: ''
3+
about: Suggest a feature for KeyDB
4+
title: '[NEW]'
55
labels: ''
66
assignees: ''
77

88
---
99

10-
**Is your feature request related to a problem? Please describe.**
11-
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
10+
**The problem/use-case that the feature addresses**
1211

13-
**Describe the solution you'd like**
14-
A clear and concise description of what you want to happen.
12+
A description of the problem that the feature will solve, or the use-case with which the feature will be used.
1513

16-
**Describe alternatives you've considered**
17-
A clear and concise description of any alternative solutions or features you've considered.
14+
**Description of the feature**
1815

19-
**Additional context**
20-
Add any other context or screenshots about the feature request here.
16+
A description of what you want to happen.
17+
18+
**Alternatives you've considered**
19+
20+
Any alternative solutions or features you've considered, including references to existing open and closed feature requests in this repository.
21+
22+
**Additional information**
23+
24+
Any additional information that is relevant to the feature request.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
name: Other
3+
about: Can't find the right issue type? Use this one!
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
run: |
1313
sudo apt-get update
1414
sudo apt-get -y install uuid-dev libcurl4-openssl-dev
15-
make BUILD_TLS=yes -j2
15+
make KEYDB_CFLAGS='-Werror' KEYDB_CXXFLAGS='-Werror' BUILD_TLS=yes -j2
1616
- name: gen-cert
1717
run: ./utils/gen-test-certs.sh
1818
- name: test-tls
@@ -44,7 +44,7 @@ jobs:
4444
steps:
4545
- uses: actions/checkout@v2
4646
- name: make
47-
run: make -j2
47+
run: make KEYDB_CFLAGS='-Werror' KEYDB_CXXFLAGS='-Werror' -j2
4848

4949
build-libc-malloc:
5050
runs-on: ubuntu-latest
@@ -54,5 +54,5 @@ jobs:
5454
run: |
5555
sudo apt-get update
5656
sudo apt-get -y install uuid-dev libcurl4-openssl-dev
57-
make MALLOC=libc -j2
57+
make KEYDB_CFLAGS='-Werror' KEYDB_CXXFLAGS='-Werror' MALLOC=libc -j2
5858

.github/workflows/daily.yml

Lines changed: 0 additions & 180 deletions
This file was deleted.

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ redis-check-rdb
3030
keydb-check-rdb
3131
redis-check-dump
3232
keydb-check-dump
33+
keydb-diagnostic-tool
3334
redis-cli
3435
redis-sentinel
3536
redis-server
@@ -58,3 +59,4 @@ Makefile.dep
5859
.ccls
5960
.ccls-cache/*
6061
compile_commands.json
62+
keydb.code-workspace

0 commit comments

Comments
 (0)