-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update doctest client with latest v4 release (#2844)
- Loading branch information
Showing
167 changed files
with
8,132 additions
and
9,504 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Bug Report | ||
description: Tell us about something that isn't working as expected | ||
labels: [Bug] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Please enter a detailed description of your issue. If possible, please provide example code to reproduce the issue. | ||
validations: | ||
required: true | ||
- type: input | ||
id: node-js-version | ||
attributes: | ||
label: Node.js Version | ||
description: Please enter your Node.js version `node --version` | ||
- type: input | ||
id: redis-server-version | ||
attributes: | ||
label: Redis Server Version | ||
description: Please enter your Redis server version ([`INFO server`](https://redis.io/commands/info/)) | ||
- type: input | ||
id: node-redis-version | ||
attributes: | ||
label: Node Redis Version | ||
description: Please enter your node redis version `npm ls redis` | ||
- type: input | ||
id: platform | ||
attributes: | ||
label: Platform | ||
description: Please enter the platform you are using e.g. Linux, macOS, Windows | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Logs | ||
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. | ||
render: bash | ||
validations: | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: Documentation | ||
description: Any questions or issues relating to the project documentation. | ||
labels: [Documentation] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Ask your question or describe your issue here. | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Feature Request | ||
description: Suggest an idea for this project | ||
labels: [Feature] | ||
body: | ||
- type: textarea | ||
id: motivation | ||
attributes: | ||
label: Motivation | ||
description: How would Node Redis users benefit from this feature? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: basic-code-example | ||
attributes: | ||
label: Basic Code Example | ||
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. | ||
render: JavaScript | ||
validations: | ||
required: false |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name-template: 'bloom@$NEXT_PATCH_VERSION' | ||
tag-template: 'bloom@$NEXT_PATCH_VERSION' | ||
autolabeler: | ||
- label: 'chore' | ||
files: | ||
- '*.md' | ||
- '.github/*' | ||
- label: 'bug' | ||
branch: | ||
- '/bug-.+' | ||
- label: 'chore' | ||
branch: | ||
- '/chore-.+' | ||
- label: 'feature' | ||
branch: | ||
- '/feature-.+' | ||
categories: | ||
- title: 'Breaking Changes' | ||
labels: | ||
- 'breakingchange' | ||
- title: '🚀 New Features' | ||
labels: | ||
- 'feature' | ||
- 'enhancement' | ||
- title: '🐛 Bug Fixes' | ||
labels: | ||
- 'fix' | ||
- 'bugfix' | ||
- 'bug' | ||
- title: '🧰 Maintenance' | ||
label: | ||
- 'chore' | ||
- 'maintenance' | ||
- 'documentation' | ||
- 'docs' | ||
|
||
change-template: '- $TITLE (#$NUMBER)' | ||
include-paths: | ||
- 'packages/bloom' | ||
exclude-labels: | ||
- 'skip-changelog' | ||
template: | | ||
## Changes | ||
$CHANGES | ||
## Contributors | ||
We'd like to thank all the contributors who worked on this release! | ||
$CONTRIBUTORS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name-template: 'graph@$NEXT_PATCH_VERSION' | ||
tag-template: 'graph@$NEXT_PATCH_VERSION' | ||
autolabeler: | ||
- label: 'chore' | ||
files: | ||
- '*.md' | ||
- '.github/*' | ||
- label: 'bug' | ||
branch: | ||
- '/bug-.+' | ||
- label: 'chore' | ||
branch: | ||
- '/chore-.+' | ||
- label: 'feature' | ||
branch: | ||
- '/feature-.+' | ||
categories: | ||
- title: 'Breaking Changes' | ||
labels: | ||
- 'breakingchange' | ||
- title: '🚀 New Features' | ||
labels: | ||
- 'feature' | ||
- 'enhancement' | ||
- title: '🐛 Bug Fixes' | ||
labels: | ||
- 'fix' | ||
- 'bugfix' | ||
- 'bug' | ||
- title: '🧰 Maintenance' | ||
label: | ||
- 'chore' | ||
- 'maintenance' | ||
- 'documentation' | ||
- 'docs' | ||
change-template: '- $TITLE (#$NUMBER)' | ||
include-paths: | ||
- 'packages/graph' | ||
exclude-labels: | ||
- 'skip-changelog' | ||
template: | | ||
## Changes | ||
$CHANGES | ||
## Contributors | ||
We'd like to thank all the contributors who worked on this release! | ||
$CONTRIBUTORS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name-template: 'search@$NEXT_PATCH_VERSION' | ||
tag-template: 'search@$NEXT_PATCH_VERSION' | ||
autolabeler: | ||
- label: 'chore' | ||
files: | ||
- '*.md' | ||
- '.github/*' | ||
- label: 'bug' | ||
branch: | ||
- '/bug-.+' | ||
- label: 'chore' | ||
branch: | ||
- '/chore-.+' | ||
- label: 'feature' | ||
branch: | ||
- '/feature-.+' | ||
categories: | ||
- title: 'Breaking Changes' | ||
labels: | ||
- 'breakingchange' | ||
- title: '🚀 New Features' | ||
labels: | ||
- 'feature' | ||
- 'enhancement' | ||
- title: '🐛 Bug Fixes' | ||
labels: | ||
- 'fix' | ||
- 'bugfix' | ||
- 'bug' | ||
- title: '🧰 Maintenance' | ||
label: | ||
- 'chore' | ||
- 'maintenance' | ||
- 'documentation' | ||
- 'docs' | ||
|
||
change-template: '- $TITLE (#$NUMBER)' | ||
include-paths: | ||
- 'packages/search' | ||
exclude-labels: | ||
- 'skip-changelog' | ||
template: | | ||
## Changes | ||
$CHANGES | ||
## Contributors | ||
We'd like to thank all the contributors who worked on this release! | ||
$CONTRIBUTORS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name-template: 'time-series@$NEXT_PATCH_VERSION' | ||
tag-template: 'time-series@$NEXT_PATCH_VERSION' | ||
autolabeler: | ||
- label: 'chore' | ||
files: | ||
- '*.md' | ||
- '.github/*' | ||
- label: 'bug' | ||
branch: | ||
- '/bug-.+' | ||
- label: 'chore' | ||
branch: | ||
- '/chore-.+' | ||
- label: 'feature' | ||
branch: | ||
- '/feature-.+' | ||
categories: | ||
- title: 'Breaking Changes' | ||
labels: | ||
- 'breakingchange' | ||
- title: '🚀 New Features' | ||
labels: | ||
- 'feature' | ||
- 'enhancement' | ||
- title: '🐛 Bug Fixes' | ||
labels: | ||
- 'fix' | ||
- 'bugfix' | ||
- 'bug' | ||
- title: '🧰 Maintenance' | ||
label: | ||
- 'chore' | ||
- 'maintenance' | ||
- 'documentation' | ||
- 'docs' | ||
change-template: '- $TITLE (#$NUMBER)' | ||
include-paths: | ||
- 'packages/time-series' | ||
exclude-labels: | ||
- 'skip-changelog' | ||
template: | | ||
## Changes | ||
$CHANGES | ||
## Contributors | ||
We'd like to thank all the contributors who worked on this release! | ||
$CONTRIBUTORS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Release Drafter | ||
|
||
on: | ||
push: | ||
# branches to consider in the event; optional, defaults to all | ||
branches: | ||
- master | ||
|
||
jobs: | ||
|
||
update_release_draft: | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Drafts your next Release notes as Pull Requests are merged into "master" | ||
- uses: release-drafter/release-drafter@v5 | ||
with: | ||
# (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml | ||
config-name: release-drafter/bloom-config.yml | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Release Drafter | ||
|
||
on: | ||
push: | ||
# branches to consider in the event; optional, defaults to all | ||
branches: | ||
- master | ||
|
||
jobs: | ||
|
||
update_release_draft: | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Drafts your next Release notes as Pull Requests are merged into "master" | ||
- uses: release-drafter/release-drafter@v5 | ||
with: | ||
# (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml | ||
config-name: release-drafter/graph-config.yml | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
Oops, something went wrong.