Skip to content

Commit 7922e1f

Browse files
committed
Version updates. New base image hash
1 parent 921d7f1 commit 7922e1f

File tree

7 files changed

+48
-14
lines changed

7 files changed

+48
-14
lines changed

.travis.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ env:
99
# - REDIS_VERSION=3.2.13
1010
# - REDIS_VERSION=4.0.14
1111
# - REDIS_VERSION=5.0.12
12-
- REDIS_VERSION=6.0.18
13-
- REDIS_VERSION=6.2.11
14-
- REDIS_VERSION=7.0.10
12+
# - REDIS_VERSION=6.0.20
13+
- REDIS_VERSION=6.2.14
14+
- REDIS_VERSION=7.0.15
15+
- REDIS_VERSION=7.2.5
16+
- REDIS_VERSION=7.4-rc1
1517
script:
1618
docker build --build-arg redis_version=$REDIS_VERSION -t grokzen/redis-cluster .

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 2024-06-25
2+
3+
* Added 7.2.x releases and published docker images
4+
* added 7.4-rc1 release and published
5+
* Updated all older generations of images
6+
* New base image that contains more updated patches etc
7+
18
## 2022-12-18
29

310
* Added redis 7.0.x releases and published docker images

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Build based on redis:6.0 from 2020-05-05
2-
FROM redis@sha256:f7ee67d8d9050357a6ea362e2a7e8b65a6823d9b612bc430d057416788ef6df9
1+
# Build based on redis:7.2.5 from "2024-05-22T23:17:59Z"
2+
FROM redis@sha256:e422889e156ebea83856b6ff973bfe0c86bce867d80def228044eeecf925592b
33

44
LABEL maintainer="Johan Andersson <[email protected]>"
55

@@ -23,8 +23,8 @@ ENV SSL_CERT_FILE=/usr/local/etc/openssl/cert.pem
2323

2424
RUN gem install redis -v 4.1.3
2525

26-
# This will always build the latest release/commit in the 6.0 branch
27-
ARG redis_version=7.0
26+
# This will always build the latest release/commit in the 7.2 branch
27+
ARG redis_version=7.2
2828

2929
RUN wget -qO redis.tar.gz https://github.com/redis/redis/tarball/${redis_version} \
3030
&& tar xfz redis.tar.gz -C / \

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT LICENSE
22

3-
Copyright 2014-2021 Johan Andersson
3+
Copyright 2014-2024 Johan Andersson
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
66

README.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,10 +229,28 @@ The following tags with pre-built images is available on `docker-hub`.
229229

230230
Latest release in the most recent stable branch will be used as `latest` version.
231231

232-
- latest == 7.0.10
232+
- latest == 7.2.5
233+
234+
Redis 7.4-rc1 version:
235+
236+
- 7.4-rc1
237+
238+
Redis 7.2.x version:
239+
240+
- 7.2.5
241+
- 7.2.4
242+
- 7.2.3
243+
- 7.2.2
244+
- 7.2.1
245+
- 7.2.0
233246

234247
Redis 7.0.x version:
235248

249+
- 7.0.15
250+
- 7.0.14
251+
- 7.0.13
252+
- 7.0.12
253+
- 7.0.11
236254
- 7.0.10
237255
- 7.0.9
238256
- 7.0.8
@@ -247,6 +265,9 @@ Redis 7.0.x version:
247265

248266
Redis 6.2.x versions:
249267

268+
- 6.2.14
269+
- 6.2.13
270+
- 6.2.12
250271
- 6.2.11
251272
- 6.2.10
252273
- 6.2.9
@@ -262,6 +283,8 @@ Redis 6.2.x versions:
262283

263284
Redis 6.0.x versions:
264285

286+
- 6.0.20
287+
- 6.0.19
265288
- 6.0.18
266289
- 6.0.17
267290
- 6.0.16

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
build:
99
context: .
1010
args:
11-
redis_version: '7.0.10'
11+
redis_version: '7.2.5'
1212
hostname: server
1313
ports:
1414
- '7000-7050:7000-7050'

tasks.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,21 @@
55
from invoke import task
66

77

8-
latest_version_string = "7.0.10"
8+
latest_version_string = "7.2.5"
99

1010
# Unpublished versions
1111
version_config_mapping = []
1212
version_config_mapping += [f"3.0.{i}" for i in range(0, 8)]
1313
version_config_mapping += [f"3.2.{i}" for i in range(0, 14)]
1414
version_config_mapping += [f"4.0.{i}" for i in range(0, 15)]
1515
version_config_mapping += [f"5.0.{i}" for i in range(0, 13)]
16+
version_config_mapping += [f"6.0.{i}" for i in range(0, 21)]
1617

1718
# Published versions
18-
version_config_mapping += [f"6.0.{i}" for i in range(0, 19)]
19-
version_config_mapping += [f"6.2.{i}" for i in range(0, 12)]
20-
version_config_mapping += [f"7.0.{i}" for i in range(0, 11)]
19+
version_config_mapping += [f"6.2.{i}" for i in range(0, 15)]
20+
version_config_mapping += [f"7.0.{i}" for i in range(0, 16)]
21+
version_config_mapping += [f"7.2.{i}" for i in range(0, 6)]
22+
version_config_mapping += ["7.4-rc1"]
2123

2224

2325
def version_name_to_version(version):

0 commit comments

Comments
 (0)