From 59ed76914ede4ea655c88d33a90b3dc26a81bc86 Mon Sep 17 00:00:00 2001 From: Daniel M Date: Sat, 1 Jul 2023 15:24:02 -0400 Subject: [PATCH] doc:update documentation --- docs/about/changelog.md | 6 ++++++ docs/redis-commands/RedisJson.md | 11 ++++------- pyproject.toml | 2 +- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/docs/about/changelog.md b/docs/about/changelog.md index c761b6a2..a3ffd2e5 100644 --- a/docs/about/changelog.md +++ b/docs/about/changelog.md @@ -5,6 +5,12 @@ description: Change log of all fakeredis releases ## Next release +## v2.16.0 + +### 🚀 Features + +- Implemented support for `JSON.MSET` #174, `JSON.MERGE` #181 + ## v2.15.0 ### 🚀 Features diff --git a/docs/redis-commands/RedisJson.md b/docs/redis-commands/RedisJson.md index c8ae343c..f169abc5 100644 --- a/docs/redis-commands/RedisJson.md +++ b/docs/redis-commands/RedisJson.md @@ -30,6 +30,10 @@ Sets or updates the JSON value at a path Sets or updates the JSON value of one or more keys +### [JSON.MERGE](https://redis.io/commands/json.merge/) + +Merges a given JSON value into matching paths. Consequently, JSON values at matching paths are updated, deleted, or expanded with new children + ### [JSON.MGET](https://redis.io/commands/json.mget/) Returns the values at a path from one or more keys @@ -87,11 +91,4 @@ Returns the number of keys of the object at path Returns the type of the JSON value at path -### Unsupported json commands -> To implement support for a command, see [here](../../guides/implement-command/) - -#### [JSON.MERGE](https://redis.io/commands/json.merge/) (not implemented) - -Merges a given JSON value into matching paths. Consequently, JSON values at matching paths are updated, deleted, or expanded with new children - diff --git a/pyproject.toml b/pyproject.toml index 9014c272..d90fe6de 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ name = "fakeredis" packages = [ { include = "fakeredis" }, ] -version = "2.15.1" +version = "2.16.0" description = "Python implementation of redis API, can be used for testing purposes." readme = "README.md" keywords = ["redis", "RedisJson", ]