Skip to content

Commit 1bef2cd

Browse files
authored
Release notes valkey-bundle 8.1.0 (#33)
Signed-off-by: Roshan Khatri <rvkhatri@amazon.com>
1 parent 84fb9db commit 1bef2cd

File tree

4 files changed

+28
-15
lines changed

4 files changed

+28
-15
lines changed

.test/tests/valkey-basics-config/real-run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ appendonly=$(valkey-cli config get appendonly | tail -1)
8686
echo "Appendonly setting: $appendonly"
8787
[ "$appendonly" = "yes" ]
8888

89-
# Test that modules are loaded and functional (extensions-specific addition)
89+
# Test that modules are loaded and functional (bundle-specific addition)
9090
echo "Testing modules..."
9191

9292
# Test JSON module

.test/tests/valkey-basics/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ valkey-cli() {
7272
[ "$(valkey-cli set mykey somevalue)" = "OK" ]
7373
[ "$(valkey-cli get mykey)" = "somevalue" ]
7474

75-
# Test that modules are loaded and functional (extensions-specific addition)
75+
# Test that modules are loaded and functional (bundle-specific addition)
7676
echo "Testing modules..."
7777

7878
# Test JSON module

00-RELEASENOTES

Lines changed: 24 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
Valkey Extension 8.1.0-rc1 release notes
1+
Valkey Bundle 8.1.0 Release Notes
22
================================================================================
33

44
================================================================================
5-
Valkey Extension 8.1.0-rc1 - Released Tue 1 April 2025
5+
Valkey Bundle 8.1.0 - Released Mon 23 June 2025
66
================================================================================
77
Overview
88
===========================
@@ -11,24 +11,33 @@ Overview
1111

1212
Core Components
1313
===========================
14-
* Base Image: valkey/valkey:8.1.0-bookworm
15-
* valkey - 8.1.0
16-
* valkey-json - 1.0.0
14+
* Base Debian Image: valkey/valkey:8.1.2-bookworm
15+
* Base Alpine Image: valkey/valkey:8.1.2-alpine
16+
* valkey - 8.1.2
17+
* valkey-json - 1.0.1
1718
* valkey-bloom - 1.0.0
18-
* valkey-search - 1.0.0-rc1
19+
* valkey-search - 1.0.1
20+
* valkey-ldap - 1.0.0
1921

2022
Supported Tags and Platforms
2123
===========================
22-
Supported Tags:
23-
* 8.1.0-rc1
24+
Supported Debian Tags:
25+
* 8.1.0
2426
* 8.1
2527
* 8
2628
* latest
27-
* 8.1.0-rc1-bookworm
29+
* 8.1.0-bookworm
2830
* 8.1-bookworm
2931
* 8-bookworm
3032

33+
Supported Alpine Tags:
34+
* 8.1.0-alpine
35+
* 8.1-alpine
36+
* 8-alpine
37+
* alpine⁠
38+
3139
Platform Support:
40+
===========================
3241
* linux/amd64
3342
* linux/arm64
3443

@@ -45,5 +54,9 @@ Features:
4554
* Connecting via `valkey-cli`
4655

4756
We appreciate the efforts of all who contributed to this Docker image release!
48-
49-
Contributors: Roshan Khatri (roshkhatri)
57+
Contributors:
58+
* Roshan Khatri (roshkhatri)
59+
* Nikhil Manglore (Nikhil-Manglore)
60+
* Ricardo Dias (rjd15372)
61+
* Katie Holly (Fusl)
62+
* Roberto Luna Rojas (rlunar)

scripts/update-versions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@ def update_versions(versions_data: Dict[str, Any], component_name: str, new_vers
7171
try:
7272
subprocess.check_output(
7373
["git", "ls-remote", "--exit-code", "--heads", "origin", "valkey-bundle-update"], stderr=subprocess.DEVNULL)
74-
logging.info("PR exists — skipping extension version bump.")
74+
logging.info("PR exists — skipping bundle version bump.")
7575
except subprocess.CalledProcessError:
7676
versions_data[new_major_minor_release]["version"] = f"{major}.{minor}.{patch + 1}"
77-
logging.info("No PR — bumped extension version.")
77+
logging.info("No PR — bumped bundle version.")
7878
else:
7979
# New major/minor version
8080
known_modules = get_known_modules_from_versions(versions_data)

0 commit comments

Comments
 (0)