Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
531 changes: 531 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
members = [".", "redismodule-rs-macros", "redismodule-rs-macros-internals"]

[workspace.package]
version = "2.0.7"
version = "2.0.8"
license = "BSD-3-Clause"
edition = "2021"

Expand Down
20 changes: 20 additions & 0 deletions common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.0](https://github.com/RedisLabsModules/redismodule-rs/compare/common-v0.1.0...common-v0.2.0) - 2026-03-17

### Fixed

- fix edition

### Other

- Add missing license for common
- cargo fmt
- MOD-8720 command proc macro: add acl and command arguments parameters
2 changes: 1 addition & 1 deletion common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "common"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
license = "BSD-3-Clause"

Expand Down
19 changes: 19 additions & 0 deletions redismodule-rs-macros-internals/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [2.0.8](https://github.com/RedisLabsModules/redismodule-rs/compare/redis-module-macros-internals-v2.0.7...redis-module-macros-internals-v2.0.8) - 2026-03-17

### Other

- Revamp the CI pipeline, including publishing ([#428](https://github.com/RedisLabsModules/redismodule-rs/pull/428))
- Fix clippy lints ([#456](https://github.com/RedisLabsModules/redismodule-rs/pull/456))
- add `RM_AddACLCategory` ([#393](https://github.com/RedisLabsModules/redismodule-rs/pull/393))
- The PR introduce a new proc macro for command registrations. ([#326](https://github.com/RedisLabsModules/redismodule-rs/pull/326))
- Fix publish CI. ([#324](https://github.com/RedisLabsModules/redismodule-rs/pull/324))
- Post notification API and API versioning ([#304](https://github.com/RedisLabsModules/redismodule-rs/pull/304))
32 changes: 32 additions & 0 deletions redismodule-rs-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [2.0.8](https://github.com/RedisLabsModules/redismodule-rs/compare/redis-module-macros-v2.0.7...redis-module-macros-v2.0.8) - 2026-03-17

### Other

- Revamp the CI pipeline, including publishing ([#428](https://github.com/RedisLabsModules/redismodule-rs/pull/428))
- Fix clippy lints ([#456](https://github.com/RedisLabsModules/redismodule-rs/pull/456))
- MOD-8720 command proc macro: add acl and command arguments parameters
- Address the formatting
- Added support for defrag API. ([#387](https://github.com/RedisLabsModules/redismodule-rs/pull/387))
- Added support for _proxy-filtered flag. ([#366](https://github.com/RedisLabsModules/redismodule-rs/pull/366))
- Refactor the supported maps list again
- Revert the previous info argument of redis_module! macro.
- Provide more information on the compatible structs for the InfoSection derive.
- Refactor the supported maps list
- Rename InfoContext::build_from to build_one_section.
- Revert to the old style of RedisResult.
- Improves the info handler API.
- Added cron server event. ([#349](https://github.com/RedisLabsModules/redismodule-rs/pull/349))
- Added config changes server event ([#343](https://github.com/RedisLabsModules/redismodule-rs/pull/343))
- Extend `RedisValue` derive macro. ([#338](https://github.com/RedisLabsModules/redismodule-rs/pull/338))
- Implements `RedisValue` derive proc macro. ([#335](https://github.com/RedisLabsModules/redismodule-rs/pull/335))
- The PR introduce a new proc macro for command registrations. ([#326](https://github.com/RedisLabsModules/redismodule-rs/pull/326))
- Post notification API and API versioning ([#304](https://github.com/RedisLabsModules/redismodule-rs/pull/304))