Skip to content

Commit 49fdb79

Browse files
authored
Update doctest client with latest v4 release (#2844)
1 parent fd7b10b commit 49fdb79

File tree

167 files changed

+8132
-9504
lines changed

Some content is hidden

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

167 files changed

+8132
-9504
lines changed

.github/ISSUE_TEMPLATE/BUG-REPORT.yml

+39
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
+11
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
+19
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/ISSUE_TEMPLATE/bug-report.md

-15
This file was deleted.

.github/ISSUE_TEMPLATE/feature-request.md

-7
This file was deleted.
+50
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
+49
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

.github/release-drafter-config.yml .github/release-drafter/json-config.yml

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name-template: 'Version $NEXT_PATCH_VERSION'
2-
tag-template: 'v$NEXT_PATCH_VERSION'
1+
name-template: 'json@$NEXT_PATCH_VERSION'
2+
tag-template: 'json@$NEXT_PATCH_VERSION'
33
autolabeler:
44
- label: 'chore'
55
files:
@@ -28,8 +28,15 @@ categories:
2828
- 'bugfix'
2929
- 'bug'
3030
- title: '🧰 Maintenance'
31-
label: 'chore'
31+
label:
32+
- 'chore'
33+
- 'maintenance'
34+
- 'documentation'
35+
- 'docs'
36+
3237
change-template: '- $TITLE (#$NUMBER)'
38+
include-paths:
39+
- 'packages/json'
3340
exclude-labels:
3441
- 'skip-changelog'
3542
template: |
+50
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
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

.github/workflows/codeql.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v4
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL

.github/workflows/documentation.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
documentation:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2.3.4
13+
- uses: actions/checkout@v4
1414
with:
1515
fetch-depth: 1
1616
- name: Use Node.js
17-
uses: actions/setup-node@v2.3.0
17+
uses: actions/setup-node@v3
1818
- name: Install Packages
1919
run: npm ci
2020
- name: Build tests tools
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Release Drafter
2+
3+
on:
4+
push:
5+
# branches to consider in the event; optional, defaults to all
6+
branches:
7+
- master
8+
9+
jobs:
10+
11+
update_release_draft:
12+
13+
permissions:
14+
contents: write
15+
pull-requests: write
16+
runs-on: ubuntu-latest
17+
steps:
18+
# Drafts your next Release notes as Pull Requests are merged into "master"
19+
- uses: release-drafter/release-drafter@v5
20+
with:
21+
# (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml
22+
config-name: release-drafter/bloom-config.yml
23+
env:
24+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Release Drafter
2+
3+
on:
4+
push:
5+
# branches to consider in the event; optional, defaults to all
6+
branches:
7+
- master
8+
9+
jobs:
10+
11+
update_release_draft:
12+
13+
permissions:
14+
contents: write
15+
pull-requests: write
16+
runs-on: ubuntu-latest
17+
steps:
18+
# Drafts your next Release notes as Pull Requests are merged into "master"
19+
- uses: release-drafter/release-drafter@v5
20+
with:
21+
# (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml
22+
config-name: release-drafter/graph-config.yml
23+
env:
24+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)