forked from redis/redis
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/unstable' into add_version_sup…
…port_for_check_aof
- Loading branch information
Showing
1,135 changed files
with
111,017 additions
and
47,215 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 |
---|---|---|
@@ -1 +1 @@ | ||
codespell==2.1.0 | ||
codespell==2.2.5 |
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 |
---|---|---|
|
@@ -16,3 +16,6 @@ cancelability | |
ist | ||
statics | ||
filetest | ||
ro | ||
exat | ||
clen |
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,32 @@ | ||
# Creates and uploads a Coverity build on a schedule | ||
name: Coverity Scan | ||
on: | ||
schedule: | ||
# Run once daily, since below 500k LOC can have 21 builds per week, per https://scan.coverity.com/faq#frequency | ||
- cron: '0 0 * * *' | ||
# Support manual execution | ||
workflow_dispatch: | ||
jobs: | ||
coverity: | ||
if: github.repository == 'redis/redis' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@main | ||
- name: Download and extract the Coverity Build Tool | ||
run: | | ||
wget -q https://scan.coverity.com/download/cxx/linux64 --post-data "token=${{ secrets.COVERITY_SCAN_TOKEN }}&project=redis-unstable" -O cov-analysis-linux64.tar.gz | ||
mkdir cov-analysis-linux64 | ||
tar xzf cov-analysis-linux64.tar.gz --strip 1 -C cov-analysis-linux64 | ||
- name: Install Redis dependencies | ||
run: sudo apt install -y gcc tcl8.6 tclx procps libssl-dev | ||
- name: Build with cov-build | ||
run: cov-analysis-linux64/bin/cov-build --dir cov-int make | ||
- name: Upload the result | ||
run: | | ||
tar czvf cov-int.tgz cov-int | ||
curl \ | ||
--form project=redis-unstable \ | ||
--form email=${{ secrets.COVERITY_SCAN_EMAIL }} \ | ||
--form token=${{ secrets.COVERITY_SCAN_TOKEN }} \ | ||
--form [email protected] \ | ||
https://scan.coverity.com/builds |
Large diffs are not rendered by default.
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,22 @@ | ||
name: Reply-schemas linter | ||
|
||
on: | ||
push: | ||
paths: | ||
- 'src/commands/*.json' | ||
pull_request: | ||
paths: | ||
- 'src/commands/*.json' | ||
|
||
jobs: | ||
reply-schemas-linter: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup nodejs | ||
uses: actions/setup-node@v4 | ||
- name: Install packages | ||
run: npm install ajv | ||
- name: linter | ||
run: node ./utils/reply_schema_linter.js | ||
|
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
File renamed without changes.
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 |
---|---|---|
|
@@ -11,17 +11,17 @@ unless this is not possible or feasible with a reasonable effort. | |
|
||
| Version | Supported | | ||
| ------- | ------------------ | | ||
| 7.2.x | :white_check_mark: | | ||
| 7.0.x | :white_check_mark: | | ||
| 6.2.x | :white_check_mark: | | ||
| 6.0.x | :white_check_mark: | | ||
| < 6.0 | :x: | | ||
| < 6.2 | :x: | | ||
|
||
## Reporting a Vulnerability | ||
|
||
If you believe you’ve discovered a serious vulnerability, please contact the | ||
If you believe you've discovered a serious vulnerability, please contact the | ||
Redis core team at [email protected]. We will evaluate your report and if | ||
necessary issue a fix and an advisory. If the issue was previously undisclosed, | ||
we’ll also mention your name in the credits. | ||
we'll also mention your name in the credits. | ||
|
||
## Responsible Disclosure | ||
|
||
|
@@ -36,7 +36,7 @@ embargo on public disclosure. | |
|
||
Vendors on the list are individuals or organizations that maintain Redis | ||
distributions or provide Redis as a service, who have third party users who | ||
will benefit from the vendor’s ability to prepare for a new version or deploy a | ||
will benefit from the vendor's ability to prepare for a new version or deploy a | ||
fix early. | ||
|
||
If you believe you should be on the list, please contact us and we will | ||
|
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
Oops, something went wrong.