Skip to content

Commit 2b8cde7

Browse files
authored
Update supported version list. (redis#12488)
Add 7.2, drop 6.0 as per https://redis.io/docs/about/releases/ Also replace a few concordances of the `’` char, with standard `'`
1 parent f4549d1 commit 2b8cde7

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

CODE_OF_CONDUCT.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Examples of unacceptable behavior include:
2626
advances of any kind
2727
* Trolling, insulting or derogatory comments, and personal or political attacks
2828
* Public or private harassment
29-
* Publishing others private information, such as a physical or email
29+
* Publishing others' private information, such as a physical or email
3030
address, without their explicit permission
3131
* Other conduct which could reasonably be considered inappropriate in a
3232
professional setting
@@ -89,7 +89,7 @@ Attribution
8989
This Code of Conduct is adapted from the Contributor Covenant,
9090
version 2.0, available at
9191
https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
92-
Community Impact Guidelines were inspired by Mozillas code of conduct
92+
Community Impact Guidelines were inspired by Mozilla's code of conduct
9393
enforcement ladder.
9494
For answers to common questions about this code of conduct, see the FAQ at
9595
https://www.contributor-covenant.org/faq. Translations are available at

SECURITY.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ unless this is not possible or feasible with a reasonable effort.
1111

1212
| Version | Supported |
1313
| ------- | ------------------ |
14+
| 7.2.x | :white_check_mark: |
1415
| 7.0.x | :white_check_mark: |
1516
| 6.2.x | :white_check_mark: |
16-
| 6.0.x | :white_check_mark: |
17-
| < 6.0 | :x: |
17+
| < 6.2 | :x: |
1818

1919
## Reporting a Vulnerability
2020

21-
If you believe youve discovered a serious vulnerability, please contact the
21+
If you believe you've discovered a serious vulnerability, please contact the
2222
Redis core team at redis@redis.io. We will evaluate your report and if
2323
necessary issue a fix and an advisory. If the issue was previously undisclosed,
24-
well also mention your name in the credits.
24+
we'll also mention your name in the credits.
2525

2626
## Responsible Disclosure
2727

@@ -36,7 +36,7 @@ embargo on public disclosure.
3636

3737
Vendors on the list are individuals or organizations that maintain Redis
3838
distributions or provide Redis as a service, who have third party users who
39-
will benefit from the vendors ability to prepare for a new version or deploy a
39+
will benefit from the vendor's ability to prepare for a new version or deploy a
4040
fix early.
4141

4242
If you believe you should be on the list, please contact us and we will

tests/integration/psync2-master-restart.tcl

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ start_server {} {
1414
# Make sure the server saves an RDB on shutdown
1515
$master config set save "3600 1"
1616

17-
# Because we will test partial resync later, we dont want a timeout to cause
17+
# Because we will test partial resync later, we don't want a timeout to cause
1818
# the master-replica disconnect, then the extra reconnections will break the
1919
# sync_partial_ok stat test
2020
$master config set repl-timeout 3600

tests/modules/infotest.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ void InfoFunc(RedisModuleInfoCtx *ctx, int for_crash_report) {
2828

2929
if (for_crash_report) {
3030
RedisModule_InfoAddSection(ctx, "Klingon");
31-
RedisModule_InfoAddFieldCString(ctx, "one", "wa");
32-
RedisModule_InfoAddFieldCString(ctx, "two", "cha");
31+
RedisModule_InfoAddFieldCString(ctx, "one", "wa'");
32+
RedisModule_InfoAddFieldCString(ctx, "two", "cha'");
3333
RedisModule_InfoAddFieldCString(ctx, "three", "wej");
3434
}
3535

0 commit comments

Comments
 (0)