Skip to content

Commit fa5aa8c

Browse files
authored
chore(doc): Update README and CI image. (#3822)
* chore(doc): Update README and CI image. * Use latest image
1 parent fdcc6f9 commit fa5aa8c

6 files changed

Lines changed: 13 additions & 7 deletions

File tree

.github/actions/run-tests/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ runs:
4747
elif [[ -n "$REDIS_VERSION" ]]; then
4848
# Mapping of redis version to redis testing containers
4949
declare -A redis_version_mapping=(
50-
["8.8.x"]="custom-26172898734-debian"
50+
["8.8.x"]="8.8.0"
5151
["8.6.x"]="8.6.1"
5252
["8.4.x"]="8.4.0"
5353
["8.2.x"]="8.2.1-pre"

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
4848
# Mapping of redis version to redis testing containers
4949
declare -A redis_version_mapping=(
50-
["8.8.x"]="custom-26172898734-debian"
50+
["8.8.x"]="8.8.0"
5151
["8.6.x"]="8.6.1"
5252
["8.4.x"]="8.4.0"
5353
["8.2.x"]="8.2.1-pre"

.github/workflows/doctests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
services:
1818
redis-stack:
19-
image: redislabs/client-libs-test:custom-26172898734-debian
19+
image: redislabs/client-libs-test:8.8.0
2020
env:
2121
TLS_ENABLED: no
2222
REDIS_CLUSTER: no

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ GO_MOD_DIRS := $(shell find . -type f -name 'go.mod' -exec dirname {} \; | sort)
22
REDIS_VERSION ?= 8.8
33
RE_CLUSTER ?= false
44
RCE_DOCKER ?= true
5-
CLIENT_LIBS_TEST_IMAGE ?= redislabs/client-libs-test:custom-26172898734-debian
5+
CLIENT_LIBS_TEST_IMAGE ?= redislabs/client-libs-test:8.8.0
66

77
docker.start:
88
export RE_CLUSTER=$(RE_CLUSTER) && \

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,21 @@
1818

1919
In `go-redis` we are aiming to support the last three releases of Redis. Currently, this means we do support:
2020
- [Redis 8.0](https://raw.githubusercontent.com/redis/redis/8.0/00-RELEASENOTES) - using Redis CE 8.0
21-
- [Redis 8.2](https://raw.githubusercontent.com/redis/redis/8.2/00-RELEASENOTES) - using Redis CE 8.2
21+
- [Redis 8.2](https://raw.githubusercontent.com/redis/redis/8.2/00-RELEASENOTES) - using Redis CE 8.2
2222
- [Redis 8.4](https://raw.githubusercontent.com/redis/redis/8.4/00-RELEASENOTES) - using Redis CE 8.4
23+
- [Redis 8.8](https://raw.githubusercontent.com/redis/redis/8.8/00-RELEASENOTES) - using Redis CE 8.8
2324

24-
Although the `go.mod` states it requires at minimum `go 1.24`, our CI is configured to run the tests against all three
25+
Although the `go.mod` states it requires at minimum `go 1.24`, our CI is configured to run the tests against all supported
2526
versions of Redis and multiple versions of Go ([1.24](https://go.dev/doc/devel/release#go1.24.0), oldstable, and stable). We observe that some modules related test may not pass with
2627
Redis Stack 7.2 and some commands are changed with Redis CE 8.0.
2728
Although it is not officially supported, `go-redis/v9` should be able to work with any Redis 7.0+.
2829
Please do refer to the documentation and the tests if you experience any issues.
2930

31+
### Array data type (Redis 8.8+)
32+
33+
Starting with Redis 8.8, go-redis supports the new array data type via the `AR*` command family
34+
(`ARAPPEND`, `ARGET`, `ARSET`, `ARLEN`, `ARRANGE`, etc.). See `array_commands.go` for the full surface.
35+
3036
## How do I Redis?
3137

3238
[Learn for free at Redis University](https://university.redis.com/)

docker-compose.yml

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

3-
x-default-image: &default-image ${CLIENT_LIBS_TEST_IMAGE:-redislabs/client-libs-test:custom-26172898734-debian}
3+
x-default-image: &default-image ${CLIENT_LIBS_TEST_IMAGE:-redislabs/client-libs-test:8.8.0}
44

55
services:
66
redis:

0 commit comments

Comments
 (0)