Skip to content

Commit 609d258

Browse files
committed
feat: add Redis 8.x support, update default to 7.4, mark old versions as legacy
1 parent 1a9009d commit 609d258

File tree

3 files changed

+20
-12
lines changed

3 files changed

+20
-12
lines changed

builders/redis.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ const path = require('path');
88
module.exports = {
99
name: 'redis',
1010
config: {
11-
version: '5',
12-
supported: ['7', '7.0', '6', '6.0', '5', '5.0', '4', '4.0', '2.8'],
11+
version: '7.4',
12+
supported: ['8', '8.6', '8.4', '8.2', '8.0', '7.4', '7.2', '7', '7.0', '6', '6.0', '5', '5.0', '4', '4.0', '2.8'],
13+
legacy: ['7', '7.0', '6', '6.0', '5', '5.0', '4', '4.0', '2.8'],
1314
patchesSupported: true,
1415
confSrc: path.join(__dirname, '..', 'config'),
1516
persist: false,

docs/config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Also note that the below options are in addition to the [build steps](https://do
1212
```yaml
1313
services:
1414
myservice:
15-
type: redis:5
15+
type: redis:7.4
1616
persist: false
1717
portforward: false
1818
password: ''

docs/index.md

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,22 @@ services:
1818
1919
## Supported versions
2020
21-
* [7](https://hub.docker.com/_/redis)
22-
* [7.0](https://hub.docker.com/_/redis)
23-
* [6](https://hub.docker.com/_/redis)
24-
* [6.0](https://hub.docker.com/_/redis)
25-
* **[5](https://hub.docker.com/_/redis)** **(default)**
26-
* [5.0](https://hub.docker.com/_/redis)
27-
* [4](https://hub.docker.com/_/redis)
28-
* [4.0](https://hub.docker.com/_/redis)
29-
* [2.8](https://hub.docker.com/_/redis)
21+
* [8](https://hub.docker.com/_/redis)
22+
* [8.6](https://hub.docker.com/_/redis)
23+
* [8.4](https://hub.docker.com/_/redis)
24+
* [8.2](https://hub.docker.com/_/redis)
25+
* [8.0](https://hub.docker.com/_/redis)
26+
* **[7.4](https://hub.docker.com/_/redis)** **(default)**
27+
* [7.2](https://hub.docker.com/_/redis)
28+
* [7](https://hub.docker.com/_/redis) *(legacy)*
29+
* [7.0](https://hub.docker.com/_/redis) *(legacy)*
30+
* [6](https://hub.docker.com/_/redis) *(legacy)*
31+
* [6.0](https://hub.docker.com/_/redis) *(legacy)*
32+
* [5](https://hub.docker.com/_/redis) *(legacy)*
33+
* [5.0](https://hub.docker.com/_/redis) *(legacy)*
34+
* [4](https://hub.docker.com/_/redis) *(legacy)*
35+
* [4.0](https://hub.docker.com/_/redis) *(legacy)*
36+
* [2.8](https://hub.docker.com/_/redis) *(legacy)*
3037
* [custom](https://docs.lando.dev/services/lando-3.html#overrides)
3138
3239
## Patch versions

0 commit comments

Comments
 (0)