Skip to content

Commit 95af995

Browse files
roshkhatrigithub-actions[bot]Nikhil-Manglore
authored
Automated Updates for Valkey Bundle (#70)
Signed-off-by: Roshan Khatri <rvkhatri@amazon.com> Signed-off-by: Nikhil Manglore <nmanglor@amazon.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Nikhil Manglore <nmanglor@amazon.com>
1 parent 67d289a commit 95af995

File tree

8 files changed

+61
-24
lines changed

8 files changed

+61
-24
lines changed

00-RELEASENOTES

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,43 @@ Overview
66
* valkey-bundle is a containerized version of valkey, enhanced with popular modules for advanced data structures and additional search capabilities.
77
* This image is built on top of the official valkey base image and includes pre-installed modules for simplified deployment.
88

9+
================================================================================
10+
Valkey Bundle 9.0.0 - Released Wed 26 Nov 2025
11+
================================================================================
12+
13+
Core Components
14+
===========================
15+
* Base Debian Image: valkey/valkey:9.0.0-trixie
16+
* Base Alpine Image: valkey/valkey:9.0.0-alpine
17+
* valkey - 9.0.0
18+
* valkey-json - 1.0.2
19+
* valkey-bloom - 1.0.0
20+
* valkey-search - 1.0.2
21+
* valkey-ldap - 1.0.0
22+
23+
Supported Tags and Platforms
24+
===========================
25+
Supported Debian Tags:
26+
* 9.0.0
27+
* 9.0
28+
* 9.0.0-trixie
29+
* 9.0-trixie
30+
31+
Supported Alpine Tags:
32+
* 9.0.0-alpine
33+
* 9.0-alpine
34+
* 9-alpine
35+
* alpine
36+
37+
Platform Support:
38+
===========================
39+
* linux/amd64
40+
* linux/arm64
41+
42+
Key Changes
43+
===========================
44+
Check the [Valkey 9.0.0](https://github.com/valkey-io/valkey/blob/9.0/00-RELEASENOTES), [Valkey-JSON 1.0.2](https://github.com/valkey-io/valkey-json/blob/1.0/00-RELEASENOTES), and [Valkey-Search 1.0.2](https://github.com/valkey-io/valkey-search/blob/1.0/00-RELEASENOTES) release notes to see all the changes for Valkey Bundle 9.0.0.
45+
946
================================================================================
1047
Valkey Bundle 9.0.0-rc1 - Released Fri 22 Aug 2025
1148
================================================================================

8.1/alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ WORKDIR /opt
3939
RUN set -eux; \
4040
git clone --depth 1 --branch 1.0.2 https://github.com/valkey-io/valkey-json.git; \
4141
git clone --depth 1 --branch 1.0.0 https://github.com/valkey-io/valkey-bloom.git; \
42-
git clone --depth 1 --branch 1.0.1 https://github.com/valkey-io/valkey-search.git; \
42+
git clone --depth 1 --branch 1.0.2 https://github.com/valkey-io/valkey-search.git; \
4343
git clone --depth 1 --branch 1.0.0 https://github.com/valkey-io/valkey-ldap.git;
4444

4545
# Build JSON module

8.1/debian/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ WORKDIR /opt
4040
RUN set -eux; \
4141
git clone --depth 1 --branch 1.0.2 https://github.com/valkey-io/valkey-json.git; \
4242
git clone --depth 1 --branch 1.0.0 https://github.com/valkey-io/valkey-bloom.git; \
43-
git clone --depth 1 --branch 1.0.1 https://github.com/valkey-io/valkey-search.git; \
43+
git clone --depth 1 --branch 1.0.2 https://github.com/valkey-io/valkey-search.git; \
4444
git clone --depth 1 --branch 1.0.0 https://github.com/valkey-io/valkey-ldap.git;
4545

4646
# Build JSON module

9.0/alpine/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
# PLEASE DO NOT EDIT IT DIRECTLY.
55
#
66

7-
FROM docker.io/valkey/valkey:9.0.0-rc3-alpine AS build
7+
FROM docker.io/valkey/valkey:9.0.0-alpine AS build
88

9-
ARG SERVER_VERSION=9.0.0-rc3
9+
ARG SERVER_VERSION=9.0.0
1010

1111
RUN set -eux; \
1212
apk add --no-cache \
@@ -39,7 +39,7 @@ WORKDIR /opt
3939
RUN set -eux; \
4040
git clone --depth 1 --branch 1.0.2 https://github.com/valkey-io/valkey-json.git; \
4141
git clone --depth 1 --branch 1.0.0 https://github.com/valkey-io/valkey-bloom.git; \
42-
git clone --depth 1 --branch 1.0.1 https://github.com/valkey-io/valkey-search.git; \
42+
git clone --depth 1 --branch 1.0.2 https://github.com/valkey-io/valkey-search.git; \
4343
git clone --depth 1 --branch 1.0.0 https://github.com/valkey-io/valkey-ldap.git;
4444

4545
# Build JSON module
@@ -60,7 +60,7 @@ RUN set -eux; \
6060
WORKDIR /opt/valkey-ldap
6161
RUN RUSTFLAGS="-C target-feature=-crt-static" cargo build --all --all-targets --release;
6262

63-
FROM docker.io/valkey/valkey:9.0.0-rc3-alpine
63+
FROM docker.io/valkey/valkey:9.0.0-alpine
6464

6565
RUN set -eux; \
6666
apk add --no-cache libstdc++; \

9.0/debian/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
# PLEASE DO NOT EDIT IT DIRECTLY.
55
#
66

7-
FROM docker.io/valkey/valkey:9.0.0-rc3-trixie AS build
7+
FROM docker.io/valkey/valkey:9.0.0-trixie AS build
88

9-
ARG SERVER_VERSION=9.0.0-rc3
9+
ARG SERVER_VERSION=9.0.0
1010

1111
RUN set -eux; \
1212
\
@@ -40,7 +40,7 @@ WORKDIR /opt
4040
RUN set -eux; \
4141
git clone --depth 1 --branch 1.0.2 https://github.com/valkey-io/valkey-json.git; \
4242
git clone --depth 1 --branch 1.0.0 https://github.com/valkey-io/valkey-bloom.git; \
43-
git clone --depth 1 --branch 1.0.1 https://github.com/valkey-io/valkey-search.git; \
43+
git clone --depth 1 --branch 1.0.2 https://github.com/valkey-io/valkey-search.git; \
4444
git clone --depth 1 --branch 1.0.0 https://github.com/valkey-io/valkey-ldap.git;
4545

4646
# Build JSON module
@@ -61,7 +61,7 @@ RUN set -eux; \
6161
WORKDIR /opt/valkey-ldap
6262
RUN cargo build --all --all-targets --release;
6363

64-
FROM docker.io/valkey/valkey:9.0.0-rc3-trixie
64+
FROM docker.io/valkey/valkey:9.0.0-trixie
6565

6666
RUN mkdir -p /usr/lib/valkey;
6767

dockerhub-description.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## This file is auto-generated by the Valkey Bundle Update workflow
2-
Last updated: 2025-10-08
2+
Last updated: 2025-11-25
33

44
# Quick reference
55

@@ -13,11 +13,10 @@ Last updated: 2025-10-08
1313

1414

1515
## Official releases
16-
- [`8.1.3`, `8.1`, `8`, `latest`, `8.1.3-trixie`, `8.1-trixie`, `8-trixie`, `trixie`](https://github.com/valkey-io/valkey-bundle/blob/mainline/8.1/debian/Dockerfile)
17-
- [`8.1.3-alpine`, `8.1-alpine`, `8-alpine`, `alpine`](https://github.com/valkey-io/valkey-bundle/blob/mainline/8.1/alpine/Dockerfile)
18-
## Release candidates
19-
- [`9.0.0-rc3`, `9.0-rc3`, `9.0.0-rc3-trixie`, `9.0-rc3-trixie`](https://github.com/valkey-io/valkey-bundle/blob/mainline/9.0/debian/Dockerfile)
20-
- [`9.0.0-rc3-alpine`, `9.0-rc3-alpine`](https://github.com/valkey-io/valkey-bundle/blob/mainline/9.0/alpine/Dockerfile)
16+
- [`9.0.0`, `9.0`, `9`, `latest`, `9.0.0-trixie`, `9.0-trixie`, `9-trixie`, `trixie`](https://github.com/valkey-io/valkey-bundle/blob/mainline/9.0/debian/Dockerfile)
17+
- [`9.0.0-alpine`, `9.0-alpine`, `9-alpine`, `alpine`](https://github.com/valkey-io/valkey-bundle/blob/mainline/9.0/alpine/Dockerfile)
18+
- [`8.1.4`, `8.1`, `8`, `8.1.4-trixie`, `8.1-trixie`, `8-trixie`](https://github.com/valkey-io/valkey-bundle/blob/mainline/8.1/debian/Dockerfile)
19+
- [`8.1.4-alpine`, `8.1-alpine`, `8-alpine`](https://github.com/valkey-io/valkey-bundle/blob/mainline/8.1/alpine/Dockerfile)
2120

2221
## What is [Valkey Bundle](https://github.com/valkey-io/valkey-bundle)?
2322
--------------
@@ -29,8 +28,8 @@ This image is built on top of the official Valkey base image and simplifies depl
2928

3029
| valkey-bundle | valkey | valkey-json | valkey-bloom | valkey-search | valkey-ldap |
3130
|-------------------------|-------------|-------------|--------------|---------------|---------------|
32-
| [9.0.0-rc3](https://github.com/valkey-io/valkey-bundle/releases/tag/9.0.0-rc3) |[9.0.0-rc3](https://github.com/valkey-io/valkey/releases/tag/9.0.0-rc3) | [1.0.2](https://github.com/valkey-io/valkey-json/releases/tag/1.0.2)| [1.0.0](https://github.com/valkey-io/valkey-bloom/releases/tag/1.0.0)| [1.0.1](https://github.com/valkey-io/valkey-search/releases/tag/1.0.1) | [1.0.0](https://github.com/valkey-io/valkey-ldap/releases/tag/1.0.0) |
33-
| [8.1.3](https://github.com/valkey-io/valkey-bundle/releases/tag/8.1.3) |[8.1.4](https://github.com/valkey-io/valkey/releases/tag/8.1.4) | [1.0.2](https://github.com/valkey-io/valkey-json/releases/tag/1.0.2)| [1.0.0](https://github.com/valkey-io/valkey-bloom/releases/tag/1.0.0)| [1.0.1](https://github.com/valkey-io/valkey-search/releases/tag/1.0.1) | [1.0.0](https://github.com/valkey-io/valkey-ldap/releases/tag/1.0.0) |
31+
| [9.0.0](https://github.com/valkey-io/valkey-bundle/releases/tag/9.0.0) |[9.0.0](https://github.com/valkey-io/valkey/releases/tag/9.0.0) | [1.0.2](https://github.com/valkey-io/valkey-json/releases/tag/1.0.2)| [1.0.0](https://github.com/valkey-io/valkey-bloom/releases/tag/1.0.0)| [1.0.2](https://github.com/valkey-io/valkey-search/releases/tag/1.0.2) | [1.0.0](https://github.com/valkey-io/valkey-ldap/releases/tag/1.0.0) |
32+
| [8.1.4](https://github.com/valkey-io/valkey-bundle/releases/tag/8.1.4) |[8.1.4](https://github.com/valkey-io/valkey/releases/tag/8.1.4) | [1.0.2](https://github.com/valkey-io/valkey-json/releases/tag/1.0.2)| [1.0.0](https://github.com/valkey-io/valkey-bloom/releases/tag/1.0.0)| [1.0.2](https://github.com/valkey-io/valkey-search/releases/tag/1.0.2) | [1.0.0](https://github.com/valkey-io/valkey-ldap/releases/tag/1.0.0) |
3433

3534

3635
# Security

generate-stackbrew-library.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
set -Eeuox pipefail
33

44
declare -A aliases=(
5-
[8.1]='8 latest'
5+
[8.1]='8'
6+
[9.0]='9 latest'
67
)
78

89
self="$(basename "$BASH_SOURCE")"

versions.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"8.1": {
3-
"version": "8.1.3",
3+
"version": "8.1.4",
44
"valkey-server": {
55
"version": "8.1.4"
66
},
@@ -12,7 +12,7 @@
1212
"version": "1.0.0"
1313
},
1414
"valkey-search": {
15-
"version": "1.0.1"
15+
"version": "1.0.2"
1616
},
1717
"valkey-ldap": {
1818
"version": "1.0.0"
@@ -23,9 +23,9 @@
2323
}
2424
},
2525
"9.0": {
26-
"version": "9.0.0-rc3",
26+
"version": "9.0.0",
2727
"valkey-server": {
28-
"version": "9.0.0-rc3"
28+
"version": "9.0.0"
2929
},
3030
"modules": {
3131
"valkey-json": {
@@ -35,7 +35,7 @@
3535
"version": "1.0.0"
3636
},
3737
"valkey-search": {
38-
"version": "1.0.1"
38+
"version": "1.0.2"
3939
},
4040
"valkey-ldap": {
4141
"version": "1.0.0"

0 commit comments

Comments
 (0)