mirror of
https://github.com/redis/redis.git
synced 2026-07-16 13:32:51 -04:00
Some checks failed
CI / test-ubuntu-latest (push) Has been cancelled
CI / test-sanitizer-address (push) Has been cancelled
CI / build-debian-old (push) Has been cancelled
CI / build-macos-latest (push) Has been cancelled
CI / build-32bit (push) Has been cancelled
CI / build-libc-malloc (push) Has been cancelled
CI / build-centos-jemalloc (push) Has been cancelled
CI / build-old-chain-jemalloc (push) Has been cancelled
Codecov / code-coverage (push) Has been cancelled
External Server Tests / test-external-standalone (push) Has been cancelled
External Server Tests / test-external-cluster (push) Has been cancelled
External Server Tests / test-external-nodebug (push) Has been cancelled
Reply-schemas linter / reply-schemas-linter (push) Has been cancelled
Spellcheck / Spellcheck (push) Has been cancelled
## Module Update
This PR updates **RedisJSON** to version **8.9.80**.
## Changes
- Updated `modules/redisjson/Makefile` to set `MODULE_VERSION = v8.9.80`
## Release Information
- **Module**: RedisJSON
- **Version**: 8.9.80
- **Tag Date**: 2026-06-24
- **Makefile Path**: `modules/redisjson/Makefile`
## Verification
- [ ] Version updated correctly in Makefile
- [ ] Module builds successfully
- [ ] Tests pass
- [ ] No breaking changes
---
*This PR was automatically created by the Redis Module Release
Orchestrator.*
<!-- CURSOR_SUMMARY -->
---
> [!NOTE]
> **Low Risk**
> Single Makefile version bump with no application or security logic
changes in this repository; risk is limited to upstream RedisJSON 8.9.80
behavior at build/runtime.
>
> **Overview**
> Bumps the **RedisJSON** build pin from **v8.8.0** to **v8.9.80** by
updating `MODULE_VERSION` in `modules/redisjson/Makefile`.
>
> That version is used by the shared module build (`common.mk`) to check
out the matching **redisjson/redisjson** tag when fetching sources and
producing `rejson.so`; no other files or build steps change in this PR.
>
> <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit
9bc0964af0. Bugbot is set up for automated
code reviews on this repo. Configure
[here](https://www.cursor.com/dashboard/bugbot).</sup>
<!-- /CURSOR_SUMMARY -->
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
11 lines
268 B
Makefile
11 lines
268 B
Makefile
SRC_DIR = src
|
|
MODULE_VERSION = v8.9.80
|
|
MODULE_REPO = https://github.com/redisjson/redisjson
|
|
TARGET_MODULE = $(SRC_DIR)/bin/$(FULL_VARIANT)/rejson.so
|
|
|
|
include ../common.mk
|
|
|
|
$(SRC_DIR)/.cargo_fetched:
|
|
cd $(SRC_DIR) && cargo fetch
|
|
|
|
get_source: $(SRC_DIR)/.cargo_fetched
|