Skip to content

Commit

Permalink
doc:update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
cunla committed Jul 1, 2023
1 parent 8d81c1c commit 59ed769
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
6 changes: 6 additions & 0 deletions docs/about/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 4 additions & 7 deletions docs/redis-commands/RedisJson.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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/) <small>(not implemented)</small>

Merges a given JSON value into matching paths. Consequently, JSON values at matching paths are updated, deleted, or expanded with new children


2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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", ]
Expand Down

0 comments on commit 59ed769

Please sign in to comment.