Skip to content

Commit 53f7c51

Browse files
author
documentation-bot
committed
Updates
0 parents  commit 53f7c51

File tree

1,112 files changed

+52682
-0
lines changed

Some content is hidden

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

1,112 files changed

+52682
-0
lines changed

.deepsource.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
version = 1
2+
3+
[[analyzers]]
4+
name = "javascript"
5+
enabled = true
6+
7+
[analyzers.meta]
8+
environment = ["nodejs"]
9+
dialect = "typescript"
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Bug Report
2+
description: Tell us about something that isn't working as expected
3+
labels: [Bug]
4+
body:
5+
- type: textarea
6+
id: description
7+
attributes:
8+
label: Description
9+
description: Please enter a detailed description of your issue. If possible, please provide example code to reproduce the issue.
10+
validations:
11+
required: true
12+
- type: input
13+
id: node-js-version
14+
attributes:
15+
label: Node.js Version
16+
description: Please enter your Node.js version `node --version`
17+
- type: input
18+
id: redis-server-version
19+
attributes:
20+
label: Redis Server Version
21+
description: Please enter your Redis server version ([`INFO server`](https://redis.io/commands/info/))
22+
- type: input
23+
id: node-redis-version
24+
attributes:
25+
label: Node Redis Version
26+
description: Please enter your node redis version `npm ls redis`
27+
- type: input
28+
id: platform
29+
attributes:
30+
label: Platform
31+
description: Please enter the platform you are using e.g. Linux, macOS, Windows
32+
- type: textarea
33+
id: logs
34+
attributes:
35+
label: Logs
36+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
37+
render: bash
38+
validations:
39+
required: false
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Documentation
2+
description: Any questions or issues relating to the project documentation.
3+
labels: [Documentation]
4+
body:
5+
- type: textarea
6+
id: description
7+
attributes:
8+
label: Description
9+
description: Ask your question or describe your issue here.
10+
validations:
11+
required: true
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Feature Request
2+
description: Suggest an idea for this project
3+
labels: [Feature]
4+
body:
5+
- type: textarea
6+
id: motivation
7+
attributes:
8+
label: Motivation
9+
description: How would Node Redis users benefit from this feature?
10+
validations:
11+
required: true
12+
- type: textarea
13+
id: basic-code-example
14+
attributes:
15+
label: Basic Code Example
16+
description: Provide examples of how you imagine the API for this feature might be implemented. This will be automatically formatted into code, so no need for backticks.
17+
render: JavaScript
18+
validations:
19+
required: false

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
### Description
2+
3+
<!-- Please provide a description of the change below, e.g What was the purpose? -->
4+
<!-- Why does it matter to you? What problem are you trying to solve? -->
5+
<!-- Tag in any linked issues. -->
6+
7+
> Describe your pull request here
8+
9+
---
10+
11+
### Checklist
12+
13+
<!-- Please make sure to review and check all of these items: -->
14+
15+
- [ ] Does `npm test` pass with this change (including linting)?
16+
- [ ] Is the new or changed code fully tested?
17+
- [ ] Is a documentation update included (if this change modifies existing APIs, or introduces new ones)?
18+
19+
<!-- NOTE: these things are not required to open a PR and can be done
20+
afterwards / while the PR is open. -->
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name-template: 'bloom@$NEXT_PATCH_VERSION'
2+
tag-template: 'bloom@$NEXT_PATCH_VERSION'
3+
autolabeler:
4+
- label: 'chore'
5+
files:
6+
- '*.md'
7+
- '.github/*'
8+
- label: 'bug'
9+
branch:
10+
- '/bug-.+'
11+
- label: 'chore'
12+
branch:
13+
- '/chore-.+'
14+
- label: 'feature'
15+
branch:
16+
- '/feature-.+'
17+
categories:
18+
- title: 'Breaking Changes'
19+
labels:
20+
- 'breakingchange'
21+
- title: '🚀 New Features'
22+
labels:
23+
- 'feature'
24+
- 'enhancement'
25+
- title: '🐛 Bug Fixes'
26+
labels:
27+
- 'fix'
28+
- 'bugfix'
29+
- 'bug'
30+
- title: '🧰 Maintenance'
31+
label:
32+
- 'chore'
33+
- 'maintenance'
34+
- 'documentation'
35+
- 'docs'
36+
37+
change-template: '- $TITLE (#$NUMBER)'
38+
include-paths:
39+
- 'packages/bloom'
40+
exclude-labels:
41+
- 'skip-changelog'
42+
template: |
43+
## Changes
44+
45+
$CHANGES
46+
47+
## Contributors
48+
We'd like to thank all the contributors who worked on this release!
49+
50+
$CONTRIBUTORS
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name-template: 'graph@$NEXT_PATCH_VERSION'
2+
tag-template: 'graph@$NEXT_PATCH_VERSION'
3+
autolabeler:
4+
- label: 'chore'
5+
files:
6+
- '*.md'
7+
- '.github/*'
8+
- label: 'bug'
9+
branch:
10+
- '/bug-.+'
11+
- label: 'chore'
12+
branch:
13+
- '/chore-.+'
14+
- label: 'feature'
15+
branch:
16+
- '/feature-.+'
17+
categories:
18+
- title: 'Breaking Changes'
19+
labels:
20+
- 'breakingchange'
21+
- title: '🚀 New Features'
22+
labels:
23+
- 'feature'
24+
- 'enhancement'
25+
- title: '🐛 Bug Fixes'
26+
labels:
27+
- 'fix'
28+
- 'bugfix'
29+
- 'bug'
30+
- title: '🧰 Maintenance'
31+
label:
32+
- 'chore'
33+
- 'maintenance'
34+
- 'documentation'
35+
- 'docs'
36+
change-template: '- $TITLE (#$NUMBER)'
37+
include-paths:
38+
- 'packages/graph'
39+
exclude-labels:
40+
- 'skip-changelog'
41+
template: |
42+
## Changes
43+
44+
$CHANGES
45+
46+
## Contributors
47+
We'd like to thank all the contributors who worked on this release!
48+
49+
$CONTRIBUTORS
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name-template: 'json@$NEXT_PATCH_VERSION'
2+
tag-template: 'json@$NEXT_PATCH_VERSION'
3+
autolabeler:
4+
- label: 'chore'
5+
files:
6+
- '*.md'
7+
- '.github/*'
8+
- label: 'bug'
9+
branch:
10+
- '/bug-.+'
11+
- label: 'chore'
12+
branch:
13+
- '/chore-.+'
14+
- label: 'feature'
15+
branch:
16+
- '/feature-.+'
17+
categories:
18+
- title: 'Breaking Changes'
19+
labels:
20+
- 'breakingchange'
21+
- title: '🚀 New Features'
22+
labels:
23+
- 'feature'
24+
- 'enhancement'
25+
- title: '🐛 Bug Fixes'
26+
labels:
27+
- 'fix'
28+
- 'bugfix'
29+
- 'bug'
30+
- title: '🧰 Maintenance'
31+
label:
32+
- 'chore'
33+
- 'maintenance'
34+
- 'documentation'
35+
- 'docs'
36+
37+
change-template: '- $TITLE (#$NUMBER)'
38+
include-paths:
39+
- 'packages/json'
40+
exclude-labels:
41+
- 'skip-changelog'
42+
template: |
43+
## Changes
44+
45+
$CHANGES
46+
47+
## Contributors
48+
We'd like to thank all the contributors who worked on this release!
49+
50+
$CONTRIBUTORS
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name-template: 'search@$NEXT_PATCH_VERSION'
2+
tag-template: 'search@$NEXT_PATCH_VERSION'
3+
autolabeler:
4+
- label: 'chore'
5+
files:
6+
- '*.md'
7+
- '.github/*'
8+
- label: 'bug'
9+
branch:
10+
- '/bug-.+'
11+
- label: 'chore'
12+
branch:
13+
- '/chore-.+'
14+
- label: 'feature'
15+
branch:
16+
- '/feature-.+'
17+
categories:
18+
- title: 'Breaking Changes'
19+
labels:
20+
- 'breakingchange'
21+
- title: '🚀 New Features'
22+
labels:
23+
- 'feature'
24+
- 'enhancement'
25+
- title: '🐛 Bug Fixes'
26+
labels:
27+
- 'fix'
28+
- 'bugfix'
29+
- 'bug'
30+
- title: '🧰 Maintenance'
31+
label:
32+
- 'chore'
33+
- 'maintenance'
34+
- 'documentation'
35+
- 'docs'
36+
37+
change-template: '- $TITLE (#$NUMBER)'
38+
include-paths:
39+
- 'packages/search'
40+
exclude-labels:
41+
- 'skip-changelog'
42+
template: |
43+
## Changes
44+
45+
$CHANGES
46+
47+
## Contributors
48+
We'd like to thank all the contributors who worked on this release!
49+
50+
$CONTRIBUTORS
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name-template: 'time-series@$NEXT_PATCH_VERSION'
2+
tag-template: 'time-series@$NEXT_PATCH_VERSION'
3+
autolabeler:
4+
- label: 'chore'
5+
files:
6+
- '*.md'
7+
- '.github/*'
8+
- label: 'bug'
9+
branch:
10+
- '/bug-.+'
11+
- label: 'chore'
12+
branch:
13+
- '/chore-.+'
14+
- label: 'feature'
15+
branch:
16+
- '/feature-.+'
17+
categories:
18+
- title: 'Breaking Changes'
19+
labels:
20+
- 'breakingchange'
21+
- title: '🚀 New Features'
22+
labels:
23+
- 'feature'
24+
- 'enhancement'
25+
- title: '🐛 Bug Fixes'
26+
labels:
27+
- 'fix'
28+
- 'bugfix'
29+
- 'bug'
30+
- title: '🧰 Maintenance'
31+
label:
32+
- 'chore'
33+
- 'maintenance'
34+
- 'documentation'
35+
- 'docs'
36+
change-template: '- $TITLE (#$NUMBER)'
37+
include-paths:
38+
- 'packages/time-series'
39+
exclude-labels:
40+
- 'skip-changelog'
41+
template: |
42+
## Changes
43+
44+
$CHANGES
45+
46+
## Contributors
47+
We'd like to thank all the contributors who worked on this release!
48+
49+
$CONTRIBUTORS

0 commit comments

Comments
 (0)